Skip to content

Commit 53d114c

Browse files
authored
fix: skipping the k8s e2e unsupported service conformance test (#2255)
1 parent f28fe96 commit 53d114c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.pipelines/singletenancy/cilium-overlay/cilium-overlay-e2e-step-template.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,8 @@ steps:
146146
export PATH=${PATH}:/usr/local/bin/gsutil
147147
KUBECONFIG=~/.kube/config kubetest2 noop \
148148
--test ginkgo -- \
149-
--focus-regex "Services.*\[Conformance\].*"
149+
--focus-regex "Services.*\[Conformance\].*" \
150+
--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
150151
name: "servicesConformance"
151152
displayName: "Run Services Conformance Tests"
152153

.pipelines/singletenancy/cilium/cilium-e2e-step-template.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,8 @@ steps:
130130
export PATH=${PATH}:/usr/local/bin/gsutil
131131
KUBECONFIG=~/.kube/config kubetest2 noop \
132132
--test ginkgo -- \
133-
--focus-regex "Services.*\[Conformance\].*"
133+
--focus-regex "Services.*\[Conformance\].*" \
134+
--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
134135
name: "servicesConformance"
135136
displayName: "Run Services Conformance Tests"
136137

0 commit comments

Comments
 (0)