Merge pull request #583 from michelleN/redis-chart

ref(*): correct version format for charts
pull/588/head
Michelle Noorali 9 years ago
commit a3db79a108

@ -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

@ -1,6 +1,6 @@
name: redis
description: Port of the replicatedservice template from kubernetes/charts
version: "2"
version: "2.0.0"
home: ""
expander:
name: expandybird-service

@ -1,6 +1,6 @@
name: replicatedservice
description: Port of the replicatedservice template from kubernetes/charts
version: "3"
version: "3.0.0"
home: ""
expander:
name: expandybird-service

Loading…
Cancel
Save