config/kubernetes/helm-charts/rbd-provisioner/templates/clusterrolebinding.yaml
Irina Mihai 6b2be98f0d Enhancements for the rbd-provisioner helm chart
- remove the need to create the openstack namespace: the
  namespace will be created by default by helm when the first
  chart is installed using the namespace
- the rbd-provisioner chart is now installed in the openstack
  namespace and doesn't create resources over multiple namespaces

Change-Id: I875acd5959ceca033d9233ddf70ac951db7ca6a8
Story: 2004520
Task: 28395
Signed-off-by: Irina Mihai <irina.mihai@windriver.com>
2018-12-13 19:13:15 +00:00

23 lines
488 B
YAML

{{/*
#
# Copyright (c) 2018 Wind River Systems, Inc.
#
# SPDX-License-Identifier: Apache-2.0
#
*/}}
{{- if .Values.global.rbac }}
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: {{ .Values.rbac.clusterRoleBinding }}
subjects:
- kind: ServiceAccount
name: {{ .Values.rbac.serviceAccount }}
namespace: {{ .Release.Namespace }}
roleRef:
kind: ClusterRole
name: {{ .Values.rbac.clusterRole }}
apiGroup: rbac.authorization.k8s.io
{{- end}}