From d5d9f05eb5e7b775edcbd9c423789bf1873c02e2 Mon Sep 17 00:00:00 2001 From: Michelle Noorali <michellemolu@gmail.com> Date: Tue, 5 Apr 2016 10:43:40 -0600 Subject: [PATCH] ref(readme): Intro user to concept of deployment --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 72d334e97..b17c1ea60 100644 --- a/README.md +++ b/README.md @@ -88,8 +88,9 @@ 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 ``` +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`. -Once images are downloaded you should see Redis rc, pods and services similar to this: +`$ 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: ``` $ kubectl get pods,svc,rc -- GitLab