Skip to content

Commit

Permalink
feat: add rest api spec for ip-based lb (Azure#20392)
Browse files Browse the repository at this point in the history
  • Loading branch information
nilo19 authored and FumingZhang committed Aug 31, 2022
1 parent dfc2dd4 commit f624962
Showing 1 changed file with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4280,6 +4280,29 @@
"enableMultipleStandardLoadBalancers": {
"type": "boolean",
"description": "Enable multiple standard load balancers per AKS cluster or not."
},
"backendPoolType": {
"type": "string",
"x-ms-enum": {
"name": "BackendPoolType",
"modelAsString": true,
"values": [
{
"value": "NodeIPConfiguration",
"description": "The type of the managed inbound Load Balancer BackendPool. https://cloud-provider-azure.sigs.k8s.io/topics/loadbalancer/#configure-load-balancer-backend."
},
{
"value": "NodeIP",
"description": "The type of the managed inbound Load Balancer BackendPool. https://cloud-provider-azure.sigs.k8s.io/topics/loadbalancer/#configure-load-balancer-backend."
}
]
},
"enum": [
"NodeIPConfiguration",
"NodeIP"
],
"description": "The type of the managed inbound Load Balancer BackendPool.",
"default": "NodeIPConfiguration"
}
},
"description": "Profile of the managed cluster load balancer."
Expand Down

0 comments on commit f624962

Please sign in to comment.