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-23T04:44:51Z"
  name: keepalived-bin
  namespace: openstack
  resourceVersion: "3464"
  uid: fb747fbc-22e3-456a-95ce-45cf47bc8a91
