Skip to content

Commit

Permalink
fix(anynines-klutch/keycloak): use correct form of var interpolation
Browse files Browse the repository at this point in the history
  • Loading branch information
cwrau committed Aug 7, 2024
1 parent 97fdce4 commit e8c384f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions charts/anynines-klutch/templates/oidc/keycloak.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ spec:
- java
- -jar
- /opt/bitnami/keycloak-config-cli/keycloak-config-cli.jar
- --import.var-substitution.enabled=true
extraEnvVars:
- name: HELPER_CLI_CLIENT_SECRET
valueFrom:
Expand All @@ -73,7 +74,7 @@ spec:
clients:
- clientId: kube-bind
enabled: true
secret: ${env:KUBE_BIND_CLIENT_SECRET}
secret: $(env:KUBE_BIND_CLIENT_SECRET)
consentRequired: false
authorizationServicesEnabled: true
serviceAccountsEnabled: true
Expand All @@ -82,7 +83,7 @@ spec:
- {{ printf "https://%s/callback" .Values.ingress.host }}
- clientId: helper-cli
enabled: true
secret: ${env:HELPER_CLI_CLIENT_SECRET}
secret: $(env:HELPER_CLI_CLIENT_SECRET)
consentRequired: false
standardFlowEnabled: false
serviceAccountsEnabled: true
Expand Down

0 comments on commit e8c384f

Please sign in to comment.