Skip to content

Commit 3e7fc7b

Browse files
committed
fixup! revert cosmetic changes
Signed-off-by: Bryce Palmer <[email protected]>
1 parent 5592a48 commit 3e7fc7b

File tree

3 files changed

+7
-13
lines changed

3 files changed

+7
-13
lines changed

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

+5-6
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,10 @@ type restrictUsersAdmission struct {
4949
groupCache GroupCache
5050
}
5151

52-
var (
53-
_ = admissionrestconfig.WantsRESTClientConfig(&restrictUsersAdmission{})
54-
_ = WantsUserInformer(&restrictUsersAdmission{})
55-
_ = initializer.WantsExternalKubeClientSet(&restrictUsersAdmission{})
56-
_ = admission.ValidationInterface(&restrictUsersAdmission{})
57-
)
52+
var _ = admissionrestconfig.WantsRESTClientConfig(&restrictUsersAdmission{})
53+
var _ = WantsUserInformer(&restrictUsersAdmission{})
54+
var _ = initializer.WantsExternalKubeClientSet(&restrictUsersAdmission{})
55+
var _ = admission.ValidationInterface(&restrictUsersAdmission{})
5856

5957
// NewRestrictUsersAdmission configures an admission plugin that enforces
6058
// restrictions on adding role bindings in a project.
@@ -125,6 +123,7 @@ func subjectsDelta(elementsToIgnore, elements []rbac.Subject) []rbac.Subject {
125123
// each subject in the binding must be matched by some rolebinding restriction
126124
// in the namespace.
127125
func (q *restrictUsersAdmission) Validate(ctx context.Context, a admission.Attributes, _ admission.ObjectInterfaces) (err error) {
126+
128127
// We only care about rolebindings
129128
if a.GetResource().GroupResource() != rbac.Resource("rolebindings") {
130129
return nil

openshift-kube-apiserver/openshiftkubeapiserver/patch.go

+1-6
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,7 @@ func OpenShiftKubeAPIServerConfigPatch(genericConfig *genericapiserver.Config, k
107107
// END HANDLER CHAIN
108108

109109
openshiftAPIServiceReachabilityCheck := newOpenshiftAPIServiceReachabilityCheck(genericConfig.PublicAddress)
110-
oauthAPIServiceReachabilityCheck := newOAuthAPIServiceReachabilityCheck(genericConfig.PublicAddress)
111-
110+
oauthAPIServiceReachabilityCheck := newOAuthPIServiceReachabilityCheck(genericConfig.PublicAddress)
112111
genericConfig.ReadyzChecks = append(genericConfig.ReadyzChecks, openshiftAPIServiceReachabilityCheck, oauthAPIServiceReachabilityCheck)
113112

114113
genericConfig.AddPostStartHookOrDie("openshift.io-startkubeinformers", func(context genericapiserver.PostStartHookContext) error {
@@ -189,19 +188,15 @@ type kubeAPIServerInformers struct {
189188
func (i *kubeAPIServerInformers) getOpenshiftQuotaInformers() quotainformer.SharedInformerFactory {
190189
return i.OpenshiftQuotaInformers
191190
}
192-
193191
func (i *kubeAPIServerInformers) getOpenshiftSecurityInformers() securityv1informer.SharedInformerFactory {
194192
return i.OpenshiftSecurityInformers
195193
}
196-
197194
func (i *kubeAPIServerInformers) getOpenshiftUserInformers() userinformer.SharedInformerFactory {
198195
return i.OpenshiftUserInformers
199196
}
200-
201197
func (i *kubeAPIServerInformers) getOpenshiftInfraInformers() configv1informer.SharedInformerFactory {
202198
return i.OpenshiftConfigInformers
203199
}
204-
205200
func (i *kubeAPIServerInformers) Start(stopCh <-chan struct{}) {
206201
i.OpenshiftQuotaInformers.Start(stopCh)
207202
i.OpenshiftSecurityInformers.Start(stopCh)

openshift-kube-apiserver/openshiftkubeapiserver/sdn_readyz_wait.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ func newOpenshiftAPIServiceReachabilityCheck(ipForKubernetesDefaultService net.I
2222
return newAggregatedAPIServiceReachabilityCheck(ipForKubernetesDefaultService, "openshift-apiserver", "api")
2323
}
2424

25-
func newOAuthAPIServiceReachabilityCheck(ipForKubernetesDefaultService net.IP) *aggregatedAPIServiceAvailabilityCheck {
25+
func newOAuthPIServiceReachabilityCheck(ipForKubernetesDefaultService net.IP) *aggregatedAPIServiceAvailabilityCheck {
2626
return newAggregatedAPIServiceReachabilityCheck(ipForKubernetesDefaultService, "openshift-oauth-apiserver", "api")
2727
}
2828

0 commit comments

Comments
 (0)