File tree Expand file tree Collapse file tree 3 files changed +24
-1
lines changed Expand file tree Collapse file tree 3 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
name : konnector
3
3
description : Deploys Palo Alto Networks' Cortex KSPM connector for advanced Kubernetes security posture management.
4
4
type : application
5
- version : 1.0.9
5
+ version : 1.0.10
6
6
appVersion : " 1.0.0"
7
7
maintainers :
8
8
- name : Palo Alto Networks - Cortex KSPM team
Original file line number Diff line number Diff line change @@ -64,3 +64,21 @@ roleRef:
64
64
name : {{ $roleName }}
65
65
apiGroup : rbac.authorization.k8s.io
66
66
{{- end }}
67
+
68
+ {{- range $bindingName, $bindingInfo := .Values.system.extraClusterRoleBindings }}
69
+ ---
70
+ apiVersion : rbac.authorization.k8s.io/v1
71
+ kind : ClusterRoleBinding
72
+ metadata :
73
+ name : {{ $bindingName }}
74
+ labels :
75
+ {{- include "common.labels" $ | nindent 4 }}
76
+ subjects :
77
+ - kind : ServiceAccount
78
+ name : {{ $sa }}
79
+ namespace : {{ $namespace }}
80
+ roleRef :
81
+ kind : ClusterRole
82
+ name : {{ $bindingInfo.roleRef.name }}
83
+ apiGroup : rbac.authorization.k8s.io
84
+ {{- end }}
Original file line number Diff line number Diff line change @@ -176,6 +176,11 @@ system:
176
176
resources : ["horizontalpodautoscalers"]
177
177
verbs : ["get", "list", "watch"]
178
178
179
+ extraClusterRoleBindings :
180
+ openshift-anyuid-crole-binding :
181
+ roleRef :
182
+ name : system:openshift:scc:anyuid
183
+
179
184
# ==========================
180
185
# Secrets Resources
181
186
# ==========================
You can’t perform that action at this time.
0 commit comments