This commit is contained in:
16
k8s/secrets.yaml.example
Normal file
16
k8s/secrets.yaml.example
Normal file
@ -0,0 +1,16 @@
|
||||
# This is an example file. Create the actual secrets.yaml with your real values
|
||||
# DO NOT commit secrets.yaml to git!
|
||||
#
|
||||
# To create the secrets in your cluster, run:
|
||||
# kubectl create -f secrets.yaml -n prod-ns
|
||||
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: team-planner-secrets
|
||||
type: Opaque
|
||||
stringData:
|
||||
# PostgreSQL credentials
|
||||
db-name: "teamplanner"
|
||||
db-user: "teamplanner"
|
||||
db-password: "CHANGE_ME_STRONG_PASSWORD"
|
||||
Reference in New Issue
Block a user