From 94a8840dfd27693a5f3cdad949805bf868bc2529 Mon Sep 17 00:00:00 2001 From: Faun Date: Sun, 11 Sep 2016 19:40:03 -0700 Subject: [PATCH] Change display format for command output The output of `kubectl` commands should be displayed as blockquotes, rather than fenced code blocks, since they represent command output, rather than commands to run. --- docs/09-smoke-test.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/09-smoke-test.md b/docs/09-smoke-test.md index a812108..1c6a165 100644 --- a/docs/09-smoke-test.md +++ b/docs/09-smoke-test.md @@ -8,9 +8,9 @@ This lab walks you through a quick smoke test to make sure things are working. kubectl run nginx --image=nginx --port=80 --replicas=3 ``` -``` -deployment "nginx" created -``` + +> deployment "nginx" created + ``` kubectl get pods -o wide @@ -26,9 +26,9 @@ nginx-2032906785-u8rzc 1/1 Running 0 21s 10.200.0.2 w kubectl expose deployment nginx --type NodePort ``` -``` -service "nginx" exposed -``` + +> service "nginx" exposed + > Note that --type=LoadBalancer will not work because we did not configure a cloud provider when bootstrapping this cluster.