From 4fa7e1bd7687c827a5ed844922e142e6b57d90fb Mon Sep 17 00:00:00 2001 From: Andrew Keesler Date: Fri, 11 Sep 2020 10:09:13 -0400 Subject: [PATCH] hack/prepare-for-integration-tests.sh: use log helper Signed-off-by: Andrew Keesler --- hack/prepare-for-integration-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/prepare-for-integration-tests.sh b/hack/prepare-for-integration-tests.sh index d8828b58..df63773d 100755 --- a/hack/prepare-for-integration-tests.sh +++ b/hack/prepare-for-integration-tests.sh @@ -184,7 +184,7 @@ if [[ ${#test_password} -ne 32 ]]; then log_error "Could not create random test user password" exit 1 fi -echo "Creating test user '$test_username'..." +log_note "Creating test user '$test_username'..." kubectl create secret generic "$test_username" \ --namespace local-user-authenticator \ --from-literal=groups="$test_groups" \