
* feat(argo-workflows): Assign common labels to controller resources Signed-off-by: kenchan0130 <tt.tanishi100@gmail.com> * feat(argo-workflows): Assign common labels to the server sa resource Signed-off-by: kenchan0130 <tt.tanishi100@gmail.com> * Update argo-workflows Chart.yaml Signed-off-by: kenchan0130 <tt.tanishi100@gmail.com>
12 lines
448 B
YAML
12 lines
448 B
YAML
{{- if .Values.controller.serviceAccount.create }}
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: {{ template "argo-workflows.controllerServiceAccountName" . }}
|
|
labels:
|
|
{{- include "argo-workflows.labels" (dict "context" . "component" .Values.controller.name "name" .Values.controller.name) | nindent 4 }}
|
|
{{ with .Values.controller.serviceAccount.annotations }}
|
|
annotations:
|
|
{{- toYaml .| nindent 4 }}
|
|
{{- end }}
|
|
{{- end }}
|