Improve oran_oom helm charts
[it/dep.git] / smo-install / oran_oom / helmmanager / templates / serviceaccount.yaml
1 ################################################################################
2 #   Copyright (c) 2021 Nordix Foundation.                                      #
3 #                                                                              #
4 #   Licensed under the Apache License, Version 2.0 (the "License");            #
5 #   you may not use this file except in compliance with the License.           #
6 #   You may obtain a copy of the License at                                    #
7 #                                                                              #
8 #       http://www.apache.org/licenses/LICENSE-2.0                             #
9 #                                                                              #
10 #   Unless required by applicable law or agreed to in writing, software        #
11 #   distributed under the License is distributed on an "AS IS" BASIS,          #
12 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #
13 #   See the License for the specific language governing permissions and        #
14 #   limitations under the License.                                             #
15 ################################################################################
16
17
18 apiVersion: v1
19 kind: ServiceAccount
20 metadata:
21   name: {{ include "common.namespace" . }}-helm-manager-sa
22   namespace: {{ include "common.namespace" . }}
23   labels: {{- include "common.labels" . | nindent 4 }}
24 ---
25 apiVersion: rbac.authorization.k8s.io/v1
26 kind: ClusterRoleBinding
27 metadata:
28  name: {{ include "common.namespace" . }}-helm-manager-sa-clusterrolebinding
29  namespace: {{ include "common.namespace" . }}
30  labels: {{- include "common.labels" . | nindent 4 }}
31 subjects:
32 - kind: ServiceAccount
33   name: {{ include "common.namespace" . }}-helm-manager-sa
34   namespace: {{ include "common.namespace" . }}
35 roleRef:
36  kind: ClusterRole
37  name: {{ .Values.clusterRoleName }}
38  apiGroup: rbac.authorization.k8s.io