Commit a3db79a1 authored by Michelle Noorali's avatar Michelle Noorali

Merge pull request #583 from michelleN/redis-chart

ref(*): correct version format for charts
parents cfe793a2 4819c4a9
......@@ -86,11 +86,11 @@ $ bin/helm repo add kubernetes-charts-testing gs://kubernetes-charts-testing
Then deploy a Chart from this repository. For example to start a Redis cluster:
```
$ bin/helm deploy --name test --properties "workers=2" gs://kubernetes-charts-testing/redis-2.tgz
$ bin/helm deploy --name test --properties "workers=2" gs://kubernetes-charts-testing/redis-2.0.0.tgz
```
The command above will create a helm "deployment" called `test` using the `redis-2.tgz` chart stored in the google storage bucket `kubernetes-charts-testing`.
The command above will create a helm "deployment" called `test` using the `redis-2.0.0.tgz` chart stored in the google storage bucket `kubernetes-charts-testing`.
`$ bin/helm deployment describe test` will allow you to see the status of the resources you just created using the redis-v2.tgz chart. You can also use kubectl to see the the same resources. It'll look like this:
`$ bin/helm deployment describe test` will allow you to see the status of the resources you just created using the redis-2.0.0.tgz chart. You can also use kubectl to see the the same resources. It'll look like this:
```
$ kubectl get pods,svc,rc
......
name: redis
description: Port of the replicatedservice template from kubernetes/charts
version: "2"
version: "2.0.0"
home: ""
expander:
name: expandybird-service
......
name: replicatedservice
description: Port of the replicatedservice template from kubernetes/charts
version: "3"
version: "3.0.0"
home: ""
expander:
name: expandybird-service
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment