Skip to content

Commit 275387f

Browse files
committed
OCPBUGS-55050: Remove exception for Gateway API Proxy resources limits
Previously, there was a need for exception on Gateway API Proxy pods to allow resources limits, as this wasn't properly configurable. The situation is now fixed on cluster ingress operator, and the exception can be removed.
1 parent a44654e commit 275387f

1 file changed

Lines changed: 0 additions & 11 deletions

File tree

test/extended/operators/resources.go

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,6 @@ var _ = g.Describe("[sig-arch] Managed cluster", func() {
5757
"batch/v1/Job/openshift-monitoring/<batch_job>/container/osd-rebalance-infra-nodes/request[cpu]": "https://issues.redhat.com/browse/OSD-21708",
5858
"batch/v1/Job/openshift-monitoring/<batch_job>/container/osd-rebalance-infra-nodes/request[memory]": "https://issues.redhat.com/browse/OSD-21708",
5959

60-
// Istio pods
61-
"apps/v1/Deployment/openshift-ingress/gateway/container/istio-proxy/limit[cpu]": "https://issues.redhat.com/browse/OCPBUGS-55050",
62-
"apps/v1/Deployment/openshift-ingress/gateway/container/istio-proxy/limit[memory]": "https://issues.redhat.com/browse/OCPBUGS-55050",
63-
6460
// ovn pods
6561
"apps/v1/DaemonSet/openshift-multus/cni-sysctl-allowlist-ds/container/kube-multus-additional-cni-plugins/request[cpu]": "https://issues.redhat.com/browse/TRT-1871",
6662
"apps/v1/DaemonSet/openshift-multus/cni-sysctl-allowlist-ds/container/kube-multus-additional-cni-plugins/request[memory]": "https://issues.redhat.com/browse/TRT-1871",
@@ -139,13 +135,6 @@ var _ = g.Describe("[sig-arch] Managed cluster", func() {
139135
}
140136
} else {
141137
ref.Name = deploy.Name
142-
if pod.Namespace == "openshift-ingress" && strings.HasPrefix(ref.Name, "gateway-") {
143-
// The gateway deployment's name contains a hash, which
144-
// must be removed in order to be able to define an
145-
// exception. Remove this if block when the
146-
// corresponding exception is removed.
147-
ref.Name = "gateway"
148-
}
149138
ref.Kind = "Deployment"
150139
ref.APIVersion = "apps/v1"
151140
}

0 commit comments

Comments
 (0)