Include comments and add correct zero state page again

This commit is contained in:
Gerti Poppel
2016-03-24 11:07:08 +01:00
parent d956b20b4d
commit 3749dc9fd4
6 changed files with 60 additions and 33 deletions
+14 -3
View File
@@ -127,7 +127,7 @@ If all goes well, you should be able to see the container image listed in the co
## Create your cluster
A cluster consists of a master API server and a set of worker VMs called nodes.
A cluster consists of a master API server and a set of worker VMs called nodes.
Create a cluster via the Console: *Compute > Container Engine > Container Clusters > New container cluster*. Leave all the options default, and you should get a Kubernetes cluster with three nodes, ready to receive your container image.
@@ -277,7 +277,7 @@ First, lets modify the application. On the development machine, edit server.j
We can now build and publish a new container image to the registry with an incremented tag:
```shell
docker build -t gcr.io/PROJECT_ID/hello-node:v2 .
docker build -t gcr.io/PROJECT_ID/hello-node:v2 .
gcloud docker push gcr.io/PROJECT_ID/hello-node:v2
```
@@ -362,9 +362,20 @@ While this is happening, the users of the services should not see any interrupti
Hopefully with these deployment, scaling and update features youll agree that once youve setup your environment (your GKE/Kubernetes cluster here), Kubernetes is here to help you focus on the application rather than the infrastructure.
## Observe the Kubernetes Web UI (optional)
With Kubernetes 1.2, a graphical web user interface (dashboard) has been introduced. It is enabled by default for 1.2 clusters.
This user interface allows you to get started quickly and enables some of the functionality found in the CLI as a more approachable and discoverable way of interacting with the system.
Enjoy the Kubernetes graphical dashboard and use it for deploying containerized applications, as well as for monitoring and managing your clusters!
![image](/images/docs/ui-dashboard-cards-menu.png)
Learn more about the web interface by taking the [Dashboard tour](/docs/user-guide/ui/).
## That's it! Time to tear it down
That's it for the demo! So you don't leave this all running and incur charges, let's learn how to tear things down.
That's it for the demo! So you don't leave this all running and incur charges, let's learn how to tear things down.
Delete the Deployment (which also deletes the running pods) and Service (which also deletes your external load balancer):