Skip to content

Commit 14b6612

Browse files
committed
OpenShift changes after the rebase to 1.7.6
1 parent 7ccd7dd commit 14b6612

File tree

6 files changed

+17
-2
lines changed

6 files changed

+17
-2
lines changed

pkg/assets/apiserver/asset_apiserver.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ func buildHandlerChainForAssets(consoleRedirectPath string) func(startingHandler
155155
handler = genericapifilters.WithAudit(handler, c.RequestContextMapper, c.AuditBackend, c.AuditPolicyChecker, c.LongRunningFunc)
156156
}
157157
handler = genericfilters.WithCORS(handler, c.CorsAllowedOriginList, nil, nil, nil, "true")
158-
handler = genericfilters.WithTimeoutForNonLongRunningRequests(handler, c.RequestContextMapper, c.LongRunningFunc)
158+
handler = genericfilters.WithTimeoutForNonLongRunningRequests(handler, c.RequestContextMapper, c.LongRunningFunc, c.RequestTimeout)
159159
handler = genericapifilters.WithRequestInfo(handler, genericapiserver.NewRequestInfoResolver(c), c.RequestContextMapper)
160160
handler = apirequest.WithRequestContext(handler, c.RequestContextMapper)
161161
handler = genericfilters.WithPanicRecovery(handler)

pkg/cmd/server/bootstrappolicy/policy.go

+1
Original file line numberDiff line numberDiff line change
@@ -686,6 +686,7 @@ func GetOpenshiftBootstrapClusterRoles() []rbac.ClusterRole {
686686

687687
// TODO: restrict to pods scheduled on the bound node once supported
688688
rbac.NewRule(read...).Groups(kapiGroup).Resources("pods").RuleOrDie(),
689+
rbac.NewRule("create").Groups(kapiGroup).Resources("pods/eviction").RuleOrDie(),
689690

690691
// TODO: remove once mirror pods are removed
691692
// TODO: restrict deletion to mirror pods created by the bound node once supported

pkg/cmd/server/kubernetes/master/master_config_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ func TestAPIServerDefaults(t *testing.T) {
7575
MaxRequestsInFlight: 400,
7676
MaxMutatingRequestsInFlight: 200,
7777
MinRequestTimeout: 1800,
78+
RequestTimeout: time.Duration(60) * time.Second,
7879
},
7980
Admission: &apiserveroptions.AdmissionOptions{
8081
PluginNames: []string{"AlwaysAdmit"},

pkg/oauth/apiserver/oauth_apiserver.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ func (c *OAuthServerConfig) buildHandlerChainForOAuth(startingHandler http.Handl
200200

201201
handler = genericfilters.WithMaxInFlightLimit(handler, genericConfig.MaxRequestsInFlight, genericConfig.MaxMutatingRequestsInFlight, genericConfig.RequestContextMapper, genericConfig.LongRunningFunc)
202202
handler = genericfilters.WithCORS(handler, genericConfig.CorsAllowedOriginList, nil, nil, nil, "true")
203-
handler = genericfilters.WithTimeoutForNonLongRunningRequests(handler, genericConfig.RequestContextMapper, genericConfig.LongRunningFunc)
203+
handler = genericfilters.WithTimeoutForNonLongRunningRequests(handler, genericConfig.RequestContextMapper, genericConfig.LongRunningFunc, genericConfig.RequestTimeout)
204204
handler = genericapifilters.WithRequestInfo(handler, genericapiserver.NewRequestInfoResolver(genericConfig), genericConfig.RequestContextMapper)
205205
handler = apirequest.WithRequestContext(handler, genericConfig.RequestContextMapper)
206206
handler = genericfilters.WithPanicRecovery(handler)

test/testdata/bootstrappolicy/bootstrap_cluster_roles.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -2247,6 +2247,12 @@ items:
22472247
- get
22482248
- list
22492249
- watch
2250+
- apiGroups:
2251+
- ""
2252+
resources:
2253+
- pods/eviction
2254+
verbs:
2255+
- create
22502256
- apiGroups:
22512257
- ""
22522258
resources:

test/testdata/bootstrappolicy/bootstrap_policy_file.yaml

+7
Original file line numberDiff line numberDiff line change
@@ -2457,6 +2457,13 @@ items:
24572457
- get
24582458
- list
24592459
- watch
2460+
- apiGroups:
2461+
- ""
2462+
attributeRestrictions: null
2463+
resources:
2464+
- pods/eviction
2465+
verbs:
2466+
- create
24602467
- apiGroups:
24612468
- ""
24622469
attributeRestrictions: null

0 commit comments

Comments
 (0)