7 lines
328 B
Bash
7 lines
328 B
Bash
|
#!/bin/bash
|
||
|
echo -n "Checking for Infrastructure CRDs... "
|
||
|
kubectl wait --for condition=established crd/httproutes.gateway.networking.k8s.io > /dev/null
|
||
|
kubectl wait --for condition=established crd/volumes.longhorn.io > /dev/null
|
||
|
kubectl wait --for condition=established crd/certificates.cert-manager.io > /dev/null
|
||
|
echo "done"
|