Use correct names for loadbalancing policies (#390)

This commit is contained in:
Kelsey Hightower 2017-06-15 14:38:34 -07:00 committed by Shriram Rajagopalan
parent 37aea36dc0
commit 1166f8159c
1 changed files with 4 additions and 4 deletions

View File

@ -138,14 +138,14 @@ Load balancing algorithms supported by Envoy proxy.
<th>Value</th>
<th>Description</th>
</tr>
<a name="istio.proxy.v1.config.LoadBalancing.SimpleLBPolicy.ROUNDROBIN"></a>
<a name="istio.proxy.v1.config.LoadBalancing.SimpleLBPolicy.ROUND_ROBIN"></a>
<tr>
<td>ROUNDROBIN</td>
<td>ROUND_ROBIN</td>
<td>Simple round robin policy.</td>
</tr>
<a name="istio.proxy.v1.config.LoadBalancing.SimpleLBPolicy.LEASTCONN"></a>
<a name="istio.proxy.v1.config.LoadBalancing.SimpleLBPolicy.LEAST_CONN"></a>
<tr>
<td>LEASTCONN</td>
<td>LEAST_CONN</td>
<td>The least request load balancer uses an O(1) algorithm which selects two random healthy hosts and picks the host which has fewer active requests.</td>
</tr>
<a name="istio.proxy.v1.config.LoadBalancing.SimpleLBPolicy.RANDOM"></a>