diff --git a/charts/openbao/templates/tests/server-test.yaml b/charts/openbao/templates/tests/server-test.yaml index f5ef064..0282262 100644 --- a/charts/openbao/templates/tests/server-test.yaml +++ b/charts/openbao/templates/tests/server-test.yaml @@ -27,18 +27,18 @@ spec: - /bin/sh - -c - | - echo "Checking for sealed info in 'openbao status' output" + echo "Checking for sealed info in 'bao status' output" ATTEMPTS=10 n=0 until [ "$n" -ge $ATTEMPTS ] do echo "Attempt" $n... - openbao status -format yaml | grep -E '^sealed: (true|false)' && break + bao status -format yaml | grep -E '^sealed: (true|false)' && break n=$((n+1)) sleep 5 done if [ $n -ge $ATTEMPTS ]; then - echo "timed out looking for sealed info in 'openbao status' output" + echo "timed out looking for sealed info in 'bao status' output" exit 1 fi