Remove equals from heading which breaks our links.

This commit is contained in:
Eric Tune
2015-07-20 14:34:46 -07:00
parent b4fb9387b6
commit 844c823f01

View File

@@ -49,8 +49,8 @@ Documentation for other releases can be found at
- [DNS](#dns) - [DNS](#dns)
- [Headless services](#headless-services) - [Headless services](#headless-services)
- [External services](#external-services) - [External services](#external-services)
- [Type = NodePort](#type--nodeport) - [Type NodePort](#type-nodeport)
- [Type = LoadBalancer](#type--loadbalancer) - [Type LoadBalancer](#type-loadbalancer)
- [Shortcomings](#shortcomings) - [Shortcomings](#shortcomings)
- [Future work](#future-work) - [Future work](#future-work)
- [The gory details of virtual IPs](#the-gory-details-of-virtual-ips) - [The gory details of virtual IPs](#the-gory-details-of-virtual-ips)
@@ -375,7 +375,7 @@ accessed. Valid values for this field are:
Note that while `NodePort`s can be TCP or UDP, `LoadBalancer`s only support TCP Note that while `NodePort`s can be TCP or UDP, `LoadBalancer`s only support TCP
as of Kubernetes 1.0. as of Kubernetes 1.0.
### 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
@@ -391,7 +391,7 @@ This gives developers the freedom to set up their own load balancers, to
configure cloud environments that are not fully supported by Kubernetes, or configure cloud environments that are not fully supported by Kubernetes, or
even to just expose one or more nodes' IPs directly. even to just expose one or more nodes' IPs directly.
### 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`.