diff --git a/docs/docs/self-hosting/deploy/loadbalancing-example/loadbalancing-example.mdx b/docs/docs/self-hosting/deploy/loadbalancing-example/loadbalancing-example.mdx index d4c27ccd95..641e163699 100644 --- a/docs/docs/self-hosting/deploy/loadbalancing-example/loadbalancing-example.mdx +++ b/docs/docs/self-hosting/deploy/loadbalancing-example/loadbalancing-example.mdx @@ -60,7 +60,7 @@ wget https://raw.githubusercontent.com/zitadel/zitadel/main/docs/docs/self-hosti # A single ZITADEL instance always needs the same 32 bytes long masterkey # Generate one to a file if you haven't done so already and pass it as environment variable -LC_ALL=C tr -dc '[:graph:]' ./zitadel-masterkey +LC_ALL=C tr -dc '[:alpha:]' ./zitadel-masterkey export ZITADEL_MASTERKEY="$(cat ./zitadel-masterkey)" # Run the database and application containers diff --git a/login/apps/login-test-acceptance/setup/setup.sh b/login/apps/login-test-acceptance/setup/setup.sh index 9fb1276031..c34f1d0b38 100755 --- a/login/apps/login-test-acceptance/setup/setup.sh +++ b/login/apps/login-test-acceptance/setup/setup.sh @@ -1,6 +1,6 @@ #!/bin/sh -set -ex pipefail +set -e pipefail PAT_FILE=${PAT_FILE:-./pat/zitadel-admin-sa.pat} LOGIN_BASE_URL=${LOGIN_BASE_URL:-"http://localhost:3000"} @@ -49,7 +49,7 @@ SA_PAT_RESPONSE=$(curl -s --request POST \ --header "Host: ${ZITADEL_API_DOMAIN}" \ --header "Content-Type: application/json" \ -d "{\"expirationDate\": \"2519-04-01T08:45:00.000000Z\"}") -echo "Received Member response: ${MEMBER_RESPONSE}" +echo "Received PAT response: ${MEMBER_RESPONSE}" SA_PAT=$(echo ${SA_PAT_RESPONSE} | jq -r '. | .token') echo "Received ServiceAccount Token: ${SA_PAT}"