15 lines
497 B
Text
15 lines
497 B
Text
# Example secrets file - DO NOT COMMIT REAL SECRETS
|
|
# Copy this file to secrets.yaml and fill in real values
|
|
# Then use: kubectl create secret generic veza-secrets --from-env-file=secrets.yaml -n veza-production
|
|
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: veza-secrets
|
|
namespace: veza-production
|
|
type: Opaque
|
|
stringData:
|
|
database-url: "postgresql://user:password@postgres:5432/veza?sslmode=require"
|
|
redis-url: "redis://redis:6379/0"
|
|
jwt-secret: "your-jwt-secret-key-min-32-chars-long"
|
|
|