First attempt including login app in dashboard helmchart
This commit is contained in:
parent
b16ed99b71
commit
bb1aebb706
4 changed files with 21 additions and 13 deletions
|
|
@ -57,7 +57,7 @@ spec:
|
|||
- name: dashboard
|
||||
securityContext: {{- toYaml .Values.dashboard.containerSecurityContext | nindent 12 }}
|
||||
image: {{ template "dashboard.image" . }}
|
||||
imagePullPolicy: {{ .Values.image.pullPolicy | quote }}
|
||||
imagePullPolicy: {{ .Values.dashboard.image.pullPolicy | quote }}
|
||||
{{- if .Values.dashboard.command }}
|
||||
command: {{- include "common.tplvalues.render" (dict "value" .Values.dashboard.command "context" $) | nindent 12 }}
|
||||
{{- end }}
|
||||
|
|
@ -119,7 +119,7 @@ spec:
|
|||
- name: backend
|
||||
securityContext: {{- toYaml .Values.backend.containerSecurityContext | nindent 12 }}
|
||||
image: {{ template "backend.image" . }}
|
||||
imagePullPolicy: {{ .Values.image.pullPolicy | quote }}
|
||||
imagePullPolicy: {{ .Values.backend.image.pullPolicy | quote }}
|
||||
{{- if .Values.backend.command }}
|
||||
command: {{- include "common.tplvalues.render" (dict "value" .Values.backend.command "context" $) | nindent 12 }}
|
||||
{{- end }}
|
||||
|
|
|
|||
Reference in a new issue