You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OSD-6482: Dedicated-admins should be able to manage CustomDomain
This will allow `CustomDomain` objects from `managed.openshift.io` to be
managed by members of the dedicated-admins group. This will also
slightly modify the logic of the `MustGather` section to refer to the
ApiGroup as well as the Kind (for future safety), and switch them to
being references to constants. Further, the check is done outside a loop
so it's a wee bit faster.
Signed-off-by: Lisa Seelye <lisa@users.noreply.github.com>
Copy file name to clipboardExpand all lines: pkg/webhooks/regularuser/regularuser.go
+22-11Lines changed: 22 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -17,14 +17,17 @@ import (
17
17
)
18
18
19
19
const (
20
-
WebhookNamestring="regular-user-validation"
21
-
docStringstring=`Managed OpenShift customers may not manage any objects in the following APIgroups %s, nor may Managed OpenShift customers alter the ClusterVersion, Node or SubjectPermission objects.`
20
+
WebhookNamestring="regular-user-validation"
21
+
docStringstring=`Managed OpenShift customers may not manage any objects in the following APIgroups %s, nor may Managed OpenShift customers alter the ClusterVersion, Node or SubjectPermission objects.`
0 commit comments