17 lines
412 B
YAML
17 lines
412 B
YAML
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: urlshortener-secrets
|
|
namespace: urlshortener
|
|
labels:
|
|
app: urlshortener
|
|
type: Opaque
|
|
stringData:
|
|
# Database credentials
|
|
# IMPORTANT: Replace these with actual values or use a secret management system
|
|
database-password: "CHANGE_ME"
|
|
|
|
# JWT secrets for authentication
|
|
jwt.secret: "CHANGE_ME_JWT_SECRET_KEY_MIN_32_CHARS"
|
|
jwt.expiration: "86400000"
|