Skip to content

Commit

Permalink
Update web to 1.2.2 and add switch for PKCE to values
Browse files Browse the repository at this point in the history
  • Loading branch information
Petr Beklemishev committed Dec 11, 2023
1 parent 20cfe72 commit 8a2ee65
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions charts/citylens/templates/web/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ data:
{{- if .realm }}
"realm": {{ .realm | quote }},
{{- end }}
{{- if .pkce }}
"pkce": {{ .pkce }},
{{- end }}
"auth-server-url": {{ required "A valid .Values.web.auth.authServerUrl entry required" .authServerUrl | quote }},
"resource": {{ required "A valid .Values.web.auth.clientId entry required" .clientId | quote }},
"verify-ssl": {{ .verifySsl }},
Expand Down
6 changes: 4 additions & 2 deletions charts/citylens/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ api:
image:
repository: 2gis-on-premise/citylens-api
pullPolicy: IfNotPresent
tag: 1.2.1
tag: 1.2.2

replicas: 4

Expand Down Expand Up @@ -180,6 +180,7 @@ api:
# @param web.auth.clientId Client id from keycloak. Ex: citylens-web-client **Required**
# @param web.auth.clientSecret Client Secret from keycloak. **Required**
# @param web.auth.verifySsl Enable\Disable SSL check.
# @param web.auth.pkce Enable\Disable PKCE (Proof Key for Code Exchange) in Authorization Code flow.

# @section Custom settings

Expand All @@ -200,7 +201,7 @@ web:
image:
repository: 2gis-on-premise/citylens-web
pullPolicy: IfNotPresent
tag: 1.2.1
tag: 1.2.2

replicas: 1

Expand Down Expand Up @@ -241,6 +242,7 @@ web:
clientId: ''
clientSecret: ''
verifySsl: true
pkce: false

logLevel: WARNING

Expand Down

0 comments on commit 8a2ee65

Please sign in to comment.