From b58da0a5ee9703d7799435340d1ee5fb76b2a07e Mon Sep 17 00:00:00 2001 From: Kelsey Hightower Date: Thu, 7 Jul 2016 15:19:16 -0700 Subject: [PATCH] update docs --- README.md | 1 + docs/smoke-test.md | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 docs/smoke-test.md diff --git a/README.md b/README.md index a288aa5..7469030 100644 --- a/README.md +++ b/README.md @@ -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) \ No newline at end of file diff --git a/docs/smoke-test.md b/docs/smoke-test.md new file mode 100644 index 0000000..cb4fa7e --- /dev/null +++ b/docs/smoke-test.md @@ -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 +``` \ No newline at end of file