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
Copy file name to clipboardexpand all lines: .pipelines/cni/k8s-e2e/k8s-e2e-job-template.yaml
+12-1
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@ parameters:
3
3
os: ""
4
4
dependsOn: ""
5
5
sub: ""
6
+
cni: cni
6
7
7
8
8
9
jobs:
@@ -63,7 +64,7 @@ jobs:
63
64
os: ${{ parameters.os }}
64
65
processes: 8
65
66
attempts: 3
66
-
- ${{ if eq(parameters.service, true) }}:
67
+
- ${{ if and( eq(parameters.service, true), contains(parameters.cni, 'cni') ) }}:
67
68
- template: ../k8s-e2e/k8s-e2e-step-template.yaml
68
69
parameters:
69
70
testName: Service Conformance
@@ -73,6 +74,16 @@ jobs:
73
74
os: ${{ parameters.os }}
74
75
processes: 8
75
76
attempts: 3
77
+
- ${{ if and( eq(parameters.service, true), contains(parameters.cni, 'cilium') ) }}:
78
+
- template: ../k8s-e2e/k8s-e2e-step-template.yaml
79
+
parameters:
80
+
testName: Service Conformance|Cilium
81
+
name: service
82
+
ginkgoFocus: 'Services.*\[Conformance\].*'
83
+
ginkgoSkip: '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
--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
--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
0 commit comments