update docs

pull/4/head
Kelsey Hightower 2016-07-07 15:19:16 -07:00
parent 518b15752c
commit b58da0a5ee
2 changed files with 26 additions and 0 deletions

View File

@ -32,4 +32,5 @@ The resulting cluster will be missing the following items:
* [Bootstrapping Kubernetes Workers](docs/kubernetes-worker.md)
* [Configuring the Kubernetes Client - Remote Access](docs/kubectl.md)
* [Managing the Container Network Routes](docs/network.md)
* [Smoke Test](docs/smoke-test.md)
* [Cleaning Up](docs/cleanup.md)

25
docs/smoke-test.md Normal file
View File

@ -0,0 +1,25 @@
# Smoke Test
This lab walks you through a quick smoke test to make sure things are working.
## Test
```
```
```
kubectl run nginx --image=nginx --port=80 --replicas=3
```
```
deployment "nginx" created
```
```
kubectl get pods -o wide
```
NAME READY STATUS RESTARTS AGE IP NODE
nginx-2032906785-ms8hw 1/1 Running 0 21s 10.200.2.2 worker2
nginx-2032906785-sokxz 1/1 Running 0 21s 10.200.1.2 worker1
nginx-2032906785-u8rzc 1/1 Running 0 21s 10.200.0.2 worker0
```