Created
February 22, 2018 10:20
-
-
Save ams0/80655729e03766cfdc28fec67e9801db to your computer and use it in GitHub Desktop.
Windows+Linux hybrid kubernetes cluster on 1.9 with acs-engine
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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