Skip to content

Commit

Permalink
Pass config by global
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelldls committed Jul 11, 2024
1 parent c3c47de commit 1d8ee25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Charts/ioc-instance/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
labels:
app: {{ .Release.Name }}
data:
{{- range $k, $v := .Values.files }}
{{- range $k, $v := .Values.global.files }}
{{ $k }}: |-
{{ $v | indent 4 }}
{{- end }}
2 changes: 1 addition & 1 deletion Charts/ioc-instance/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ spec:
ioc_group: {{ $ioc_group }}
is_ioc: "true"
annotations:
{{- range $k, $v := .Values.files }}
{{- range $k, $v := .Values.global.files }}
{{ $k }}-sha256: {{ $v | sha256sum }}
{{- end }}
spec:
Expand Down

0 comments on commit 1d8ee25

Please sign in to comment.