Bump version, add SA annotation and exec resources

This commit is contained in:
Kristof Farkas-Pall 2020-03-16 12:02:55 +00:00
parent b563fb1911
commit 87999085bb
No known key found for this signature in database
GPG key ID: 0C8396E9F0F3C9A3
5 changed files with 16 additions and 2 deletions

View file

@ -1,5 +1,5 @@
apiVersion: v1 apiVersion: v1
appVersion: "v2.6.1" appVersion: "v2.6.2"
description: A Helm chart for Argo Workflows description: A Helm chart for Argo Workflows
name: argo name: argo
version: 0.7.3 version: 0.7.3

View file

@ -3,4 +3,6 @@ apiVersion: v1
kind: ServiceAccount kind: ServiceAccount
metadata: metadata:
name: {{ .Values.server.serviceAccount }} name: {{ .Values.server.serviceAccount }}
annotations:
{{ toYaml .Values.server.serviceAccountAnnotation | indent 4 }}
{{- end -}} {{- end -}}

View file

@ -16,6 +16,11 @@ data:
{{- end }} {{- end }}
{{- end }} {{- end }}
containerRuntimeExecutor: {{ .Values.controller.containerRuntimeExecutor }} containerRuntimeExecutor: {{ .Values.controller.containerRuntimeExecutor }}
{{- with .Values.executor.resources }}
executor:
resources:
{{- toYaml . | nindent 8 }}
{{- end }}
artifactRepository: artifactRepository:
{{- if or .Values.minio.install .Values.useDefaultArtifactRepo }} {{- if or .Values.minio.install .Values.useDefaultArtifactRepo }}
{{- if .Values.artifactRepository.archiveLogs }} {{- if .Values.artifactRepository.archiveLogs }}

View file

@ -2,3 +2,5 @@ apiVersion: v1
kind: ServiceAccount kind: ServiceAccount
metadata: metadata:
name: {{ .Values.controller.serviceAccount }} name: {{ .Values.controller.serviceAccount }}
annotations:
{{ toYaml .Values.controller.serviceAccountAnnotation | indent 4 }}

View file

@ -4,7 +4,7 @@ images:
server: argocli server: argocli
executor: argoexec executor: argoexec
pullPolicy: Always pullPolicy: Always
tag: v2.6.1 tag: v2.6.2
crdVersion: v1alpha1 crdVersion: v1alpha1
installCRD: true installCRD: true
@ -59,6 +59,8 @@ controller:
enabled: false enabled: false
additionalLabels: {} additionalLabels: {}
serviceAccount: argo serviceAccount: argo
# Service account annotations
serviceAccountAnnotation: {}
name: workflow-controller name: workflow-controller
workflowNamespaces: workflowNamespaces:
- default - default
@ -103,6 +105,7 @@ executor:
image: image:
# Overrides .images.tag if defined. # Overrides .images.tag if defined.
tag: "" tag: ""
resources: {}
server: server:
enabled: true enabled: true
@ -124,6 +127,8 @@ server:
servicePort: 2746 servicePort: 2746
# servicePortName: http # servicePortName: http
serviceAccount: argo-server serviceAccount: argo-server
# Service account annotations
serviceAccountAnnotation: {}
# Annotations to be applied to the UI Service # Annotations to be applied to the UI Service
serviceAnnotations: {} serviceAnnotations: {}
# Optional labels to add to the UI Service # Optional labels to add to the UI Service