Reduce heading levels by 1.

This commit is contained in:
steveperry-53
2017-01-18 10:18:37 -08:00
parent 0f6b992771
commit 02d17ade5f
40 changed files with 178 additions and 187 deletions
@@ -28,7 +28,7 @@ load-balanced access to an application running in a cluster.
{% capture lessoncontent %}
### Creating a Service for an application running in two pods
## Creating a Service for an application running in two pods
1. Run a Hello World application in your cluster:
@@ -98,7 +98,7 @@ load-balanced access to an application running in a cluster.
where `<minikube-node-ip-address>` us the IP address of your Minikube node,
and `<service-node-port>` is the NodePort value for your service.
### Using a service configuration file
## Using a service configuration file
As an alternative to using `kubectl expose`, you can use a
[service configuration file](/docs/user-guide/services/operations)
@@ -108,15 +108,6 @@ to create a Service.
{% endcapture %}
{% capture cleanup %}
If you want to stop the Hello World application, enter these commands:
TODO
{% endcapture %}
{% capture whatsnext %}
Learn more about
@@ -22,7 +22,7 @@ for database debugging.
{% capture steps %}
### Creating a pod to run a Redis server
## Creating a pod to run a Redis server
1. Create a pod:
@@ -51,7 +51,7 @@ for database debugging.
6379
### Forward a local port to a port on the pod
## Forward a local port to a port on the pod
1. Forward port 6379 on the local workstation to port 6379 of redis-master pod:
@@ -77,7 +77,7 @@ for database debugging.
{% capture discussion %}
### Discussion
## Discussion
Connections made to local port 6379 are forwarded to port 6379 of the pod that
is running the Redis server. With this connection in place you can use your