Skip to content

Instantly share code, notes, and snippets.

@rohancme
Created July 15, 2017 01:31
Show Gist options
  • Save rohancme/8e080ebbcb0f11f429efe8853befb6aa to your computer and use it in GitHub Desktop.
Save rohancme/8e080ebbcb0f11f429efe8853befb6aa to your computer and use it in GitHub Desktop.
Kubernetes template for the ACS-Engine
{
"apiVersion": "vlabs",
"properties": {
"orchestratorProfile": {
"orchestratorType": "Kubernetes",
"orchestratorVersion": "1.6.6"
},
"masterProfile": {
"count": 3,
"dnsPrefix": "k8s-southcentralus-mgmt",
"vmSize": "Standard_DS2_v2"
},
"agentPoolProfiles": [
{
"name": "linuxpool",
"count": 3,
"vmSize": "Standard_DS2_v2",
"availabilityProfile": "AvailabilitySet"
},
{
"name": "windowspool",
"count": 3,
"vmSize": "Standard_DS2_v2",
"availabilityProfile": "AvailabilitySet",
"osType": "Windows"
}
],
"linuxProfile": {
"adminUsername": "[USERNAME]",
"ssh": {
"publicKeys": [
{
"keyData": ""
}
]
}
},
"windowsProfile": {
"adminUsername": "[USERNAME]",
"adminPassword": "[PASSWORD]"
},
"servicePrincipalProfile": {
"servicePrincipalClientID": "",
"servicePrincipalClientSecret": ""
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment