Skip to content

Commit 2285aa9

Browse files
committed
extraEnv
1 parent d96dc41 commit 2285aa9

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

README.md

Whitespace-only changes.

charts/console/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: A Helm chart for Kubernetes
55
type: application
66

77
# This is the chart version.
8-
version: 0.2.3
8+
version: 0.2.4
99

1010
# This is the version number of the application being deployed.
11-
appVersion: "4.8.0" # https://access.redhat.com/support/policy/updates/openshift # paragraph "OpenShift Support Matrix"
11+
appVersion: "4.11.0" # https://access.redhat.com/support/policy/updates/openshift # paragraph "OpenShift Support Matrix"

charts/console/templates/deployment.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@ spec:
6666
value: {{ .Values.bridgeEnvironmentVariables.BRIDGE_USER_AUTH_OIDC_ISSUER_URL }}
6767
- name: BRIDGE_V
6868
value: {{ .Values.verbosity | quote }}
69+
{{- with .Values.extraEnv }}
70+
{{- toYaml . | nindent 12 }}
71+
{{- end }}
6972
{{- with .Values.nodeSelector }}
7073
nodeSelector:
7174
{{- toYaml . | nindent 8 }}

charts/console/values.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ image:
88
repository: quay.io/openshift/origin-console
99
pullPolicy: IfNotPresent
1010
# Overrides the image tag whose default is the chart appVersion.
11-
tag: ""
11+
tag: "4.11.0" # 4.11.0 introduces 'dark mode' by default.
1212

1313
imagePullSecrets: []
1414
nameOverride: ""
@@ -58,8 +58,10 @@ bridgeEnvironmentVariables:
5858
BRIDGE_K8S_AUTH: oidc
5959
BRIDGE_BASE_ADDRESS: # "https://my-console.cluster.example.com"
6060
BRIDGE_USER_AUTH_OIDC_CLIENT_ID: # BRIDGE_USER_AUTH_OIDC_CLIENT_ID
61-
BRIDGE_USER_AUTH_OIDC_CLIENT_SECRET:
6261
BRIDGE_USER_AUTH_OIDC_ISSUER_URL: # https://my-oidc-prodiver.okta.jumpcloud.example.com
62+
# BRIDGE_USER_AUTH_OIDC_CLIENT_SECRET defaults to consuming vaule from values.secret.secretName
63+
64+
extraEnv:
6365

6466
# log-level
6567
verbosity: 1

0 commit comments

Comments
 (0)