Bump version, add SA annotation and exec resources
This commit is contained in:
parent
b563fb1911
commit
87999085bb
5 changed files with 16 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
apiVersion: v1
|
||||
appVersion: "v2.6.1"
|
||||
appVersion: "v2.6.2"
|
||||
description: A Helm chart for Argo Workflows
|
||||
name: argo
|
||||
version: 0.7.3
|
||||
|
|
|
@ -3,4 +3,6 @@ apiVersion: v1
|
|||
kind: ServiceAccount
|
||||
metadata:
|
||||
name: {{ .Values.server.serviceAccount }}
|
||||
annotations:
|
||||
{{ toYaml .Values.server.serviceAccountAnnotation | indent 4 }}
|
||||
{{- end -}}
|
||||
|
|
|
@ -16,6 +16,11 @@ data:
|
|||
{{- end }}
|
||||
{{- end }}
|
||||
containerRuntimeExecutor: {{ .Values.controller.containerRuntimeExecutor }}
|
||||
{{- with .Values.executor.resources }}
|
||||
executor:
|
||||
resources:
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
artifactRepository:
|
||||
{{- if or .Values.minio.install .Values.useDefaultArtifactRepo }}
|
||||
{{- if .Values.artifactRepository.archiveLogs }}
|
||||
|
|
|
@ -2,3 +2,5 @@ apiVersion: v1
|
|||
kind: ServiceAccount
|
||||
metadata:
|
||||
name: {{ .Values.controller.serviceAccount }}
|
||||
annotations:
|
||||
{{ toYaml .Values.controller.serviceAccountAnnotation | indent 4 }}
|
||||
|
|
|
@ -4,7 +4,7 @@ images:
|
|||
server: argocli
|
||||
executor: argoexec
|
||||
pullPolicy: Always
|
||||
tag: v2.6.1
|
||||
tag: v2.6.2
|
||||
|
||||
crdVersion: v1alpha1
|
||||
installCRD: true
|
||||
|
@ -59,6 +59,8 @@ controller:
|
|||
enabled: false
|
||||
additionalLabels: {}
|
||||
serviceAccount: argo
|
||||
# Service account annotations
|
||||
serviceAccountAnnotation: {}
|
||||
name: workflow-controller
|
||||
workflowNamespaces:
|
||||
- default
|
||||
|
@ -103,6 +105,7 @@ executor:
|
|||
image:
|
||||
# Overrides .images.tag if defined.
|
||||
tag: ""
|
||||
resources: {}
|
||||
|
||||
server:
|
||||
enabled: true
|
||||
|
@ -124,6 +127,8 @@ server:
|
|||
servicePort: 2746
|
||||
# servicePortName: http
|
||||
serviceAccount: argo-server
|
||||
# Service account annotations
|
||||
serviceAccountAnnotation: {}
|
||||
# Annotations to be applied to the UI Service
|
||||
serviceAnnotations: {}
|
||||
# Optional labels to add to the UI Service
|
||||
|
|
Loading…
Reference in a new issue