From 754c4ee94d555553e128fbef718f196be6be1bfa Mon Sep 17 00:00:00 2001 From: jessebot Date: Tue, 21 May 2024 08:27:40 +0200 Subject: [PATCH] the command is bao not openbao :facepalm: Signed-off-by: jessebot --- charts/openbao/templates/tests/server-test.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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