Skip to content

Commit

Permalink
adding load balancer sku property (#5556)
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiaofang Zhang authored and kpajdzik committed Apr 8, 2019
1 parent 5b003dc commit 8741e48
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@
]
}
},
"networkProfile":{
"loadBalancerSku": "basic"
},
"windowsProfile": {
"adminUsername": "azureuser",
"adminPassword": "replacePassword1234$"
Expand Down Expand Up @@ -94,6 +97,7 @@
"enablePodSecurityPolicy": true,
"fqdn": "dnsprefix1-abcd1234.hcp.eastus.azmk8s.io",
"networkProfile": {
"loadBalancerSku": "basic",
"networkPlugin": "kubenet",
"podCidr": "10.244.0.0/16",
"serviceCidr": "10.0.0.0/16",
Expand Down Expand Up @@ -149,6 +153,7 @@
"enableRBAC": true,
"enablePodSecurityPolicy": true,
"networkProfile": {
"loadBalancerSku": "basic",
"networkPlugin": "kubenet",
"podCidr": "10.244.0.0/16",
"serviceCidr": "10.0.0.0/16",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1599,6 +1599,18 @@
"pattern": "^([0-9]{1,3}\\.){3}[0-9]{1,3}(\\/([0-9]|[1-2][0-9]|3[0-2]))?$",
"default": "172.17.0.1/16",
"description": "A CIDR notation IP range assigned to the Docker bridge network. It must not overlap with any Subnet IP ranges or the Kubernetes service address range."
},
"loadBalancerSku":{
"type": "string",
"enum": [
"standard",
"basic"
],
"x-ms-enum": {
"name": "loadBalancerSku",
"modelAsString": true
},
"description": "The load balancer sku for the managed cluster."
}
},
"description": "Profile of network configuration."
Expand Down

0 comments on commit 8741e48

Please sign in to comment.