Skip to content

Commit

Permalink
Fix value of VAULT_DISABLE_FILE_PERMISSIONS_CHECK
Browse files Browse the repository at this point in the history
This variable doesn't use ParseBool and thus strictly requires "true" as
the value.

Signed-off-by: Alexander Scheel <[email protected]>
  • Loading branch information
cipherboy committed May 17, 2022
1 parent dad15be commit b4ad204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .release/docker/ubi-docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ fi
# Due to OpenShift environment compatibility, we have to allow group write
# access to the Vault configuration. This requires us to disable the stricter
# file permissions checks introduced in Vault v1.11.0.
export VAULT_DISABLE_FILE_PERMISSIONS_CHECK=1
export VAULT_DISABLE_FILE_PERMISSIONS_CHECK=true

# If the user is trying to run Vault directly with some arguments, then
# pass them to Vault.
Expand Down

0 comments on commit b4ad204

Please sign in to comment.