Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: 🐛 console chart server keycloak clientId #20

Merged
merged 1 commit into from
May 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/dso-console/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: cpn-console
description: A Helm chart to deploy Cloud Pi Native Console
type: application
version: 1.3.0
version: 1.3.1
appVersion: 8.3.0
keywords: []
home: https://cloud-pi-native.fr
Expand Down
2 changes: 1 addition & 1 deletion charts/dso-console/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# cpn-console

![Version: 1.3.0](https://img.shields.io/badge/Version-1.3.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 8.3.0](https://img.shields.io/badge/AppVersion-8.3.0-informational?style=flat-square)
![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 8.3.0](https://img.shields.io/badge/AppVersion-8.3.0-informational?style=flat-square)

A Helm chart to deploy Cloud Pi Native Console

Expand Down
2 changes: 1 addition & 1 deletion charts/dso-console/templates/server/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ data:
KEYCLOAK_DOMAIN: {{ .Values.global.keycloak.domain }}
KEYCLOAK_REALM: {{ .Values.global.keycloak.realm }}
KEYCLOAK_REDIRECT_URI: {{ .Values.global.keycloak.redirectUri }}
KEYCLOAK_CLIENT_ID: {{ .Values.global.keycloak.clientIdBackend }}
KEYCLOAK_CLIENT_ID: {{ .Values.global.keycloak.clientIds.backend }}
{{- if .Values.server.extraCa.name }}
NODE_EXTRA_CA_CERTS: {{ printf "%s/%s" "/config" .Values.server.extraCa.mountSubPath }}
{{- end }}
Expand Down
8 changes: 4 additions & 4 deletions charts/dso-console/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,9 @@ client:
# -- Console CPN client container env variables loaded from configmap or secret reference.
envFrom: []
# - configMapRef:
# name: my-config
# name: my-config
# - secretRef:
# name: my-secret
# name: my-secret
# -- Console CPN client container env variables, it will be injected into a configmap and loaded into the container.
env: {}
# -- Console CPN client container env secrets, it will be injected into a secret and loaded into the container.
Expand Down Expand Up @@ -323,9 +323,9 @@ server:
# -- Console CPN server container env variables loaded from configmap or secret reference.
envFrom: []
# - configMapRef:
# name: my-config
# name: my-config
# - secretRef:
# name: my-secret
# name: my-secret
# -- Console CPN server container env variables, it will be injected into a configmap and loaded into the container.
env: {}
## csv list of plugins to disabled
Expand Down
Loading