From 2d1133de980c080d2107bcb188a48b5c65fd3b5f Mon Sep 17 00:00:00 2001 From: Alex Chan Date: Tue, 1 Sep 2015 12:17:44 +0100 Subject: [PATCH] Fix two broken codeblocks in Guestbook example Looking at the currently published version (http://kubernetes.io/v1.0/examples/guestbook-go/README.html), there are a pair of unprocessed code fence blocks. This commit is an attempt to fix the problem. --- examples/guestbook-go/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/guestbook-go/README.md b/examples/guestbook-go/README.md index 102efddf7a0..314777051c2 100644 --- a/examples/guestbook-go/README.md +++ b/examples/guestbook-go/README.md @@ -206,7 +206,7 @@ This is a simple Go `net/http` ([negroni](https://github.com/codegangsta/negroni 2. To verify that the guestbook replication controller is running, run the `kubectl get rc` command: - ``` + ```console $ kubectl get rc CONTROLLER CONTAINER(S) IMAGE(S) SELECTOR REPLICAS guestbook guestbook kubernetes/guestbook:v2 app=guestbook 3 @@ -244,7 +244,7 @@ Just like the others, we create a service to group the guestbook pods but this t 2. To verify that the guestbook service is up, list all the services in the cluster with the `kubectl get services` command: - ``` + ```console $ kubectl get services NAME CLUSTER_IP EXTERNAL_IP PORT(S) SELECTOR AGE guestbook 10.0.217.218 146.148.81.8 3000/TCP app=guestbook 1h