MR review
This commit is contained in:
parent
d4d435587a
commit
7464b8ff9f
4 changed files with 8 additions and 5 deletions
|
@ -55,7 +55,10 @@ spec:
|
|||
- name: IN_CLUSTER
|
||||
value: "true"
|
||||
- name: ARGO_NAMESPACE
|
||||
value: {{ .Release.Namespace | quote }}
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
apiVersion: v1
|
||||
fieldPath: metadata.namespace
|
||||
- name: BASE_HREF
|
||||
value: {{ .Values.server.baseHref | quote }}
|
||||
resources:
|
||||
|
|
|
@ -4,5 +4,5 @@ kind: ServiceAccount
|
|||
metadata:
|
||||
name: {{ .Values.server.serviceAccount }}
|
||||
annotations:
|
||||
{{ toYaml .Values.server.serviceAccountAnnotation | indent 4 }}
|
||||
{{ toYaml .Values.server.serviceAccountAnnotations | indent 4 }}
|
||||
{{- end -}}
|
||||
|
|
|
@ -3,4 +3,4 @@ kind: ServiceAccount
|
|||
metadata:
|
||||
name: {{ .Values.controller.serviceAccount }}
|
||||
annotations:
|
||||
{{ toYaml .Values.controller.serviceAccountAnnotation | indent 4 }}
|
||||
{{ toYaml .Values.controller.serviceAccountAnnotations | indent 4 }}
|
||||
|
|
|
@ -64,7 +64,7 @@ controller:
|
|||
additionalLabels: {}
|
||||
serviceAccount: argo
|
||||
# Service account annotations
|
||||
serviceAccountAnnotation: {}
|
||||
serviceAccountAnnotations: {}
|
||||
name: workflow-controller
|
||||
workflowNamespaces:
|
||||
- default
|
||||
|
@ -131,7 +131,7 @@ server:
|
|||
# servicePortName: http
|
||||
serviceAccount: argo-server
|
||||
# Service account annotations
|
||||
serviceAccountAnnotation: {}
|
||||
serviceAccountAnnotations: {}
|
||||
# Annotations to be applied to the UI Service
|
||||
serviceAnnotations: {}
|
||||
# Optional labels to add to the UI Service
|
||||
|
|
Loading…
Reference in a new issue