Skip to content

Instantly share code, notes, and snippets.

@cdennig
Last active October 25, 2017 11:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cdennig/e3a7b4a1bc152eb19d0e95889e10dc7c to your computer and use it in GitHub Desktop.
Save cdennig/e3a7b4a1bc152eb19d0e95889e10dc7c to your computer and use it in GitHub Desktop.
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