ACS hybrid template
{ | |
"apiVersion": "vlabs", | |
"properties": { | |
"orchestratorProfile": { | |
"orchestratorType": "Kubernetes", | |
"orchestratorRelease": "1.8" | |
}, | |
"masterProfile": { | |
"count": 1, | |
"dnsPrefix": "[CLUSTERNAME]", | |
"vmSize": "Standard_D2_v2" | |
}, | |
"agentPoolProfiles": [ | |
{ | |
"name": "linuxpool", | |
"count": 3, | |
"vmSize": "Standard_D2_v2", | |
"availabilityProfile": "AvailabilitySet" | |
}, | |
{ | |
"name": "winpool", | |
"count": 2, | |
"vmSize": "Standard_D2_v2", | |
"availabilityProfile": "AvailabilitySet", | |
"osType": "Windows" | |
} | |
], | |
"windowsProfile": { | |
"adminUsername": "azureuser", | |
"adminPassword": "[WINDOWS_ADMIN_PASSWORD]" | |
}, | |
"linuxProfile": { | |
"adminUsername": "azureuser", | |
"ssh": { | |
"publicKeys": [ | |
{ | |
"keyData": "[SSH_PUBLIC_KEY]" | |
} | |
] | |
} | |
}, | |
"servicePrincipalProfile": { | |
"clientId": "[APP_ID]", | |
"secret": "[PASSWORD]" | |
} | |
} | |
} | |
export EXPECTED_NODE_COUNT=6 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment