Skip to content

Instantly share code, notes, and snippets.

@ams0
Created February 22, 2018 10:20
Show Gist options
  • Save ams0/80655729e03766cfdc28fec67e9801db to your computer and use it in GitHub Desktop.
Save ams0/80655729e03766cfdc28fec67e9801db to your computer and use it in GitHub Desktop.
Windows+Linux hybrid kubernetes cluster on 1.9 with acs-engine
{
"apiVersion": "vlabs",
"properties": {
"orchestratorProfile": {
"orchestratorType": "Kubernetes",
"orchestratorRelease": "1.9"
},
"masterProfile": {
"count": 1,
"dnsPrefix": "cloverfield",
"vmSize": "Standard_D2_v2"
},
"agentPoolProfiles": [
{
"name": "linuxpool1",
"count": 2,
"vmSize": "Standard_D2_v2",
"availabilityProfile": "AvailabilitySet"
},
{
"name": "windowspool2",
"count": 2,
"vmSize": "Standard_D2_v2",
"availabilityProfile": "AvailabilitySet",
"osType": "Windows"
}
],
"windowsProfile": {
"adminUsername": "azureuser",
"adminPassword": ""
},
"linuxProfile": {
"adminUsername": "azureuser",
"ssh": {
"publicKeys": [
{
"keyData": ""
}
]
}
},
"servicePrincipalProfile": {
"clientId": "",
"secret": ""
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment