Merge branch 'master' into loadbalancer-source-range-typo

This commit is contained in:
John Pekcan 2020-05-14 23:20:28 -05:00 committed by GitHub
commit 1cf6c82edc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 56 additions and 5 deletions

View file

@ -1,8 +1,8 @@
apiVersion: v1 apiVersion: v1
appVersion: "v2.7.6" appVersion: v2.8.0
description: A Helm chart for Argo Workflows description: A Helm chart for Argo Workflows
name: argo name: argo
version: 0.8.6 version: 0.9.1
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:

View file

@ -0,0 +1,17 @@
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
name: clusterworkflowtemplates.argoproj.io
annotations:
helm.sh/hook: crd-install
helm.sh/hook-delete-policy: before-hook-creation
spec:
group: argoproj.io
version: v1alpha1
scope: Cluster
names:
kind: ClusterWorkflowTemplate
plural: clusterworkflowtemplates
shortNames:
- clusterwftmpl
- cwft

View file

@ -0,0 +1,19 @@
{{- if .Values.installCRD }}
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
name: clusterworkflowtemplates.argoproj.io
annotations:
helm.sh/hook: crd-install
helm.sh/hook-delete-policy: before-hook-creation
spec:
group: argoproj.io
version: v1alpha1
scope: Cluster
names:
kind: ClusterWorkflowTemplate
plural: clusterworkflowtemplates
shortNames:
- clusterwftmpl
- cwft
{{- end }}

View file

@ -58,6 +58,7 @@ rules:
- workflows - workflows
- workflowtemplates - workflowtemplates
- cronworkflows - cronworkflows
- clusterworkflowtemplates
verbs: verbs:
- create - create
- get - get

View file

@ -18,6 +18,8 @@ rules:
- workflowtemplates/finalizers - workflowtemplates/finalizers
- cronworkflows - cronworkflows
- cronworkflows/finalizers - cronworkflows/finalizers
- clusterworkflowtemplates
- clusterworkflowtemplates/finalizers
verbs: verbs:
- get - get
- list - list
@ -42,6 +44,8 @@ rules:
- workflowtemplates/finalizers - workflowtemplates/finalizers
- cronworkflows - cronworkflows
- cronworkflows/finalizers - cronworkflows/finalizers
- clusterworkflowtemplates
- clusterworkflowtemplates/finalizers
verbs: verbs:
- create - create
- delete - delete
@ -71,6 +75,8 @@ rules:
- workflowtemplates/finalizers - workflowtemplates/finalizers
- cronworkflows - cronworkflows
- cronworkflows/finalizers - cronworkflows/finalizers
- clusterworkflowtemplates
- clusterworkflowtemplates/finalizers
verbs: verbs:
- create - create
- delete - delete

View file

@ -55,6 +55,8 @@ rules:
resources: resources:
- workflowtemplates - workflowtemplates
- workflowtemplates/finalizers - workflowtemplates/finalizers
- clusterworkflowtemplates
- clusterworkflowtemplates/finalizers
verbs: verbs:
- get - get
- list - list

View file

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

View file

@ -111,6 +111,8 @@ executor:
# Overrides .images.tag if defined. # Overrides .images.tag if defined.
tag: "" tag: ""
resources: {} resources: {}
# Adds environment variables for the executor.
env: {}
server: server:
enabled: true enabled: true