From 32202a30148288298b4ae62385fcbafbd707a77c Mon Sep 17 00:00:00 2001 From: Vipul Singh Date: Tue, 26 Sep 2023 11:58:43 -0700 Subject: [PATCH] fix: skipping the k8s e2e unsupported service conformance test --- .../cilium-overlay/cilium-overlay-e2e-step-template.yaml | 3 ++- .pipelines/singletenancy/cilium/cilium-e2e-step-template.yaml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.pipelines/singletenancy/cilium-overlay/cilium-overlay-e2e-step-template.yaml b/.pipelines/singletenancy/cilium-overlay/cilium-overlay-e2e-step-template.yaml index 93d888894f..4c936dfb8d 100644 --- a/.pipelines/singletenancy/cilium-overlay/cilium-overlay-e2e-step-template.yaml +++ b/.pipelines/singletenancy/cilium-overlay/cilium-overlay-e2e-step-template.yaml @@ -143,7 +143,8 @@ steps: export PATH=${PATH}:/usr/local/bin/gsutil KUBECONFIG=~/.kube/config kubetest2 noop \ --test ginkgo -- \ - --focus-regex "Services.*\[Conformance\].*" + --focus-regex "Services.*\[Conformance\].*" \ + --skip-regex "should serve endpoints on same port and different protocols" # Cilium does not support this feature. For more info on test: https://github.com/kubernetes/kubernetes/blame/e602e9e03cd744c23dde9fee09396812dd7bdd93/test/conformance/testdata/conformance.yaml#L1780-L1788 name: "servicesConformance" displayName: "Run Services Conformance Tests" diff --git a/.pipelines/singletenancy/cilium/cilium-e2e-step-template.yaml b/.pipelines/singletenancy/cilium/cilium-e2e-step-template.yaml index ddb480793f..ae2f4ef1f6 100644 --- a/.pipelines/singletenancy/cilium/cilium-e2e-step-template.yaml +++ b/.pipelines/singletenancy/cilium/cilium-e2e-step-template.yaml @@ -127,7 +127,8 @@ steps: export PATH=${PATH}:/usr/local/bin/gsutil KUBECONFIG=~/.kube/config kubetest2 noop \ --test ginkgo -- \ - --focus-regex "Services.*\[Conformance\].*" + --focus-regex "Services.*\[Conformance\].*" \ + --skip-regex "should serve endpoints on same port and different protocols" # Cilium does not support this feature. For more info on test: https://github.com/kubernetes/kubernetes/blame/e602e9e03cd744c23dde9fee09396812dd7bdd93/test/conformance/testdata/conformance.yaml#L1780-L1788 name: "servicesConformance" displayName: "Run Services Conformance Tests"