Skip to content

Commit

Permalink
fix: namespace suffix in update-configmap.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
trev-dev committed Aug 30, 2024
1 parent a75db2d commit 2902086
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tools/config/update-configmap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ SPLUNK_TOKEN=$4
NAMESPACE_SUFFIX="$ENV_VAL"
if [ "$ENV_VAL" = "dev" ] || [ "$ENV_VAL" = "qa" ]; then
NAMESPACE_SUFFIX="dev"
elif [ "$ENV_VAL" = "uat" ] || [ "$ENV_VAL" = "efx" ]; then
NAMESPACE_SUFFIX="test"
elif [ "$ENV_VAL" = "prod" ]; then
NAMESPACE_SUFFIX="prod"
fi
readonly NAMESPACE_SUFFIX

Expand Down

0 comments on commit 2902086

Please sign in to comment.