Remove quota for service type. (#8882)
This commit is contained in:
parent
fddc80759e
commit
a2cb17e4cf
|
@ -400,7 +400,7 @@ The default is `ClusterIP`.
|
||||||
|
|
||||||
### Type NodePort
|
### Type NodePort
|
||||||
|
|
||||||
If you set the `type` field to `"NodePort"`, the Kubernetes master will
|
If you set the `type` field to `NodePort`, the Kubernetes master will
|
||||||
allocate a port from a flag-configured range (default: 30000-32767), and each
|
allocate a port from a flag-configured range (default: 30000-32767), and each
|
||||||
Node will proxy that port (the same port number on every Node) into your `Service`.
|
Node will proxy that port (the same port number on every Node) into your `Service`.
|
||||||
That port will be reported in your `Service`'s `spec.ports[*].nodePort` field.
|
That port will be reported in your `Service`'s `spec.ports[*].nodePort` field.
|
||||||
|
@ -422,7 +422,7 @@ and `spec.clusterIP:spec.ports[*].port`. (If the `--nodeport-addresses` flag in
|
||||||
### Type LoadBalancer
|
### Type LoadBalancer
|
||||||
|
|
||||||
On cloud providers which support external load balancers, setting the `type`
|
On cloud providers which support external load balancers, setting the `type`
|
||||||
field to `"LoadBalancer"` will provision a load balancer for your `Service`.
|
field to `LoadBalancer` will provision a load balancer for your `Service`.
|
||||||
The actual creation of the load balancer happens asynchronously, and
|
The actual creation of the load balancer happens asynchronously, and
|
||||||
information about the provisioned balancer will be published in the `Service`'s
|
information about the provisioned balancer will be published in the `Service`'s
|
||||||
`status.loadBalancer` field. For example:
|
`status.loadBalancer` field. For example:
|
||||||
|
|
Loading…
Reference in New Issue