-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathaks2.yaml
53 lines (39 loc) · 1.05 KB
/
aks2.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
# Default values for azure-managed-cluster.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
## AKS cluster configuration
## The subscription ID
#subscriptionID: ""
cluster:
## The resource group for the AKS cluster object
resourceGroupName: aksclusters
## The resource group name for the nodes
nodeResourceGroupName: capz2
## The location of the cluster
location: westeurope
## The name of the cluster
name: capz2
## the subnet
cidrBlocks:
- 192.168.0.0/16
controlplane:
## SSH public key (must be valid)
sshPublicKey: ""
## Kubernetes version
kubernetes_version: "v1.28.3"
## Network policy, "calico" (for kubenet and azurecni) or "azure" (for azureCNI)
networkPolicy: "calico"
## Network Plugin "kubenet" or "azure"
networkPlugin: "azure"
#Only 1 Nodepool of mode System is allowed
agentpools:
- name: capz2np0
mode: System
sku: Standard_B2s
nodecount: 2
osDiskSizeGB: 100
- name: capz2np1
mode: User
nodecount: 2
sku: Standard_B2s
osDiskSizeGB: 100