20 lines
332 B
Bash
20 lines
332 B
Bash
|
#! /bin/bash
|
||
|
set -euxo pipefail
|
||
|
|
||
|
max_retries=240
|
||
|
c=0
|
||
|
while ! kubectl get keycloaks
|
||
|
do
|
||
|
echo "waiting for Keycloak CRD"
|
||
|
((c++)) && ((c==max_retries)) && exit -1
|
||
|
sleep 1
|
||
|
done
|
||
|
|
||
|
c=0
|
||
|
while ! kubectl get keycloakrealmimports
|
||
|
do
|
||
|
echo "waiting for Keycloak Realm Import CRD"
|
||
|
((c++)) && ((c==max_retries)) && exit -1
|
||
|
sleep 1
|
||
|
done
|