Skip to content

Commit

Permalink
fix: always render environment
Browse files Browse the repository at this point in the history
  • Loading branch information
robinbourianes-kalisio committed Jul 16, 2024
1 parent ca97837 commit 497e6e6
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
2 changes: 0 additions & 2 deletions charts/kanboard/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,8 @@ spec:
- name: {{ include "kargo.names.name" . }}
image: {{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}
imagePullPolicy: {{ .Values.image.pullPolicy }}
{{- if .Values.env }}
env:
{{- include "kargo.environment.render" (dict "env" .Values.env "rawEnv" .Values.rawEnv "context" $) | indent 12 }}
{{- end }}
ports:
- name: {{ include "kargo.names.name" . }}
containerPort: {{ .Values.containerPort }}
Expand Down
2 changes: 0 additions & 2 deletions charts/kargo/templates/_deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,8 @@ spec:
- name: {{ include "kargo.names.name" . }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ ternary "Always" .Values.image.pullPolicy .Values.forceRestart }}
{{- if .Values.env }}
env:
{{- include "kargo.environment.render" (dict "env" .Values.env "rawEnv" .Values.rawEnv "context" $) | indent 12 }}
{{- end }}
ports:
- name: {{ include "kargo.names.name" . | trunc 15 }}
containerPort: {{ .Values.containerPort }}
Expand Down
2 changes: 0 additions & 2 deletions charts/passbolt/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,8 @@ spec:
- name: {{ include "kargo.names.name" . }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
{{- if .Values.env }}
env:
{{- include "kargo.environment.render" (dict "env" .Values.env "rawEnv" .Values.rawEnv "context" $) | indent 12 }}
{{- end }}
ports:
- name: {{ include "kargo.names.name" . }}
containerPort: {{ .Values.containerPort }}
Expand Down

0 comments on commit 497e6e6

Please sign in to comment.