Skip to content

Commit

Permalink
Revert to randomly generated DB password
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Davidson committed Aug 15, 2023
1 parent d465983 commit 8818a94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generate-secrets.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ fi

kubectl -n $NAMESPACE create secret generic database-auth-secret \
--dry-run=client \
--from-literal=password=abcdefghijklmnopqrstuvwxyz123456 \
--from-literal=password=$(tr -dc 'A-Za-z0-9' </dev/urandom | head -c 32) \
-o yaml | \
kubectl -n $NAMESPACE apply -f -

Expand Down

0 comments on commit 8818a94

Please sign in to comment.