Minor fixes for Development Documentation

Further cleans up the development documentation with spacing and
more readable text.
This commit is contained in:
Fernando Diaz 2017-08-03 11:29:02 -05:00
parent 86b52fa957
commit ef499aaff1
6 changed files with 17 additions and 21 deletions

View file

@ -27,17 +27,13 @@ You can deploy the controller as follows:
$ minikube addons disable ingress
```
2. Use the [docker daemon](https://github.com/kubernetes/minikube/blob/master/docs/reusing_the_docker_daemon.md)
3. [Build the image](../../../docs/dev/getting_started.md)
4. Create the [default-backend](default-backend.yaml):
```console
$ kubectl apply -f default-backend.yaml
```
5. Change [nginx-ingress-controller.yaml](nginx-ingress-controller.yaml) to use the appropriate image. Local images can be
3. [Build the image](../../../docs/dev/getting-started.md)
4. Change [nginx-ingress-controller.yaml](nginx-ingress-controller.yaml) to use the appropriate image. Local images can be
seen by performing `docker images`.
```yaml
image: <IMAGE-NAME>:<TAG>
```
6. Create the nginx-ingress-controller deployment:
5. Create the nginx-ingress-controller deployment:
```console
$ kubectl apply -f nginx-ingress-controller.yaml
deployment "nginx-ingress-controller" created

View file

@ -13,7 +13,7 @@ a 404 page.
## Controller
The Nginx Ingress Controller uses nginx (surprisingly!) to loadbalancer requests that are coming to
The Nginx Ingress Controller uses nginx (surprisingly!) to loadbalance requests that are coming to
ports 80 and 443 to Services in the cluster.
```console