rancher-partner-charts/charts/instana/instana-agent/templates/clusterrolebinding.yaml

17 lines
571 B
YAML
Raw Normal View History

2022-10-26 15:48:27 +00:00
{{- if or .Values.rbac.create (or .Values.openshift (.Capabilities.APIVersions.Has "apps.openshift.io/v1")) }}
---
2021-06-24 01:55:05 +00:00
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: {{ template "instana-agent.fullname" . }}
labels:
{{- include "instana-agent.commonLabels" . | nindent 4 }}
subjects:
- kind: ServiceAccount
name: {{ template "instana-agent.serviceAccountName" . }}
namespace: {{ .Release.Namespace }}
roleRef:
kind: ClusterRole
name: {{ template "instana-agent.fullname" . }}
apiGroup: rbac.authorization.k8s.io
2022-10-26 15:48:27 +00:00
{{- end }}