Allow configuring Argo executor
This commit is contained in:
parent
3f7546c906
commit
1302a132d9
3 changed files with 14 additions and 2 deletions
|
@ -2,7 +2,7 @@ apiVersion: v1
|
||||||
appVersion: "v2.4.3"
|
appVersion: "v2.4.3"
|
||||||
description: A Helm chart for Argo Workflows
|
description: A Helm chart for Argo Workflows
|
||||||
name: argo
|
name: argo
|
||||||
version: 0.6.8
|
version: 0.6.9
|
||||||
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
maintainers:
|
maintainers:
|
||||||
|
|
|
@ -46,3 +46,6 @@ data:
|
||||||
{{- if .Values.controller.persistence }}
|
{{- if .Values.controller.persistence }}
|
||||||
persistence:
|
persistence:
|
||||||
{{ toYaml .Values.controller.persistence | indent 6 }}{{- end }}
|
{{ toYaml .Values.controller.persistence | indent 6 }}{{- end }}
|
||||||
|
{{- if .Values.controller.executor }}
|
||||||
|
executor:
|
||||||
|
{{ toYaml .Values.controller.executor | indent 6}}{{- end }}
|
||||||
|
|
|
@ -4,7 +4,7 @@ images:
|
||||||
ui: argoui
|
ui: argoui
|
||||||
executor: argoexec
|
executor: argoexec
|
||||||
pullPolicy: Always
|
pullPolicy: Always
|
||||||
tag: v2.4.3
|
tag: v2.6.0
|
||||||
|
|
||||||
crdVersion: v1alpha1
|
crdVersion: v1alpha1
|
||||||
installCRD: true
|
installCRD: true
|
||||||
|
@ -25,6 +25,15 @@ controller:
|
||||||
# Optional labels to add to the controller pods
|
# Optional labels to add to the controller pods
|
||||||
podLabels: {}
|
podLabels: {}
|
||||||
# podPortName: http
|
# podPortName: http
|
||||||
|
executor:
|
||||||
|
imagePullPolicy: IfNotPresent
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
cpu: 0.1
|
||||||
|
memory: 64Mi
|
||||||
|
limits:
|
||||||
|
cpu: 0.5
|
||||||
|
memory: 512Mi
|
||||||
metricsConfig:
|
metricsConfig:
|
||||||
enabled: false
|
enabled: false
|
||||||
path: /metrics
|
path: /metrics
|
||||||
|
|
Loading…
Reference in a new issue