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
// This file contains methods that can be used by the go-restful package to generate Swagger
4
+
// documentation for the object types found in 'types.go' This file is automatically generated
5
+
// by hack/update-generated-swagger-descriptions.sh and should be run after a full build of OpenShift.
6
+
// ==== DO NOT EDIT THIS FILE MANUALLY ====
7
+
8
+
varmap_IngressAdmissionConfig=map[string]string{
9
+
"": "IngressAdmissionConfig is the configuration for the the ingress controller limiter plugin. It changes the behavior of ingress objects to behave better with openshift routes and routers. *NOTE* Disabling this plugin causes ingress objects to behave the same as in upstream kubernetes",
10
+
"upstreamHostnameUpdate": "UpstreamHostnameUpdate when true causes updates that attempt to add or modify hostnames to succeed. Otherwise those updates fail in order to ensure hostname behavior",
Copy file name to clipboardExpand all lines: pkg/ingress/admission/api/v1/types.go
+4-5
Original file line number
Diff line number
Diff line change
@@ -5,16 +5,15 @@ import (
5
5
)
6
6
7
7
// IngressAdmissionConfig is the configuration for the the ingress
8
-
// controller limiter plugin. It changes the behavior of ingress
8
+
// controller limiter plugin. It changes the behavior of ingress
9
9
//objects to behave better with openshift routes and routers.
10
-
//*NOTE* Disabling this plugin causes ingress objects to behave
10
+
//*NOTE* Disabling this plugin causes ingress objects to behave
11
11
//the same as in upstream kubernetes
12
12
typeIngressAdmissionConfigstruct {
13
13
unversioned.TypeMeta`json:",inline"`
14
14
15
15
//UpstreamHostnameUpdate when true causes updates that attempt
16
-
//to add or modify hostnames to succeed. Otherwise those updates
17
-
//fail in order to ensure hostname behavior
16
+
//to add or modify hostnames to succeed. Otherwise those updates
17
+
//fail in order to ensure hostname behavior
18
18
UpstreamHostnameUpdatebool`json:"upstreamHostnameUpdate", description:"set to true to disable openshift protections and enable kubernetes style ingress objects"`
0 commit comments