Merge branch 'master' into master
This commit is contained in:
commit
5815677ee2
4 changed files with 33 additions and 1 deletions
|
@ -2,7 +2,7 @@ apiVersion: v1
|
||||||
appVersion: v2.8.0
|
appVersion: v2.8.0
|
||||||
description: A Helm chart for Argo Workflows
|
description: A Helm chart for Argo Workflows
|
||||||
name: argo
|
name: argo
|
||||||
version: 0.9.6
|
version: 0.9.8
|
||||||
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:
|
||||||
|
|
|
@ -63,6 +63,14 @@ spec:
|
||||||
value: {{ .Values.server.baseHref | quote }}
|
value: {{ .Values.server.baseHref | quote }}
|
||||||
resources:
|
resources:
|
||||||
{{- toYaml .Values.server.resources | nindent 12 }}
|
{{- toYaml .Values.server.resources | nindent 12 }}
|
||||||
|
{{- with .Values.server.volumeMounts }}
|
||||||
|
volumeMounts:
|
||||||
|
{{- toYaml . | nindent 12}}
|
||||||
|
{{- end }}
|
||||||
|
{{- with .Values.server.volumes }}
|
||||||
|
volumes:
|
||||||
|
{{- toYaml . | nindent 8}}
|
||||||
|
{{- end }}
|
||||||
{{- with .Values.server.nodeSelector }}
|
{{- with .Values.server.nodeSelector }}
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
|
|
|
@ -67,3 +67,6 @@ data:
|
||||||
{{- if .Values.controller.workflowDefaults }}
|
{{- if .Values.controller.workflowDefaults }}
|
||||||
workflowDefaults:
|
workflowDefaults:
|
||||||
{{ toYaml .Values.controller.workflowDefaults | indent 6 }}{{- end }}
|
{{ toYaml .Values.controller.workflowDefaults | indent 6 }}{{- end }}
|
||||||
|
{{- with .Values.server.sso }}
|
||||||
|
sso: {{- toYaml . | nindent 6 }}
|
||||||
|
{{- end }}
|
||||||
|
|
|
@ -164,6 +164,10 @@ server:
|
||||||
# Extra arguments to provide to the Argo server binary.
|
# Extra arguments to provide to the Argo server binary.
|
||||||
extraArgs: []
|
extraArgs: []
|
||||||
|
|
||||||
|
## Additional volumes to the server main container.
|
||||||
|
volumeMounts: []
|
||||||
|
volumes: []
|
||||||
|
|
||||||
## Ingress configuration.
|
## Ingress configuration.
|
||||||
## ref: https://kubernetes.io/docs/user-guide/ingress/
|
## ref: https://kubernetes.io/docs/user-guide/ingress/
|
||||||
##
|
##
|
||||||
|
@ -197,6 +201,23 @@ server:
|
||||||
clusterWorkflowTemplates:
|
clusterWorkflowTemplates:
|
||||||
# Give the server permissions to edit ClusterWorkflowTemplates.
|
# Give the server permissions to edit ClusterWorkflowTemplates.
|
||||||
enableEditing: true
|
enableEditing: true
|
||||||
|
sso:
|
||||||
|
## SSO configuration when SSO is specified as a server auth mode.
|
||||||
|
## All the values are requied. SSO is activated by adding --auth-mode=sso
|
||||||
|
## to the server command line.
|
||||||
|
#
|
||||||
|
## The root URL of the OIDC identity provider.
|
||||||
|
# issuer: https://accounts.google.com
|
||||||
|
## Name of a secret and a key in it to retrieve the app OIDC client ID from.
|
||||||
|
# clientId:
|
||||||
|
# name: argo-server-sso
|
||||||
|
# key: client-id
|
||||||
|
## Name of a secret and a key in it to retrieve the app OIDC client secret from.
|
||||||
|
# clientSecret:
|
||||||
|
# name: argo-server-sso
|
||||||
|
# key: client-secret
|
||||||
|
## The OIDC redirect URL. Should be in the form <argo-root-url>/oauth2/callback.
|
||||||
|
# redirectUrl: https://argo/oauth2/callback
|
||||||
|
|
||||||
# Influences the creation of the ConfigMap for the workflow-controller itself.
|
# Influences the creation of the ConfigMap for the workflow-controller itself.
|
||||||
useDefaultArtifactRepo: false
|
useDefaultArtifactRepo: false
|
||||||
|
|
Loading…
Reference in a new issue