Skip to content

Commit 808160b

Browse files
authored
fix: increase the wait time for checking for "iks-ca-configmap" (#365)
1 parent 4531a36 commit 808160b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/get_config_map_status.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ MAX_ATTEMPTS=40
1010
while [[ $COUNTER -lt $MAX_ATTEMPTS ]] && ! kubectl get configmap $CONFIGMAP_NAME -n $NAMESPACE &>/dev/null; do
1111
COUNTER=$((COUNTER + 1))
1212
echo "Attempt $COUNTER: ConfigMap '$CONFIGMAP_NAME' not found in namespace '$NAMESPACE', retrying..."
13-
sleep 30
13+
sleep 60
1414
done
1515

1616
if [[ $COUNTER -eq $MAX_ATTEMPTS ]]; then

0 commit comments

Comments
 (0)