Skip to content

Instantly share code, notes, and snippets.

@aramase
Last active September 1, 2020 19:35
Show Gist options
  • Save aramase/a19fcbf1f309dab99600ee9c0d700fce to your computer and use it in GitHub Desktop.
Save aramase/a19fcbf1f309dab99600ee9c0d700fce to your computer and use it in GitHub Desktop.
API model for creating single stack IPv6 cluster on azure
{
"apiVersion": "vlabs",
"properties": {
"featureFlags": {
"enableIPv6Only": true
},
"orchestratorProfile": {
"orchestratorType": "Kubernetes",
"orchestratorRelease": "1.18",
"kubernetesConfig": {
"loadBalancerSku": "Standard",
"excludeMasterFromStandardLB": true,
"networkPlugin": "kubenet",
"apiServerConfig": {
"--bind-address": "::"
},
"kubeletConfig": {
"--node-ip": "::"
},
"controllerManagerConfig": {
"--bind-address": "::"
},
"schedulerConfig": {
"--bind-address": "::"
}
}
},
"masterProfile": {
"count": 1,
"dnsPrefix": "ss-ipv601",
"vmSize": "Standard_D2_v3",
"distro": "ubuntu"
},
"agentPoolProfiles": [
{
"name": "agentpool1",
"count": 2,
"vmSize": "Standard_D2_v3",
"availabilityProfile": "AvailabilitySet",
"distro": "ubuntu"
}
],
"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