From 407641dec54386b5f87ddef205f54b5cf4982a08 Mon Sep 17 00:00:00 2001 From: Satnam Singh Date: Sun, 19 Jul 2015 01:09:21 +0100 Subject: [PATCH] Fix console output for prereqs.md doc --- docs/user-guide/prereqs.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/user-guide/prereqs.md b/docs/user-guide/prereqs.md index 1742e7520e1..e17f8008589 100644 --- a/docs/user-guide/prereqs.md +++ b/docs/user-guide/prereqs.md @@ -42,7 +42,7 @@ or if you build from source, kubectl should be either under _output/local/bin//platforms/darwin/amd64:$PATH @@ -64,12 +64,12 @@ The kubectl binary doesn't have to be installed to be executable, but the rest o The simplest way to install is to copy or move kubectl into a dir already in PATH (e.g. `/usr/local/bin`). For example: -```bash +```console # OS X -sudo cp kubernetes/platforms/darwin/amd64/kubectl /usr/local/bin/kubectl +$ sudo cp kubernetes/platforms/darwin/amd64/kubectl /usr/local/bin/kubectl # Linux -sudo cp kubernetes/platforms/linux/amd64/kubectl /usr/local/bin/kubectl - ``` +$ sudo cp kubernetes/platforms/linux/amd64/kubectl /usr/local/bin/kubectl +``` #### Configuring Kubectl @@ -83,7 +83,7 @@ If your cluster was deployed by other means (e.g. a [getting started guide](../g Check that kubectl is properly configured by getting the cluster state: -```sh +```console $ kubectl cluster-info ```