-
Notifications
You must be signed in to change notification settings - Fork 242
/
Copy pathpipeline.yaml
430 lines (410 loc) · 13.5 KB
/
pipeline.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
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
pr: none
trigger:
tags:
include:
- dropgz/*
- azure-ipam/*
- v*
stages:
- stage: setup
displayName: Setup
jobs:
- job: env
displayName: Setup
pool:
name: "$(BUILD_POOL_NAME_DEFAULT)"
steps:
- script: |
echo "Setting up environment"
go version
echo "##vso[task.setvariable variable=commitID;isOutput=true]$(echo $(make revision)-$(date "+%d%H%M"))"
echo "##vso[task.setvariable variable=npmVersion;isOutput=true]$(make npm-version)"
echo "##vso[task.setvariable variable=cnsVersion;isOutput=true]$(CNS_VERSION)"
name: "SetEnvVars"
displayName: "Set Environment Variables"
condition: always()
- stage: build_images
dependsOn: setup
displayName: "Build Images"
jobs:
- job: containerize_amd64
displayName: Build Images
pool:
name: "$(BUILD_POOL_NAME_LINUX_AMD64)"
strategy:
matrix:
azure_ipam_linux_amd64:
arch: amd64
name: azure-ipam
os: linux
azure_ipam_windows2022_amd64:
arch: amd64
name: azure-ipam
os: windows
os_version: ltsc2022
cni_linux_amd64:
arch: amd64
name: cni
os: linux
cni_windows2022_amd64:
arch: amd64
name: cni
os: windows
os_version: ltsc2022
npm_linux_amd64:
arch: amd64
name: npm
os: linux
npm_windows2022_amd64:
arch: amd64
name: npm
os: windows
os_version: ltsc2022
steps:
- template: ../containers/container-template.yaml
parameters:
arch: $(arch)
name: $(name)
os: $(os)
os_version: $(os_version)
- job: containerize_linux_arm64
displayName: Build Images
pool:
name: "$(BUILD_POOL_NAME_LINUX_ARM64)"
strategy:
matrix:
azure_ipam_linux_arm64:
arch: arm64
name: azure-ipam
os: linux
cni_linux_arm64:
arch: arm64
name: cni
os: linux
npm_linux_arm64:
arch: arm64
name: npm
os: linux
steps:
- template: ../containers/container-template.yaml
parameters:
arch: $(arch)
name: $(name)
os: $(os)
- stage: binaries
displayName: Build Binaries
dependsOn: setup
pool:
name: $(BUILD_POOL_NAME_DEFAULT)
demands:
- agent.os -equals Linux
- Role -equals Build
jobs:
- job:
displayName: "Build k8s NPM Linux Test Suite Binary"
steps:
- bash: |
git clone https://github.com/huntergregory/kubernetes.git --depth=1 --branch=linux-long-sleep
cd kubernetes
export PATH=$PATH:/usr/local/go/bin/
make WHAT=test/e2e/e2e.test
displayName: "Build Kubernetes e2e.test"
- publish: $(System.DefaultWorkingDirectory)/kubernetes/_output/local/bin/linux/amd64
artifact: npm_k8s
- job:
displayName: "Build k8s NPM Windows Test Suite Binary"
steps:
- bash: |
git clone https://github.com/huntergregory/kubernetes.git --depth=1 --branch=sleep-before-probing
cd kubernetes
export PATH=$PATH:/usr/local/go/bin/
make WHAT=test/e2e/e2e.test
displayName: "Build Kubernetes e2e.test"
- publish: $(System.DefaultWorkingDirectory)/kubernetes/_output/local/bin/linux/amd64
artifact: npm_k8s_windows
- stage: publish
displayName: Publish Multiarch Manifests
dependsOn:
- build_images
jobs:
- job: manifest
displayName: Compile Manifests
pool:
name: "$(BUILD_POOL_NAME_DEFAULT)"
strategy:
matrix:
azure-ipam:
name: azure-ipam
platforms: linux/amd64 linux/arm64 windows/amd64
cni:
name: cni
os_versions: ltsc2022
platforms: linux/amd64 linux/arm64 windows/amd64
npm:
name: npm
os_versions: ltsc2022
platforms: linux/amd64 linux/arm64 windows/amd64
steps:
- template: ../containers/manifest-template.yaml
parameters:
name: $(name)
os_versions: $(os_versions)
platforms: $(platforms)
## Windows E2E
- template: singletenancy/cniv1-template.yaml
parameters:
name: win22_cniv1
clusterType: windows-cniv1-up
clusterName: "win22-cniv1"
nodeCount: ${NODE_COUNT_WINCLUSTER_SYSTEMPOOL}
nodeCountWin: ${NODE_COUNT_WIN}
vmSize: ${VM_SIZE_WINCLUSTER_SYSTEMPOOL}
vmSizeWin: ${VM_SIZE_WIN}
os: windows
os_version: 'ltsc2022'
arch: amd64
scaleup: ${SCALEUP_WIN}
iterations: ${ITERATIONS_WIN}
- template: singletenancy/cniv2-template.yaml
parameters:
name: windows_podsubnet
clusterType: swift-byocni-up
clusterName: win-podsub
nodeCount: ${NODE_COUNT_WINCLUSTER_SYSTEMPOOL}
nodeCountWin: ${NODE_COUNT_WIN}
vmSize: ${VM_SIZE_WINCLUSTER_SYSTEMPOOL}
vmSizeWin: ${VM_SIZE_WIN}
arch: amd64
os: windows
os_version: 'ltsc2022'
scaleup: ${SCALEUP_WIN}
iterations: ${ITERATIONS_WIN}
- template: singletenancy/cniv2-template.yaml
parameters:
name: windows_overlay
clusterType: overlay-byocni-up
clusterName: win-over
nodeCount: ${NODE_COUNT_WINCLUSTER_SYSTEMPOOL}
nodeCountWin: ${NODE_COUNT_WIN}
vmSize: ${VM_SIZE_WINCLUSTER_SYSTEMPOOL}
vmSizeWin: ${VM_SIZE_WIN}
arch: amd64
os: windows
os_version: 'ltsc2022'
scaleup: ${SCALEUP_WIN}
iterations: ${ITERATIONS_WIN}
## Linux E2E
- template: singletenancy/cniv1-template.yaml
parameters:
name: linux_cniv1
clusterType: linux-cniv1-up
clusterName: "linux-cniv1"
nodeCount: ${NODE_COUNT_LINUX}
vmSize: ${VM_SIZE}
os: linux
arch: amd64
scaleup: ${SCALEUP_LINUX}
iterations: ${ITERATIONS_LINUX}
- template: singletenancy/cniv2-template.yaml
parameters:
name: linux_podsubnet
clusterType: swift-byocni-up
clusterName: "linux-podsub"
nodeCount: ${NODE_COUNT_LINUX}
vmSize: ${VM_SIZE}
arch: amd64
scaleup: ${SCALEUP_LINUX}
iterations: ${ITERATIONS_LINUX}
- template: singletenancy/cniv2-template.yaml
parameters:
name: linux_overlay
clusterType: overlay-byocni-up
clusterName: "linux-over"
nodeCount: ${NODE_COUNT_LINUX}
vmSize: ${VM_SIZE}
arch: amd64
scaleup: ${SCALEUP_LINUX}
iterations: ${ITERATIONS_LINUX}
- template: singletenancy/cniv2-template.yaml
parameters:
name: mariner_linux_overlay
clusterType: overlay-byocni-up
clusterName: "mariner-over"
nodeCount: ${NODE_COUNT_LINUX}
vmSize: ${VM_SIZE}
arch: amd64
osSKU: AzureLinux
scaleup: ${SCALEUP_LINUX}
iterations: ${ITERATIONS_LINUX}
- template: singletenancy/cniv2-template.yaml
parameters:
name: arm_linux_overlay
clusterType: overlay-byocni-up
clusterName: "arm-over"
nodeCount: ${NODE_COUNT_LINUX}
vmSize: Standard_D8ps_v5
arch: arm64
scaleup: ${SCALEUP_LINUX}
iterations: ${ITERATIONS_LINUX}
- template: singletenancy/cniv2-template.yaml
parameters:
name: rdma_linux_overlay
clusterType: overlay-byocni-up
clusterName: "rdma-over"
nodeCount: 2
vmSize: Standard_HC44-16rs
arch: amd64
scaleup: ${SCALEUP_LINUX}
iterations: ${ITERATIONS_LINUX}
## Cilium E2E
- template: cilium/cilium-overlay-load-test-template.yaml
parameters:
name: cilium_overlay
clusterType: overlay-byocni-nokubeproxy-up
clusterName: "cilium-over"
nodeCount: ${NODE_COUNT_CILIUM}
vmSize: ${VM_SIZE_CILIUM}
cni: "cilium"
- template: cilium/cilium-overlay-load-test-template.yaml
parameters:
name: cilium_overlay_hubble
clusterType: overlay-byocni-nokubeproxy-up
clusterName: "cil-over-hub"
hubbleEnabled: true
nodeCount: ${NODE_COUNT_CILIUM}
vmSize: ${VM_SIZE_CILIUM}
cni: "cilium"
- template: cilium/cilium-overlay-load-test-template.yaml
parameters:
name: cilium_overlay_mariner
clusterType: overlay-byocni-nokubeproxy-up
clusterName: "cil-over-mar"
nodeCount: ${NODE_COUNT_CILIUM}
vmSize: ${VM_SIZE_CILIUM}
arch: amd64
osSKU: AzureLinux
cni: "cilium"
- template: cilium/cilium-overlay-load-test-template.yaml
parameters:
name: cilium_overlay_arm
clusterType: overlay-byocni-nokubeproxy-up
clusterName: "cil-over-arm"
nodeCount: ${NODE_COUNT_CILIUM}
vmSize: Standard_D8ps_v5
arch: arm64
cni: "cilium"
- template: cilium/cilium-overlay-load-test-template.yaml
parameters:
name: cilium_overlay_rdma
clusterType: overlay-byocni-nokubeproxy-up
clusterName: "cil-over-rdma"
nodeCount: 2
vmSize: Standard_HC44-16rs
arch: amd64
cni: "cilium"
- template: cilium/cilium-overlay-load-test-template.yaml
parameters:
name: cilium_overlay_ds
clusterType: dualstack-byocni-nokubeproxy-up
clusterName: "cilium-ds-ov"
nodeCount: ${NODE_COUNT_CILIUM}
vmSize: ${VM_SIZE_CILIUM}
dualstackVersion: ${CILIUM_DUALSTACK_VERSION}
cni: "cilium_dualstack"
- stage: delete_resources
displayName: "Delete Resources"
pool:
name: "$(BUILD_POOL_NAME_DEFAULT)"
condition: always()
dependsOn:
- cilium_overlay
- cilium_overlay_hubble
- cilium_overlay_mariner
- cilium_overlay_arm
- cilium_overlay_rdma
- cilium_overlay_ds
- win22_cniv1_HNS
- linux_cniv1
- linux_podsubnet
- linux_overlay
- mariner_linux_overlay
- arm_linux_overlay
- rdma_linux_overlay
- windows_podsubnet_HNS
- windows_overlay_HNS
- setup
variables:
commitID: $[ stagedependencies.setup.env.outputs['SetEnvVars.commitID'] ]
jobs:
- job: delete
displayName: Delete Cluster
pool:
name: "$(BUILD_POOL_NAME_DEFAULT)"
strategy:
matrix:
cilium_overlay:
name: cilium_overlay
clusterName: "cilium-over"
cilium_overlay_hubble:
name: cilium_overlay_hubble
clusterName: "cil-over-hub"
cilium_overlay_mariner:
name: cilium_overlay_mariner
clusterName: "cil-over-mar"
cilium_overlay_arm:
name: cilium_overlay_arm
clusterName: "cil-over-arm"
cilium_overlay_rdma:
name: cilium_overlay_rdma
clusterName: "cil-over-rdma"
cilium_overlay_ds:
name: cilium_overlay_ds
clusterName: "cil-ds-ov"
win22-cniv1:
name: win22-cniv1
clusterName: "win22-cniv1"
linux_cniv1:
name: linux_cniv1
clusterName: "linux-cniv1"
linux_podsubnet:
name: linux_podsubnet
clusterName: "linux-podsub"
linux_overlay:
name: linux_overlay
clusterName: "linux-over"
mariner_linux_overlay:
name: mariner_linux_overlay
clusterName: "mariner-over"
arm_linux_overlay:
name: arm_linux_overlay
clusterName: "arm-over"
rdma_linux_overlay:
name: rdma_linux_overlay
clusterName: "rdma-over"
win-cniv2-podsubnet:
name: windows_podsubnet
clusterName: win-podsub
win-cniv2-overlay:
name: windows_overlay
clusterName: win-over
steps:
- task: AzureCLI@1
inputs:
azureSubscription: $(BUILD_VALIDATIONS_SERVICE_CONNECTION)
scriptLocation: "inlineScript"
scriptType: "bash"
addSpnToEnvironment: true
inlineScript: |
set -x
if [ "$(DELETE_RESOURCES)" ]
then
echo "Deleting Cluster and resource group"
make -C ./hack/aks set-kubeconf AZCLI=az CLUSTER=$(clusterName)-$(commitID)
make -C ./hack/aks azcfg AZCLI=az REGION=$(LOCATION)
make -C ./hack/aks down AZCLI=az REGION=$(LOCATION) SUB=$(SUB_AZURE_NETWORK_AGENT_BUILD_VALIDATIONS) CLUSTER=$(clusterName)-$(commitID)
echo "Cluster and resources down"
else
echo "Deletion of resources is False"
fi
name: "CleanUpCluster"
displayName: "Cleanup cluster - $(name)"