Skip to content

Commit 5e5552d

Browse files
committed
minor updates
Signed-off-by: Bryce Palmer <[email protected]>
1 parent 9ff52f3 commit 5e5552d

File tree

2 files changed

+8
-12
lines changed

2 files changed

+8
-12
lines changed

openshift-kube-apiserver/admission/authorization/apis/restrictusers/v1alpha1/types.go

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ type RestrictSubjectBindingsAdmissionConfig struct {
1616
// of the OpenShift oauth-apiserver based on observed configuration.
1717
//
1818
// Allowed values are Desired and NotDesired.
19+
// Defaults to Desired.
1920
//
2021
// When set to Desired, the authorization.openshift.io/RestrictSubjectBindings
2122
// admission plugin will be configured with the expectation that the OpenShift

openshift-kube-apiserver/admission/authorization/restrictusers/restrictusers.go

+7-12
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
userinformer "github.com/openshift/client-go/user/informers/externalversions"
2424
"github.com/openshift/library-go/pkg/apiserver/admission/admissionrestconfig"
2525
"github.com/openshift/library-go/pkg/config/helpers"
26-
"k8s.io/kubernetes/openshift-kube-apiserver/admission/authorization/apis/restrictusers/v1alpha1"
26+
restrictusersv1alpha1 "k8s.io/kubernetes/openshift-kube-apiserver/admission/authorization/apis/restrictusers/v1alpha1"
2727
"k8s.io/kubernetes/openshift-kube-apiserver/admission/authorization/restrictusers/usercache"
2828
)
2929

@@ -39,30 +39,30 @@ func pluginForConfig(config io.Reader) (admission.Interface, error) {
3939
return nil, err
4040
}
4141

42-
if cfg != nil && cfg.OpenShiftOAuthDesiredState == v1alpha1.OpenShiftOAuthStateNotDesired {
42+
if cfg != nil && cfg.OpenShiftOAuthDesiredState == restrictusersv1alpha1.OpenShiftOAuthStateNotDesired {
4343
klog.Infof("Admission plugin %q configured to expect the OpenShift oauth-apiserver as not being available. This is effectively the same as disabling the plugin, so it will be disabled.", RestrictSubjectBindingsPluginName)
4444
return nil, nil
4545
}
4646

4747
return NewRestrictUsersAdmission()
4848
}
4949

50-
func readConfig(reader io.Reader) (*v1alpha1.RestrictSubjectBindingsAdmissionConfig, error) {
51-
obj, err := helpers.ReadYAMLToInternal(reader, v1alpha1.Install)
50+
func readConfig(reader io.Reader) (*restrictusersv1alpha1.RestrictSubjectBindingsAdmissionConfig, error) {
51+
obj, err := helpers.ReadYAMLToInternal(reader, restrictusersv1alpha1.Install)
5252
if err != nil {
5353
return nil, err
5454
}
5555
if obj == nil {
5656
return nil, nil
5757
}
58-
config, ok := obj.(*v1alpha1.RestrictSubjectBindingsAdmissionConfig)
58+
config, ok := obj.(*restrictusersv1alpha1.RestrictSubjectBindingsAdmissionConfig)
5959
if !ok {
6060
return nil, fmt.Errorf("unexpected config object: %#v", obj)
6161
}
6262

6363
// validate config
6464
switch config.OpenShiftOAuthDesiredState {
65-
case v1alpha1.OpenShiftOAuthStateDesired, v1alpha1.OpenShiftOAuthStateNotDesired:
65+
case restrictusersv1alpha1.OpenShiftOAuthStateDesired, restrictusersv1alpha1.OpenShiftOAuthStateNotDesired:
6666
// valid, do nothing
6767
default:
6868
return nil, fmt.Errorf("config is invalid, openshiftOAuthDesiredState must be one of Desired,NotDesired but was %s", config.OpenShiftOAuthDesiredState)
@@ -97,12 +97,7 @@ var (
9797

9898
// NewRestrictUsersAdmission configures an admission plugin that enforces
9999
// restrictions on adding role bindings in a project.
100-
func NewRestrictUsersAdmission() (admission.Interface, error) {
101-
return &restrictUsersAdmission{
102-
Handler: admission.NewHandler(admission.Create, admission.Update),
103-
}, nil
104-
}
105-
100+
func NewRestrictUsersAdmission() (admission.Interface, error)
106101
func (q *restrictUsersAdmission) SetExternalKubeClientSet(c kubernetes.Interface) {
107102
q.kubeClient = c
108103
}

0 commit comments

Comments
 (0)