Skip to content

Commit 3970767

Browse files
committed
proper merge
1 parent 7fe0304 commit 3970767

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

charts/console/Chart.yaml

Lines changed: 1 addition & 1 deletion
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.1.8
8+
version: 0.1.9
99

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

charts/console/templates/deployment.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,9 @@ spec:
4848
port: http
4949
resources:
5050
{{- toYaml .Values.resources | nindent 12 }}
51+
{{- with .Values.environmentVariables }}
5152
env:
52-
{{- toYaml .Values.environmentVariables | nindent 12 }}
53+
{{- toYaml . | nindent 12 }}
5354
- name: BRIDGE_BASE_ADDRESS
5455
value: {{ .Values.bridgeEnvironmentVariables.BRIDGE_BASE_ADDRESS }}
5556
- name: BRIDGE_USER_AUTH
@@ -67,6 +68,7 @@ spec:
6768
value: {{ .Values.bridgeEnvironmentVariables.BRIDGE_USER_AUTH_OIDC_ISSUER_URL }}
6869
- name: BRIDGE_V
6970
value: {{ .Values.verbosity }}
71+
{{- end }}
7072
{{- with .Values.nodeSelector }}
7173
nodeSelector:
7274
{{- toYaml . | nindent 8 }}

charts/console/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ claims:
5353
groups:
5454
- groups
5555

56-
environmentVariables: {}
56+
environmentVariables: []
5757

5858
# merged with environmentVariables
5959
bridgeEnvironmentVariables:

0 commit comments

Comments
 (0)