Skip to content

Commit f78857b

Browse files
authored
Merge pull request #24488 from aramase/ds-1.23
add dual-stack 1.23 test job
2 parents c647ead + 842bd32 commit f78857b

File tree

2 files changed

+35
-30
lines changed

2 files changed

+35
-30
lines changed

Diff for: config/jobs/kubernetes/sig-network/dualstack-e2e.yaml

+33-30
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
periodics:
22
- interval: 24h
3-
name: ci-dualstack-azure-e2e-1-19
3+
name: ci-dualstack-azure-e2e-1-20
44
decorate: true
55
decoration_config:
66
timeout: 5h
@@ -11,11 +11,11 @@ periodics:
1111
extra_refs:
1212
- org: kubernetes
1313
repo: kubernetes
14-
base_ref: release-1.19
14+
base_ref: release-1.20
1515
path_alias: k8s.io/kubernetes
1616
spec:
1717
containers:
18-
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20211111-d096cb0c5f-1.19
18+
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20211124-2ed05120f3-1.20
1919
command:
2020
- runner.sh
2121
- kubetest
@@ -32,25 +32,28 @@ periodics:
3232
- --aksengine-agentpoolcount=2
3333
- --aksengine-admin-username=azureuser
3434
- --aksengine-creds=$(AZURE_CREDENTIALS)
35-
- --aksengine-orchestratorRelease=1.19
35+
- --aksengine-orchestratorRelease=1.20
3636
- --aksengine-mastervmsize=Standard_DS2_v2
3737
- --aksengine-agentvmsize=Standard_D4s_v3
3838
- --aksengine-deploy-custom-k8s
3939
- --aksengine-public-key=$(AZURE_SSH_PUBLIC_KEY_FILE)
4040
- --aksengine-template-url=https://raw.githubusercontent.com/kubernetes-sigs/cloud-provider-azure/master/tests/k8s-azure/manifest/linux-dual-stack-ipvs-kubenet.json
4141
- --aksengine-download-url=https://aka.ms/aks-engine/aks-engine-k8s-e2e.tar.gz
42-
# Specific test args
43-
- --test_args=--ginkgo.focus=\[Feature:IPv6DualStackAlphaFeature\]
42+
# Skipping "Should recreate evicted statefulset" because of an issue in dockershim for dualstack
43+
# Suggested fix - https://github.com/kubernetes/kubernetes/pull/94382
44+
# Skipping "HostPort validates that there is no conflict between pods with same hostPort but different hostIP and protocol" because of kubenet bug in HostPort impl
45+
# Skipping Feature:SCTPConnectivity tests because the vhd used for tests doesn't have sctp enabled
46+
- --test_args=--ginkgo.focus=\[Feature:IPv6DualStack\]|\[Conformance\] --ginkgo.skip=\[Slow\]|\[Serial\]|\[Flaky\]|\[Feature:SCTPConnectivity\]|Should.recreate.evicted.statefulset|HostPort.validates.that.there.is.no.conflict.between.pods.with.same.hostPort.but.different.hostIP.and.protocol
4447
- --ginkgo-parallel=1
4548
securityContext:
4649
privileged: true
4750
annotations:
48-
testgrid-dashboards: sig-network-dualstack-azure-e2e, provider-azure-dualstack, provider-azure-1.19-signal
49-
testgrid-tab-name: dualstack-azure-e2e-1-19
51+
testgrid-dashboards: sig-network-dualstack-azure-e2e, provider-azure-dualstack, provider-azure-1.20-signal
52+
testgrid-tab-name: dualstack-azure-e2e-1-20
5053
testgrid-alert-email: [email protected]
51-
description: "Dual-stack e2e tests on a 1.19 Kubernetes cluster provided by aks-engine (https://github.com/Azure/aks-engine) on Azure cloud"
54+
description: "Dual-stack e2e tests on a 1.20 Kubernetes cluster provided by aks-engine (https://github.com/Azure/aks-engine) on Azure cloud"
5255
- interval: 24h
53-
name: ci-dualstack-azure-e2e-1-20
56+
name: ci-dualstack-azure-e2e-1-21
5457
decorate: true
5558
decoration_config:
5659
timeout: 5h
@@ -61,11 +64,11 @@ periodics:
6164
extra_refs:
6265
- org: kubernetes
6366
repo: kubernetes
64-
base_ref: release-1.20
67+
base_ref: release-1.21
6568
path_alias: k8s.io/kubernetes
6669
spec:
6770
containers:
68-
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20211124-2ed05120f3-1.20
71+
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20211124-2ed05120f3-1.21
6972
command:
7073
- runner.sh
7174
- kubetest
@@ -82,7 +85,7 @@ periodics:
8285
- --aksengine-agentpoolcount=2
8386
- --aksengine-admin-username=azureuser
8487
- --aksengine-creds=$(AZURE_CREDENTIALS)
85-
- --aksengine-orchestratorRelease=1.20
88+
- --aksengine-orchestratorRelease=1.21
8689
- --aksengine-mastervmsize=Standard_DS2_v2
8790
- --aksengine-agentvmsize=Standard_D4s_v3
8891
- --aksengine-deploy-custom-k8s
@@ -98,12 +101,12 @@ periodics:
98101
securityContext:
99102
privileged: true
100103
annotations:
101-
testgrid-dashboards: sig-network-dualstack-azure-e2e, provider-azure-dualstack, provider-azure-1.20-signal
102-
testgrid-tab-name: dualstack-azure-e2e-1-20
104+
testgrid-dashboards: sig-network-dualstack-azure-e2e, provider-azure-dualstack, provider-azure-1.21-signal
105+
testgrid-tab-name: dualstack-azure-e2e-1-21
103106
testgrid-alert-email: [email protected]
104-
description: "Dual-stack e2e tests on a 1.20 Kubernetes cluster provided by aks-engine (https://github.com/Azure/aks-engine) on Azure cloud"
107+
description: "Dual-stack e2e tests on a 1.21 Kubernetes cluster provided by aks-engine (https://github.com/Azure/aks-engine) on Azure cloud"
105108
- interval: 24h
106-
name: ci-dualstack-azure-e2e-1-21
109+
name: ci-dualstack-azure-e2e-1-22
107110
decorate: true
108111
decoration_config:
109112
timeout: 5h
@@ -114,11 +117,11 @@ periodics:
114117
extra_refs:
115118
- org: kubernetes
116119
repo: kubernetes
117-
base_ref: release-1.21
120+
base_ref: release-1.22
118121
path_alias: k8s.io/kubernetes
119122
spec:
120123
containers:
121-
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20211124-2ed05120f3-1.21
124+
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20211124-2ed05120f3-1.22
122125
command:
123126
- runner.sh
124127
- kubetest
@@ -135,7 +138,7 @@ periodics:
135138
- --aksengine-agentpoolcount=2
136139
- --aksengine-admin-username=azureuser
137140
- --aksengine-creds=$(AZURE_CREDENTIALS)
138-
- --aksengine-orchestratorRelease=1.21
141+
- --aksengine-orchestratorRelease=1.22
139142
- --aksengine-mastervmsize=Standard_DS2_v2
140143
- --aksengine-agentvmsize=Standard_D4s_v3
141144
- --aksengine-deploy-custom-k8s
@@ -151,12 +154,12 @@ periodics:
151154
securityContext:
152155
privileged: true
153156
annotations:
154-
testgrid-dashboards: sig-network-dualstack-azure-e2e, provider-azure-dualstack, provider-azure-1.21-signal
155-
testgrid-tab-name: dualstack-azure-e2e-1-21
157+
testgrid-dashboards: sig-network-dualstack-azure-e2e, provider-azure-dualstack, provider-azure-1.22-signal
158+
testgrid-tab-name: dualstack-azure-e2e-1-22
156159
testgrid-alert-email: [email protected]
157-
description: "Dual-stack e2e tests on a 1.21 Kubernetes cluster provided by aks-engine (https://github.com/Azure/aks-engine) on Azure cloud"
160+
description: "Dual-stack e2e tests on a 1.22 Kubernetes cluster provided by aks-engine (https://github.com/Azure/aks-engine) on Azure cloud"
158161
- interval: 24h
159-
name: ci-dualstack-azure-e2e-1-22
162+
name: ci-dualstack-azure-e2e-1-23
160163
decorate: true
161164
decoration_config:
162165
timeout: 5h
@@ -167,11 +170,11 @@ periodics:
167170
extra_refs:
168171
- org: kubernetes
169172
repo: kubernetes
170-
base_ref: release-1.22
173+
base_ref: release-1.23
171174
path_alias: k8s.io/kubernetes
172175
spec:
173176
containers:
174-
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20211124-2ed05120f3-1.22
177+
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20211111-d096cb0c5f-1.23
175178
command:
176179
- runner.sh
177180
- kubetest
@@ -188,7 +191,7 @@ periodics:
188191
- --aksengine-agentpoolcount=2
189192
- --aksengine-admin-username=azureuser
190193
- --aksengine-creds=$(AZURE_CREDENTIALS)
191-
- --aksengine-orchestratorRelease=1.22
194+
- --aksengine-orchestratorRelease=1.23
192195
- --aksengine-mastervmsize=Standard_DS2_v2
193196
- --aksengine-agentvmsize=Standard_D4s_v3
194197
- --aksengine-deploy-custom-k8s
@@ -204,10 +207,10 @@ periodics:
204207
securityContext:
205208
privileged: true
206209
annotations:
207-
testgrid-dashboards: sig-network-dualstack-azure-e2e, provider-azure-dualstack, provider-azure-1.22-signal
208-
testgrid-tab-name: dualstack-azure-e2e-1-22
210+
testgrid-dashboards: sig-network-dualstack-azure-e2e, provider-azure-dualstack, provider-azure-1.23-signal
211+
testgrid-tab-name: dualstack-azure-e2e-1-23
209212
testgrid-alert-email: [email protected]
210-
description: "Dual-stack e2e tests on a 1.22 Kubernetes cluster provided by aks-engine (https://github.com/Azure/aks-engine) on Azure cloud"
213+
description: "Dual-stack e2e tests on a 1.23 Kubernetes cluster provided by aks-engine (https://github.com/Azure/aks-engine) on Azure cloud"
211214
- interval: 24h
212215
name: ci-dualstack-azure-e2e-master-iptables
213216
decorate: true

Diff for: config/testgrids/kubernetes/sig-cloud-provider/azure/config.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ dashboard_groups:
1313
- provider-azure-scalability
1414
- provider-azure-presubmit
1515
- provider-azure-master-signal
16+
- provider-azure-1.23-signal
1617
- provider-azure-1.22-signal
1718
- provider-azure-1.21-signal
1819
- provider-azure-1.20-signal
@@ -31,6 +32,7 @@ dashboards:
3132
- name: provider-azure-scalability
3233
- name: provider-azure-presubmit
3334
- name: provider-azure-master-signal
35+
- name: provider-azure-1.23-signal
3436
- name: provider-azure-1.22-signal
3537
- name: provider-azure-1.21-signal
3638
- name: provider-azure-1.20-signal

0 commit comments

Comments
 (0)