Skip to content

Commit 94c524d

Browse files
authored
ci: required changes for LTS support | v1.5 (#3619)
ci: required changes for LTS support
1 parent de0b85b commit 94c524d

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

hack/aks/Makefile

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,8 @@ overlay-byocni-up: rg-up overlay-net-up ## Brings up an Overlay BYO CNI cluster
103103
--node-count $(NODE_COUNT) \
104104
--node-vm-size $(VM_SIZE) \
105105
--load-balancer-sku standard \
106+
--k8s-support-plan AKSLongTermSupport \
107+
--tier premium \
106108
--network-plugin none \
107109
--network-plugin-mode overlay \
108110
--pod-cidr 192.168.0.0/16 \
@@ -122,6 +124,8 @@ overlay-byocni-nokubeproxy-up: rg-up overlay-net-up ## Brings up an Overlay BYO
122124
--kubernetes-version $(K8S_VER) \
123125
--node-count $(NODE_COUNT) \
124126
--node-vm-size $(VM_SIZE) \
127+
--k8s-support-plan AKSLongTermSupport \
128+
--tier premium \
125129
--network-plugin none \
126130
--network-plugin-mode overlay \
127131
--pod-cidr 192.168.0.0/16 \
@@ -138,6 +142,8 @@ overlay-cilium-up: rg-up overlay-net-up ## Brings up an Overlay Cilium cluster
138142
--kubernetes-version $(K8S_VER) \
139143
--node-count $(NODE_COUNT) \
140144
--node-vm-size $(VM_SIZE) \
145+
--k8s-support-plan AKSLongTermSupport \
146+
--tier premium \
141147
--network-plugin azure \
142148
--network-dataplane cilium \
143149
--network-plugin-mode overlay \
@@ -154,6 +160,8 @@ overlay-up: rg-up overlay-net-up ## Brings up an Overlay AzCNI cluster
154160
--kubernetes-version $(K8S_VER) \
155161
--node-count $(NODE_COUNT) \
156162
--node-vm-size $(VM_SIZE) \
163+
--k8s-support-plan AKSLongTermSupport \
164+
--tier premium \
157165
--network-plugin azure \
158166
--network-plugin-mode overlay \
159167
--pod-cidr 192.168.0.0/16 \
@@ -170,6 +178,8 @@ swift-byocni-up: rg-up swift-net-up ## Bring up a SWIFT BYO CNI cluster
170178
--node-count $(NODE_COUNT) \
171179
--node-vm-size $(VM_SIZE) \
172180
--load-balancer-sku standard \
181+
--k8s-support-plan AKSLongTermSupport \
182+
--tier premium \
173183
--network-plugin none \
174184
--vnet-subnet-id /subscriptions/$(SUB)/resourceGroups/$(GROUP)/providers/Microsoft.Network/virtualNetworks/$(VNET)/subnets/nodenet \
175185
--pod-subnet-id /subscriptions/$(SUB)/resourceGroups/$(GROUP)/providers/Microsoft.Network/virtualNetworks/$(VNET)/subnets/podnet \
@@ -188,6 +198,8 @@ swift-byocni-nokubeproxy-up: rg-up swift-net-up ## Bring up a SWIFT BYO CNI clus
188198
--kubernetes-version $(K8S_VER) \
189199
--node-count $(NODE_COUNT) \
190200
--node-vm-size $(VM_SIZE) \
201+
--k8s-support-plan AKSLongTermSupport \
202+
--tier premium \
191203
--network-plugin none \
192204
--vnet-subnet-id /subscriptions/$(SUB)/resourceGroups/$(GROUP)/providers/Microsoft.Network/virtualNetworks/$(VNET)/subnets/nodenet \
193205
--pod-subnet-id /subscriptions/$(SUB)/resourceGroups/$(GROUP)/providers/Microsoft.Network/virtualNetworks/$(VNET)/subnets/podnet \
@@ -204,6 +216,8 @@ swift-cilium-up: rg-up swift-net-up ## Bring up a SWIFT Cilium cluster
204216
--kubernetes-version $(K8S_VER) \
205217
--node-count $(NODE_COUNT) \
206218
--node-vm-size $(VM_SIZE) \
219+
--k8s-support-plan AKSLongTermSupport \
220+
--tier premium \
207221
--network-plugin azure \
208222
--network-dataplane cilium \
209223
--aks-custom-headers AKSHTTPCustomFeatures=Microsoft.ContainerService/CiliumDataplanePreview \
@@ -220,6 +234,8 @@ swift-up: rg-up swift-net-up ## Bring up a SWIFT AzCNI cluster
220234
--kubernetes-version $(K8S_VER) \
221235
--node-count $(NODE_COUNT) \
222236
--node-vm-size $(VM_SIZE) \
237+
--k8s-support-plan AKSLongTermSupport \
238+
--tier premium \
223239
--network-plugin azure \
224240
--vnet-subnet-id /subscriptions/$(SUB)/resourceGroups/$(GROUP)/providers/Microsoft.Network/virtualNetworks/$(VNET)/subnets/nodenet \
225241
--pod-subnet-id /subscriptions/$(SUB)/resourceGroups/$(GROUP)/providers/Microsoft.Network/virtualNetworks/$(VNET)/subnets/podnet \
@@ -234,6 +250,8 @@ swiftv2-multitenancy-cluster-up: rg-up
234250
--kubernetes-version 1.28 \
235251
--nodepool-name "mtapool" \
236252
--node-vm-size $(VM_SIZE) \
253+
--k8s-support-plan AKSLongTermSupport \
254+
--tier premium \
237255
--node-count 2 \
238256
--nodepool-tags fastpathenabled=true \
239257
--no-ssh-key \
@@ -259,6 +277,8 @@ vnetscale-swift-byocni-up: rg-up vnetscale-swift-net-up ## Bring up a Vnet Scale
259277
--kubernetes-version $(K8S_VER) \
260278
--node-count $(NODE_COUNT) \
261279
--node-vm-size $(VM_SIZE) \
280+
--k8s-support-plan AKSLongTermSupport \
281+
--tier premium \
262282
--network-plugin none \
263283
--vnet-subnet-id /subscriptions/$(SUB)/resourceGroups/$(GROUP)/providers/Microsoft.Network/virtualNetworks/$(VNET)/subnets/nodenet \
264284
--pod-subnet-id /subscriptions/$(SUB)/resourceGroups/$(GROUP)/providers/Microsoft.Network/virtualNetworks/$(VNET)/subnets/podnet \
@@ -274,6 +294,8 @@ vnetscale-swift-byocni-nokubeproxy-up: rg-up vnetscale-swift-net-up ## Bring up
274294
--kubernetes-version $(K8S_VER) \
275295
--node-count $(NODE_COUNT) \
276296
--node-vm-size $(VM_SIZE) \
297+
--k8s-support-plan AKSLongTermSupport \
298+
--tier premium \
277299
--network-plugin none \
278300
--vnet-subnet-id /subscriptions/$(SUB)/resourceGroups/$(GROUP)/providers/Microsoft.Network/virtualNetworks/$(VNET)/subnets/nodenet \
279301
--pod-subnet-id /subscriptions/$(SUB)/resourceGroups/$(GROUP)/providers/Microsoft.Network/virtualNetworks/$(VNET)/subnets/podnet \
@@ -290,6 +312,8 @@ vnetscale-swift-cilium-up: rg-up vnetscale-swift-net-up ## Bring up a Vnet Scale
290312
--kubernetes-version $(K8S_VER) \
291313
--node-count $(NODE_COUNT) \
292314
--node-vm-size $(VM_SIZE) \
315+
--k8s-support-plan AKSLongTermSupport \
316+
--tier premium \
293317
--network-plugin azure \
294318
--network-dataplane cilium \
295319
--aks-custom-headers AKSHTTPCustomFeatures=Microsoft.ContainerService/CiliumDataplanePreview \
@@ -306,6 +330,8 @@ vnetscale-swift-up: rg-up vnetscale-swift-net-up ## Bring up a Vnet Scale SWIFT
306330
--kubernetes-version $(K8S_VER) \
307331
--node-count $(NODE_COUNT) \
308332
--node-vm-size $(VM_SIZE) \
333+
--k8s-support-plan AKSLongTermSupport \
334+
--tier premium \
309335
--network-plugin azure \
310336
--vnet-subnet-id /subscriptions/$(SUB)/resourceGroups/$(GROUP)/providers/Microsoft.Network/virtualNetworks/$(VNET)/subnets/nodenet \
311337
--pod-subnet-id /subscriptions/$(SUB)/resourceGroups/$(GROUP)/providers/Microsoft.Network/virtualNetworks/$(VNET)/subnets/podnet \
@@ -320,6 +346,8 @@ windows-cniv1-up: rg-up overlay-net-up ## Bring up a Windows CNIv1 cluster
320346
--kubernetes-version $(K8S_VER) \
321347
--node-count $(NODE_COUNT) \
322348
--node-vm-size $(VM_SIZE) \
349+
--k8s-support-plan AKSLongTermSupport \
350+
--tier premium \
323351
--network-plugin azure \
324352
--windows-admin-password $(WINDOWS_PASSWORD) \
325353
--windows-admin-username $(WINDOWS_USERNAME) \
@@ -336,6 +364,8 @@ linux-cniv1-up: rg-up overlay-net-up ## Bring up a Linux CNIv1 cluster
336364
--kubernetes-version $(K8S_VER) \
337365
--node-count $(NODE_COUNT) \
338366
--node-vm-size $(VM_SIZE) \
367+
--k8s-support-plan AKSLongTermSupport \
368+
--tier premium \
339369
--max-pods 250 \
340370
--network-plugin azure \
341371
--vnet-subnet-id /subscriptions/$(SUB)/resourceGroups/$(GROUP)/providers/Microsoft.Network/virtualNetworks/$(VNET)/subnets/nodenet \
@@ -351,6 +381,8 @@ dualstack-overlay-up: rg-up overlay-net-up ## Brings up an dualstack Overlay clu
351381
--kubernetes-version $(K8S_VER) \
352382
--node-count $(NODE_COUNT) \
353383
--node-vm-size $(VM_SIZE) \
384+
--k8s-support-plan AKSLongTermSupport \
385+
--tier premium \
354386
--network-plugin azure \
355387
--network-plugin-mode overlay \
356388
--subscription $(SUB) \
@@ -367,6 +399,8 @@ dualstack-overlay-byocni-up: rg-up overlay-net-up ## Brings up an dualstack Over
367399
--kubernetes-version $(K8S_VER) \
368400
--node-count $(NODE_COUNT) \
369401
--node-vm-size $(VM_SIZE) \
402+
--k8s-support-plan AKSLongTermSupport \
403+
--tier premium \
370404
--network-plugin none \
371405
--network-plugin-mode overlay \
372406
--subscription $(SUB) \
@@ -383,6 +417,8 @@ cilium-dualstack-up: rg-up overlay-net-up ## Brings up a Cilium Dualstack Overla
383417
--kubernetes-version $(K8S_VER) \
384418
--node-count $(NODE_COUNT) \
385419
--node-vm-size $(VM_SIZE) \
420+
--k8s-support-plan AKSLongTermSupport \
421+
--tier premium \
386422
--network-plugin azure \
387423
--network-plugin-mode overlay \
388424
--network-dataplane cilium \
@@ -400,6 +436,8 @@ dualstack-byocni-nokubeproxy-up: rg-up overlay-net-up ## Brings up a Dualstack o
400436
--kubernetes-version $(K8S_VER) \
401437
--node-count $(NODE_COUNT) \
402438
--node-vm-size $(VM_SIZE) \
439+
--k8s-support-plan AKSLongTermSupport \
440+
--tier premium \
403441
--network-plugin none \
404442
--network-plugin-mode overlay \
405443
--subscription $(SUB) \

0 commit comments

Comments
 (0)