mirror of
https://github.com/clearml/clearml-helm-charts
synced 2025-04-17 01:31:13 +00:00
feat: added service account annotations
This commit is contained in:
parent
8132ef9cfb
commit
b292e7698f
@ -2,13 +2,25 @@ apiVersion: v1
|
||||
kind: ServiceAccount
|
||||
metadata:
|
||||
name: {{ .Values.apiserver.serviceAccountName }}-apiserver
|
||||
{{- if .Values.apiserver.serviceAccountAnnotations }}
|
||||
annotations:
|
||||
{{- toYaml .Values.apiserver.serviceAccountAnnotations | nindent 4 }}
|
||||
{{- end }}
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: ServiceAccount
|
||||
metadata:
|
||||
name: {{ .Values.fileserver.serviceAccountName }}-fileserver
|
||||
{{- if .Values.fileserver.serviceAccountAnnotations }}
|
||||
annotations:
|
||||
{{- toYaml .Values.fileserver.serviceAccountAnnotations | nindent 4 }}
|
||||
{{- end }}
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: ServiceAccount
|
||||
metadata:
|
||||
name: {{ .Values.webserver.serviceAccountName }}-webserver
|
||||
{{- if .Values.webserver.serviceAccountAnnotations }}
|
||||
annotations:
|
||||
{{- toYaml .Values.webserver.serviceAccountAnnotations | nindent 4 }}
|
||||
{{- end }}
|
||||
|
@ -62,6 +62,8 @@ apiserver:
|
||||
prepopulateEnabled: true
|
||||
# -- The default serviceAccountName to be used
|
||||
serviceAccountName: clearml
|
||||
# -- Add the provided map to the annotations for the ServiceAccount resource created by this chart.
|
||||
serviceAccountAnnotations: {}
|
||||
# -- Api Server image configuration
|
||||
image:
|
||||
registry: ""
|
||||
@ -190,6 +192,8 @@ fileserver:
|
||||
deploymentAnnotations: {}
|
||||
# -- The default serviceAccountName to be used
|
||||
serviceAccountName: clearml
|
||||
# -- Add the provided map to the annotations for the ServiceAccount resource created by this chart.
|
||||
serviceAccountAnnotations: {}
|
||||
# -- File Server image configuration
|
||||
image:
|
||||
registry: ""
|
||||
@ -286,6 +290,8 @@ webserver:
|
||||
deploymentAnnotations: {}
|
||||
# -- The default serviceAccountName to be used
|
||||
serviceAccountName: clearml
|
||||
# -- Add the provided map to the annotations for the ServiceAccount resource created by this chart.
|
||||
serviceAccountAnnotations: {}
|
||||
# -- Web Server image configuration
|
||||
image:
|
||||
registry: ""
|
||||
|
Loading…
Reference in New Issue
Block a user