We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d752b27 commit 339bf37Copy full SHA for 339bf37
2 files changed
chart/templates/clusterrolebinding.yaml
@@ -1,3 +1,4 @@
1
+{{- if .Values.rbac.create }}
2
kind: ClusterRoleBinding
3
apiVersion: rbac.authorization.k8s.io/v1
4
metadata:
@@ -10,3 +11,4 @@ subjects:
10
11
- kind: ServiceAccount
12
name: {{ include "hcloud-cloud-controller-manager.name" . }}
13
namespace: {{ .Release.Namespace }}
14
+{{- end }}
chart/values.yaml
@@ -129,6 +129,10 @@ robot:
129
# Set to true to enable support for Robot (Dedicated) servers.
130
enabled: false
131
132
+rbac:
133
+ # Create a cluster role binding with admin access for the service account.
134
+ create: true
135
+
136
podLabels: {}
137
138
podAnnotations: {}
0 commit comments