fix(argo-workflows): container and mainContainer imagePullPolicy
This commit is contained in:
parent
b0578c4001
commit
db5d0abe24
2 changed files with 5 additions and 5 deletions
|
@ -3,7 +3,7 @@ appVersion: v3.6.2
|
||||||
name: argo-workflows
|
name: argo-workflows
|
||||||
description: A Helm chart for Argo Workflows
|
description: A Helm chart for Argo Workflows
|
||||||
type: application
|
type: application
|
||||||
version: 0.45.4
|
version: 0.45.5
|
||||||
icon: https://argo-workflows.readthedocs.io/en/stable/assets/logo.png
|
icon: https://argo-workflows.readthedocs.io/en/stable/assets/logo.png
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
sources:
|
sources:
|
||||||
|
@ -16,5 +16,5 @@ annotations:
|
||||||
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
||||||
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: added
|
- kind: fixed
|
||||||
description: Support configuring workflow events in the controller
|
description: Fix main container and executor pull policy option
|
||||||
|
|
|
@ -31,7 +31,7 @@ data:
|
||||||
{{- with .Values.controller.initialDelay }}
|
{{- with .Values.controller.initialDelay }}
|
||||||
initialDelay: {{ . }}
|
initialDelay: {{ . }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if or .Values.mainContainer.resources .Values.mainContainer.env .Values.mainContainer.envFrom .Values.mainContainer.securityContext}}
|
{{- if or .Values.images.pullPolicy .Values.mainContainer}}
|
||||||
mainContainer:
|
mainContainer:
|
||||||
imagePullPolicy: {{ default (.Values.images.pullPolicy) .Values.mainContainer.imagePullPolicy }}
|
imagePullPolicy: {{ default (.Values.images.pullPolicy) .Values.mainContainer.imagePullPolicy }}
|
||||||
{{- with .Values.mainContainer.resources }}
|
{{- with .Values.mainContainer.resources }}
|
||||||
|
@ -47,7 +47,7 @@ data:
|
||||||
securityContext: {{- toYaml . | nindent 8 }}
|
securityContext: {{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if or .Values.executor.resources .Values.executor.env .Values.executor.args .Values.executor.securityContext}}
|
{{- if or .Values.images.pullPolicy .Values.executor}}
|
||||||
executor:
|
executor:
|
||||||
imagePullPolicy: {{ default (.Values.images.pullPolicy) .Values.executor.image.pullPolicy }}
|
imagePullPolicy: {{ default (.Values.images.pullPolicy) .Values.executor.image.pullPolicy }}
|
||||||
{{- with .Values.executor.resources }}
|
{{- with .Values.executor.resources }}
|
||||||
|
|
Loading…
Reference in a new issue