Files
team-planner/k8s/secrets.yaml.example
vigdorov 85c4a36e17
Some checks reported errors
continuous-integration/drone/push Build was killed
add deploy
2025-12-31 09:50:51 +03:00

17 lines
422 B
Plaintext

# 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"