Skip to content

Commit

Permalink
Remove quota for service type. (kubernetes#8882)
Browse files Browse the repository at this point in the history
  • Loading branch information
gyliu513 authored and k8s-ci-robot committed Jun 4, 2018
1 parent fddc807 commit a2cb17e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/en/docs/concepts/services-networking/service.md
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ The default is `ClusterIP`.

### 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
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.
Expand All @@ -422,7 +422,7 @@ and `spec.clusterIP:spec.ports[*].port`. (If the `--nodeport-addresses` flag in
### Type LoadBalancer

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
information about the provisioned balancer will be published in the `Service`'s
`status.loadBalancer` field. For example:
Expand Down

0 comments on commit a2cb17e

Please sign in to comment.