forked from kubernetes/test-infra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkubeadm-kind.yaml
346 lines (342 loc) · 10.4 KB
/
kubeadm-kind.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
# periodic jobs
periodics:
- name: ci-kubernetes-e2e-kubeadm-kind-1-14
interval: 12h
decorate: true
labels:
preset-bazel-scratch-dir: "true"
preset-bazel-remote-cache-enabled: "true"
preset-dind-enabled: "true"
annotations:
testgrid-dashboards: sig-cluster-lifecycle-kubeadm,sig-release-1.14-informing
testgrid-tab-name: kubeadm-kind-1-14
testgrid-alert-email: kubernetes-sig-cluster-lifecycle@googlegroups.com
description: "OWNER: sig-cluster-lifecycle (kind); Uses kubeadm/kind to create a cluster and run the conformance suite"
testgrid-num-columns-recent: "20"
testgrid-num-failures-to-alert: "2"
testgrid-alert-stale-results-hours: "24"
decoration_config:
timeout: 40m
extra_refs:
- org: kubernetes
repo: kubernetes
base_ref: release-1.14
path_alias: k8s.io/kubernetes
- org: kubernetes
repo: kubeadm
base_ref: master
path_alias: k8s.io/kubeadm
- org: kubernetes-sigs
repo: kind
base_ref: master
path_alias: sigs.k8s.io/kind
spec:
containers:
- image: gcr.io/k8s-testimages/kubekins-e2e:v20191009-4f1de38-1.14
env:
# for bazel caching
- name: REPO_OWNER
value: kubernetes
- name: REPO_NAME
value: kubernetes
command:
- runner.sh
- kubetest
args:
# kind specific args
- --provider=skeleton
- --deployment=kind
- --kind-binary-version=build
- --kind-config-path=./../../k8s.io/kubeadm/tests/e2e/kind/ha-cp/ha-cp.yaml
# generic e2e test args
- --build=bazel
- --up
- --test
- --check-version-skew=false
- --down
# specific e2e test args
# TODO(bentheelder): num-nodes in particular is brittle. it would be better for kubetest to handle this
- --test_args=--ginkgo.focus=\[Conformance\] --ginkgo.skip=\[Serial\] --num-nodes=3
- --ginkgo-parallel
- --timeout=30m
# we need privileged mode in order to do docker in docker
securityContext:
privileged: true
# kind needs /lib/modules and cgroups from the host
volumeMounts:
- mountPath: /lib/modules
name: modules
readOnly: true
- mountPath: /sys/fs/cgroup
name: cgroup
resources:
requests:
# these are both a bit below peak usage during build
# this is mostly for building kubernetes
memory: "9000Mi"
# during the tests more like 3-20m is used
cpu: 2000m
volumes:
- name: modules
hostPath:
path: /lib/modules
type: Directory
- name: cgroup
hostPath:
path: /sys/fs/cgroup
type: Directory
- name: ci-kubernetes-e2e-kubeadm-kind-1-15
interval: 12h
decorate: true
labels:
preset-bazel-scratch-dir: "true"
preset-bazel-remote-cache-enabled: "true"
preset-dind-enabled: "true"
annotations:
testgrid-dashboards: sig-cluster-lifecycle-kubeadm,sig-release-1.15-informing
testgrid-tab-name: kubeadm-kind-1-15
testgrid-alert-email: kubernetes-sig-cluster-lifecycle@googlegroups.com
description: "OWNER: sig-cluster-lifecycle (kind); Uses kubeadm/kind to create a cluster and run the conformance suite"
testgrid-num-columns-recent: "20"
testgrid-num-failures-to-alert: "2"
testgrid-alert-stale-results-hours: "24"
decoration_config:
timeout: 40m
extra_refs:
- org: kubernetes
repo: kubernetes
base_ref: release-1.15
path_alias: k8s.io/kubernetes
- org: kubernetes
repo: kubeadm
base_ref: master
path_alias: k8s.io/kubeadm
- org: kubernetes-sigs
repo: kind
base_ref: master
path_alias: sigs.k8s.io/kind
spec:
containers:
- image: gcr.io/k8s-testimages/kubekins-e2e:v20191009-4f1de38-1.15
env:
# for bazel caching
- name: REPO_OWNER
value: kubernetes
- name: REPO_NAME
value: kubernetes
command:
- runner.sh
- kubetest
args:
# kind specific args
- --provider=skeleton
- --deployment=kind
- --kind-binary-version=build
- --kind-config-path=./../../k8s.io/kubeadm/tests/e2e/kind/ha-cp/ha-cp.yaml
# generic e2e test args
- --build=bazel
- --up
- --test
- --check-version-skew=false
- --down
# specific e2e test args
# TODO(bentheelder): num-nodes in particular is brittle. it would be better for kubetest to handle this
- --test_args=--ginkgo.focus=\[Conformance\] --ginkgo.skip=\[Serial\] --num-nodes=3
- --ginkgo-parallel
- --timeout=30m
# we need privileged mode in order to do docker in docker
securityContext:
privileged: true
# kind needs /lib/modules and cgroups from the host
volumeMounts:
- mountPath: /lib/modules
name: modules
readOnly: true
- mountPath: /sys/fs/cgroup
name: cgroup
resources:
requests:
# these are both a bit below peak usage during build
# this is mostly for building kubernetes
memory: "9000Mi"
# during the tests more like 3-20m is used
cpu: 2000m
volumes:
- name: modules
hostPath:
path: /lib/modules
type: Directory
- name: cgroup
hostPath:
path: /sys/fs/cgroup
type: Directory
- name: ci-kubernetes-e2e-kubeadm-kind-1-16
interval: 12h
decorate: true
labels:
preset-bazel-scratch-dir: "true"
preset-bazel-remote-cache-enabled: "true"
preset-dind-enabled: "true"
annotations:
testgrid-dashboards: sig-cluster-lifecycle-kubeadm,sig-release-1.16-informing
testgrid-tab-name: kubeadm-kind-1-16
testgrid-alert-email: kubernetes-sig-cluster-lifecycle@googlegroups.com
description: "OWNER: sig-cluster-lifecycle (kind); Uses kubeadm/kind to create a cluster and run the conformance suite"
testgrid-num-columns-recent: "20"
testgrid-num-failures-to-alert: "2"
testgrid-alert-stale-results-hours: "24"
decoration_config:
timeout: 40m
extra_refs:
- org: kubernetes
repo: kubernetes
base_ref: release-1.16
path_alias: k8s.io/kubernetes
- org: kubernetes
repo: kubeadm
base_ref: master
path_alias: k8s.io/kubeadm
- org: kubernetes-sigs
repo: kind
base_ref: master
path_alias: sigs.k8s.io/kind
spec:
containers:
- image: gcr.io/k8s-testimages/kubekins-e2e:v20191009-4f1de38-1.16
env:
# for bazel caching
- name: REPO_OWNER
value: kubernetes
- name: REPO_NAME
value: kubernetes
command:
- runner.sh
- kubetest
args:
# kind specific args
- --provider=skeleton
- --deployment=kind
- --kind-binary-version=build
- --kind-config-path=./../../k8s.io/kubeadm/tests/e2e/kind/ha-cp/ha-cp.yaml
# generic e2e test args
- --build=bazel
- --up
- --test
- --check-version-skew=false
- --down
# specific e2e test args
# TODO(bentheelder): num-nodes in particular is brittle. it would be better for kubetest to handle this
- --test_args=--ginkgo.focus=\[Conformance\] --ginkgo.skip=\[Serial\] --num-nodes=3
- --ginkgo-parallel
- --timeout=30m
# we need privileged mode in order to do docker in docker
securityContext:
privileged: true
# kind needs /lib/modules and cgroups from the host
volumeMounts:
- mountPath: /lib/modules
name: modules
readOnly: true
- mountPath: /sys/fs/cgroup
name: cgroup
resources:
requests:
# these are both a bit below peak usage during build
# this is mostly for building kubernetes
memory: "9000Mi"
# during the tests more like 3-20m is used
cpu: 2000m
volumes:
- name: modules
hostPath:
path: /lib/modules
type: Directory
- name: cgroup
hostPath:
path: /sys/fs/cgroup
type: Directory
- name: ci-kubernetes-e2e-kubeadm-kind-master
interval: 2h
decorate: true
labels:
preset-bazel-scratch-dir: "true"
preset-bazel-remote-cache-enabled: "true"
preset-dind-enabled: "true"
annotations:
testgrid-dashboards: sig-cluster-lifecycle-kubeadm,sig-release-master-informing
testgrid-tab-name: kubeadm-kind-master
testgrid-alert-email: kubernetes-sig-cluster-lifecycle@googlegroups.com
description: "OWNER: sig-cluster-lifecycle (kind); Uses kubeadm/kind to create a cluster and run the conformance suite"
testgrid-num-columns-recent: "20"
testgrid-num-failures-to-alert: "4"
testgrid-alert-stale-results-hours: "8"
decoration_config:
timeout: 40m
extra_refs:
- org: kubernetes
repo: kubernetes
base_ref: master
path_alias: k8s.io/kubernetes
- org: kubernetes
repo: kubeadm
base_ref: master
path_alias: k8s.io/kubeadm
- org: kubernetes-sigs
repo: kind
base_ref: master
path_alias: sigs.k8s.io/kind
spec:
containers:
- image: gcr.io/k8s-testimages/kubekins-e2e:v20191009-4f1de38-master
env:
# for bazel caching
- name: REPO_OWNER
value: kubernetes
- name: REPO_NAME
value: kubernetes
command:
- runner.sh
- kubetest
args:
# kind specific args
- --provider=skeleton
- --deployment=kind
- --kind-binary-version=build
- --kind-config-path=./../../k8s.io/kubeadm/tests/e2e/kind/ha-cp/ha-cp.yaml
# generic e2e test args
- --build=bazel
- --up
- --test
- --check-version-skew=false
- --down
# specific e2e test args
# TODO(bentheelder): num-nodes in particular is brittle. it would be better for kubetest to handle this
- --test_args=--ginkgo.focus=\[Conformance\] --ginkgo.skip=\[Serial\] --num-nodes=3
- --ginkgo-parallel
- --timeout=30m
# we need privileged mode in order to do docker in docker
securityContext:
privileged: true
# kind needs /lib/modules and cgroups from the host
volumeMounts:
- mountPath: /lib/modules
name: modules
readOnly: true
- mountPath: /sys/fs/cgroup
name: cgroup
resources:
requests:
# these are both a bit below peak usage during build
# this is mostly for building kubernetes
memory: "9000Mi"
# during the tests more like 3-20m is used
cpu: 2000m
volumes:
- name: modules
hostPath:
path: /lib/modules
type: Directory
- name: cgroup
hostPath:
path: /sys/fs/cgroup
type: Directory