apiVersion: v1
data:
  wait-for-ip.sh: |
    #!/bin/sh -x

    while true; do
        ip -4 addr list dev br-ex | grep br-ex

        # We detected an IP address
        if [ $? -eq 0 ]; then
            break
        fi

        sleep 1
    done
kind: ConfigMap
metadata:
  creationTimestamp: "2026-07-16T00:31:27Z"
  name: keepalived-bin
  namespace: openstack
  resourceVersion: "3571"
  uid: 4550be8b-2efe-45c0-a5a4-cb0a3c3e743e
