Skip to content

Commit

Permalink
fix(helm): fix extraEnv
Browse files Browse the repository at this point in the history
close #488
  • Loading branch information
tchiotludo committed Nov 4, 2020
1 parent 3ab7937 commit 4ecddc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helm/akhq/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ spec:
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
imagePullPolicy: {{ .Values.image.pullPolicy | default "Always" }}
env:
{{- if $.Values.extraEnv }}{{ toYaml $.Values.extraEnv | trim | nindent 12 }}{{ end }}
{{- if .Values.extraEnv }}{{ toYaml .Values.extraEnv | trim | nindent 12 }}{{ end }}
{{- if .Values.secrets }}
- name: MICRONAUT_ENVIRONMENTS
value: secrets
Expand Down

0 comments on commit 4ecddc6

Please sign in to comment.