Override default Keycloak auth with Google OAuth - mount config as app-config.yaml

This commit is contained in:
Backstage Deploy 2026-01-14 16:56:26 +05:30
parent 37151f75e9
commit 369363277c

View File

@ -102,7 +102,17 @@ spec:
secretKeyRef:
name: backstage-secrets
key: GITEA_PASSWORD
# Override auth environment to production
- name: AUTH_ENVIRONMENT
value: "production"
# Disable guest provider
- name: AUTH_PROVIDERS_GUEST_ENABLED
value: "false"
volumeMounts:
- name: config
mountPath: /app/app-config.yaml
subPath: app-config.production.yaml
readOnly: true
- name: config
mountPath: /app/app-config.production.yaml
subPath: app-config.production.yaml
@ -111,6 +121,8 @@ spec:
- node
- packages/backend
- --config
- app-config.yaml
- --config
- app-config.production.yaml
{{- with .Values.livenessProbe }}
livenessProbe: