-
Notifications
You must be signed in to change notification settings - Fork 8
/
k8s.json
38 lines (38 loc) · 955 Bytes
/
k8s.json
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
{
"apiVersion": "vlabs",
"properties": {
"orchestratorProfile": {
"orchestratorType": "Kubernetes"
},
"masterProfile": {
"count": ${master_vm_count},
"dnsPrefix": "${dns_prefix}",
"vmSize": "${vm_size}",
"vnetSubnetId": "${subnet_id}",
"firstConsecutiveStaticIP": "${first_master_ip}"
},
"agentPoolProfiles": [
{
"name": "agentpool1",
"count": ${worker_vm_count},
"vmSize": "${vm_size}",
"vnetSubnetId": "${subnet_id}",
"availabilityProfile": "AvailabilitySet"
}
],
"linuxProfile": {
"adminUsername": "${admin_user}",
"ssh": {
"publicKeys": [
{
"keyData": "${ssh_key}"
}
]
}
},
"servicePrincipalProfile": {
"servicePrincipalClientID": "${service_principle_client_id}",
"servicePrincipalClientSecret": "${service_principle_client_secret}"
}
}
}