1
0
Fork 0

cluster/kube: allow system:admin-namespaces to modify ingresses

This will permit any binding to system:admin-namespaces (eg. personal-*
namespaces, per-namespace extra admin access like matrix-0x3c) the
ability to create and updates ingresses.

Change-Id: I522896ebe290fe982d6fe46b7b1d604d22b4f72c
master
q3k 2021-02-07 19:23:43 +00:00 committed by q3k
parent 41bbf1436a
commit f40c9249ce
1 changed files with 5 additions and 0 deletions

View File

@ -120,6 +120,11 @@ local pki = import "lib/pki.libsonnet";
resources: ["jobs", "cronjobs"],
verbs: ["*"],
},
{
apiGroups: ["networking.k8s.io"],
resources: ["ingresses"],
verbs: ["*"],
},
],
},
// This ClusterRoleBindings allows root access to cluster admins.