6 lines
328 B
Bash
Executable file
6 lines
328 B
Bash
Executable file
#!/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"
|