File tree Expand file tree Collapse file tree 6 files changed +31
-0
lines changed
charts/dapr/charts/dapr_rbac Expand file tree Collapse file tree 6 files changed +31
-0
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,10 @@ kind: ServiceAccount
3
3
metadata :
4
4
name : dapr-injector
5
5
namespace : {{ .Release.Namespace }}
6
+ {{- with .Values.serviceAccount.injector.annotations }}
7
+ annotations :
8
+ {{- toYaml . | nindent 4 }}
9
+ {{- end }}
6
10
labels :
7
11
{{- range $key, $value := .Values.global.k8sLabels }}
8
12
{{ $key }}: {{ tpl $value $ }}
Original file line number Diff line number Diff line change @@ -3,6 +3,10 @@ kind: ServiceAccount
3
3
metadata :
4
4
name : dapr-operator
5
5
namespace : {{ .Release.Namespace }}
6
+ {{- with .Values.serviceAccount.operator.annotations }}
7
+ annotations :
8
+ {{- toYaml . | nindent 4 }}
9
+ {{- end }}
6
10
labels :
7
11
{{- range $key, $value := .Values.global.k8sLabels }}
8
12
{{ $key }}: {{ tpl $value $ }}
Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ kind: ServiceAccount
4
4
metadata :
5
5
name : dapr-placement
6
6
namespace : {{ .Release.Namespace }}
7
+ {{- with .Values.serviceAccount.placement.annotations }}
8
+ annotations :
9
+ {{- toYaml . | nindent 4 }}
10
+ {{- end }}
7
11
labels :
8
12
{{- range $key, $value := .Values.global.k8sLabels }}
9
13
{{ $key }}: {{ tpl $value $ }}
Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ kind: ServiceAccount
4
4
metadata :
5
5
name : dapr-scheduler
6
6
namespace : {{ .Release.Namespace }}
7
+ {{- with .Values.serviceAccount.scheduler.annotations }}
8
+ annotations :
9
+ {{- toYaml . | nindent 4 }}
10
+ {{- end }}
7
11
labels :
8
12
{{- range $key, $value := .Values.global.k8sLabels }}
9
13
{{ $key }}: {{ tpl $value $ }}
Original file line number Diff line number Diff line change @@ -3,6 +3,10 @@ kind: ServiceAccount
3
3
metadata :
4
4
name : dapr-sentry
5
5
namespace : {{ .Release.Namespace }}
6
+ {{- with .Values.serviceAccount.sentry.annotations }}
7
+ annotations :
8
+ {{- toYaml . | nindent 4 }}
9
+ {{- end }}
6
10
labels :
7
11
{{- range $key, $value := .Values.global.k8sLabels }}
8
12
{{ $key }}: {{ tpl $value $ }}
Original file line number Diff line number Diff line change @@ -2,3 +2,14 @@ secretReader:
2
2
enabled : true
3
3
namespace : default
4
4
component : rbac
5
+ serviceAccount :
6
+ injector :
7
+ annotations : {}
8
+ operator :
9
+ annotations : {}
10
+ placement :
11
+ annotations : {}
12
+ scheduler :
13
+ annotations : {}
14
+ sentry :
15
+ annotations : {}
You can’t perform that action at this time.
0 commit comments