Prepending the commands with '$' (#1145)

* A command should be all on one line

* Adding '$' to all commands for consistency
This commit is contained in:
Asko Kauppi
2017-06-06 17:14:57 -07:00
committed by Lachlan Evenson
parent e096f8bd97
commit cad23e7da7
+4 -4
View File
@@ -35,16 +35,16 @@ To install the chart with the release name `my-release` in the default
namespace:
```
helm repo add incubator http://storage.googleapis.com/kubernetes-charts-incubator
helm install --name my-kafka incubator/kafka
$ helm repo add incubator http://storage.googleapis.com/kubernetes-charts-incubator
$ helm install --name my-kafka incubator/kafka
```
If using a dedicated namespace(recommended) then make sure the namespace
exists with:
```
kubectl create ns kafka
helm install --name my-kafka --set global.namespace=kafka incubator/kafka
$ kubectl create ns kafka
$ helm install --name my-kafka --set global.namespace=kafka incubator/kafka
```
This chart includes a ZooKeeper chart as a dependency to the Kafka