feat: Add JWT and Redis configuration to deployment and environment setup
All checks were successful
CI - Build and Push / Build and Push Docker Image (push) Successful in 50s

This commit is contained in:
2025-10-25 09:10:19 +08:00
parent 15d4088904
commit e09fac365e
5 changed files with 87 additions and 10 deletions

View File

@@ -61,4 +61,29 @@ spec:
- name: TZ
value: "UTC"
- name: DATABASE_DSN
value: "${DATABASE_DSN}"
valueFrom:
secretKeyRef:
name: authenticator-secrets
key: database-dsn
- name: JWT_SECRET
valueFrom:
secretKeyRef:
name: authenticator-secrets
key: jwt-secret
- name: JWT_ISSUER
value: "${JWT_ISSUER}"
- name: JWT_EXPIRES_IN
value: "${JWT_EXPIRES_IN}"
- name: STEAM_CALLBACK_URL
value: "${STEAM_CALLBACK_URL}"
- name: STEAM_FRONTEND_CALLBACK_URL
value: "${STEAM_FRONTEND_CALLBACK_URL}"
- name: REDIS_HOST
value: "${REDIS_HOST}"
- name: REDIS_TYPE
value: "${REDIS_TYPE}"
- name: REDIS_PASS
valueFrom:
secretKeyRef:
name: authenticator-secrets
key: redis-pass