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

    while true; do
        ip link show dev br-ex >/dev/null 2>&1

        # We detected the interface that keepalived will manage.
        if [ $? -eq 0 ]; then
            break
        fi

        sleep 1
    done
kind: ConfigMap
metadata:
  creationTimestamp: "2026-06-16T11:45:41Z"
  name: keepalived-bin
  namespace: openstack
  resourceVersion: "3670"
  uid: bad3caeb-9645-4bc3-84d7-ddfa47dbc01b
