diff options
author | Fiachra Corcoran <fiachra.corcoran@est.tech> | 2022-04-12 15:53:41 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2022-04-12 15:53:41 +0000 |
commit | d0de321f19a347b39cdee74fb7861e6a3eacfd67 (patch) | |
tree | 1693a12cf14b5afc03d0c97e616e32a4a6a4a20e /kubernetes/policy/components/policy-clamp-cl-k8s-ppnt/templates | |
parent | 3ec7064b646ebf6bf631af49c0573cd8ab4ee50a (diff) | |
parent | 6a704d00d3a598039f926f80600f00a8b25e58de (diff) |
Merge "[POLICY] Enable cluster role for k8s-ppnt"
Diffstat (limited to 'kubernetes/policy/components/policy-clamp-cl-k8s-ppnt/templates')
-rw-r--r-- | kubernetes/policy/components/policy-clamp-cl-k8s-ppnt/templates/service.yaml | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/kubernetes/policy/components/policy-clamp-cl-k8s-ppnt/templates/service.yaml b/kubernetes/policy/components/policy-clamp-cl-k8s-ppnt/templates/service.yaml index be2449f890..73381c9e3b 100644 --- a/kubernetes/policy/components/policy-clamp-cl-k8s-ppnt/templates/service.yaml +++ b/kubernetes/policy/components/policy-clamp-cl-k8s-ppnt/templates/service.yaml @@ -1,6 +1,6 @@ {{/* # ============LICENSE_START======================================================= -# Copyright (C) 2021 Nordix Foundation. All rights reserved. +# Copyright (C) 2021-2022 Nordix Foundation. All rights reserved. # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -18,4 +18,28 @@ # ============LICENSE_END========================================================= */}} -{{ include "common.service" . }} +apiVersion: v1 +kind: ServiceAccount +metadata: + name: policy-clamp-cl-k8s-ppnt + namespace: {{ include "common.namespace" . }} +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: {{ include "common.namespace" . }}-policy-clamp-cl-k8s-ppnt-binding + namespace: {{ include "common.namespace" . }} + labels: + app: {{ include "common.name" . }} + chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} + release: {{ include "common.release" . }} + heritage: {{ .Release.Service }} +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: cluster-admin +subjects: + - kind: ServiceAccount + name: policy-clamp-cl-k8s-ppnt + namespace: {{ include "common.namespace" . }} + |