From 275387faac1635dc0c80059618e783e03ea67b73 Mon Sep 17 00:00:00 2001 From: Ricardo Pchevuzinske Katz Date: Thu, 7 May 2026 13:28:41 -0300 Subject: [PATCH] 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. --- test/extended/operators/resources.go | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/test/extended/operators/resources.go b/test/extended/operators/resources.go index aa7db1c53b49..e26ac63eb9b2 100644 --- a/test/extended/operators/resources.go +++ b/test/extended/operators/resources.go @@ -57,10 +57,6 @@ var _ = g.Describe("[sig-arch] Managed cluster", func() { "batch/v1/Job/openshift-monitoring//container/osd-rebalance-infra-nodes/request[cpu]": "https://issues.redhat.com/browse/OSD-21708", "batch/v1/Job/openshift-monitoring//container/osd-rebalance-infra-nodes/request[memory]": "https://issues.redhat.com/browse/OSD-21708", - // Istio pods - "apps/v1/Deployment/openshift-ingress/gateway/container/istio-proxy/limit[cpu]": "https://issues.redhat.com/browse/OCPBUGS-55050", - "apps/v1/Deployment/openshift-ingress/gateway/container/istio-proxy/limit[memory]": "https://issues.redhat.com/browse/OCPBUGS-55050", - // ovn pods "apps/v1/DaemonSet/openshift-multus/cni-sysctl-allowlist-ds/container/kube-multus-additional-cni-plugins/request[cpu]": "https://issues.redhat.com/browse/TRT-1871", "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() { } } else { ref.Name = deploy.Name - if pod.Namespace == "openshift-ingress" && strings.HasPrefix(ref.Name, "gateway-") { - // The gateway deployment's name contains a hash, which - // must be removed in order to be able to define an - // exception. Remove this if block when the - // corresponding exception is removed. - ref.Name = "gateway" - } ref.Kind = "Deployment" ref.APIVersion = "apps/v1" }