Skip to content

Commit 369547a

Browse files
committed
chore(helm->helmc): fixup usage
1 parent 46f5f9e commit 369547a

3 files changed

Lines changed: 24 additions & 24 deletions

File tree

src/quickstart/install-cli-tools.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ Install the latest `helm` cli for Linux or Mac OS X with:
3232
- the CI build pipeline: [ ![Download](https://api.bintray.com/packages/deis/helm-ci/helm/images/download.svg) ](https://bintray.com/deis/helm-ci/helm/_latestVersion#files)
3333
2. Unzip the package and make sure `helm` is available on the PATH.
3434

35-
Check your work by running `helm version`:
35+
Check your work by running `helmc version`:
3636

37-
$ helm version
38-
helm version 0.6.0+1c8688e
37+
$ helmc version
38+
helmc version 0.7.0+20a7ed7
3939

40-
Make sure you are running at least version 0.6.0 or newer.
40+
Make sure you are running at least version 0.7.0 or newer.
4141

4242
[Next: (Step 2) boot a kubernetes cluster](index.md#step-2-boot-a-kubernetes-cluster)

src/quickstart/provider/gke/install-gke.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
First check that the `helm` command is available and the version is 0.6 or newer.
66

77
```
8-
$ helm --version
9-
helm version 0.6.0+1c8688e
8+
$ helmc --version
9+
helmc version 0.7.0+20a7ed7
1010
```
1111

1212
Ensure the `kubectl` client is installed and can connect to your Kubernetes cluster. `helm` will
1313
use it to communicate. You can test that it is working properly by running:
1414

1515
```
16-
$ helm target
16+
$ helmc target
1717
Kubernetes master is running at https://104.154.234.246
1818
GLBCDefaultBackend is running at https://104.154.234.246/api/v1/proxy/namespaces/kube-system/services/default-http-backend
1919
Heapster is running at https://104.154.234.246/api/v1/proxy/namespaces/kube-system/services/heapster
@@ -34,24 +34,24 @@ Server Version: version.Info{Major:"1", Minor:"2", GitVersion:"v1.2.3", GitCommi
3434
## Add the Deis Chart Repository
3535

3636
The [Deis Chart Repository](https://github.com/deis/charts) contains everything you
37-
need to install Deis onto your Kubernetes cluster, with a single `helm install` command.
37+
need to install Deis onto your Kubernetes cluster, with a single `helmc install` command.
3838

3939
Run the following command to add this repository to Helm:
4040

4141
```
42-
$ helm repo add deis https://github.com/deis/charts
42+
$ helmc repo add deis https://github.com/deis/charts
4343
```
4444

4545
## Install Deis Workflow
4646

4747
Now that you have Helm installed and have added the Deis Chart Repository, install Workflow by running:
4848

4949
```
50-
$ helm fetch deis/workflow-beta3 # fetches the chart into a
51-
# local workspace
52-
$ helm generate -x manifests workflow-beta3 # generates various secrets
53-
$ helm install workflow-beta3 # injects resources into
54-
# your cluster
50+
$ helmc fetch deis/workflow-beta3 # fetches the chart into a
51+
# local workspace
52+
$ helmc generate -x manifests workflow-beta3 # generates various secrets
53+
$ helmc install workflow-beta3 # injects resources into
54+
# your cluster
5555
```
5656

5757
Helm will install a variety of Kubernetes resources in the `deis` namespace.

src/quickstart/provider/vagrant/install-vagrant.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
First check that the `helm` command is available and the version is 0.6 or newer.
66

77
```
8-
$ helm --version
9-
helm version 0.6.0+1c8688e
8+
$ helmc --version
9+
helmc version 0.7.0+20a7ed7
1010
```
1111

1212
Ensure the `kubectl` client is installed and can connect to your Kubernetes cluster. `helm` will
1313
use it to communicate. You can test that it is working properly by running:
1414

1515
```
16-
$ helm target
16+
$ helmc target
1717
Kubernetes master is running at https://10.245.1.2
1818
Heapster is running at https://10.245.1.2/api/v1/proxy/namespaces/kube-system/services/heapster
1919
KubeDNS is running at https://10.245.1.2/api/v1/proxy/namespaces/kube-system/services/kube-dns
@@ -35,24 +35,24 @@ Server Version: version.Info{Major:"1", Minor:"2", GitVersion:"v1.2.3", GitCommi
3535
## Add the Deis Chart Repository
3636

3737
The [Deis Chart Repository](https://github.com/deis/charts) contains everything you
38-
need to install Deis onto your Kubernetes cluster, with a single `helm install` command.
38+
need to install Deis onto your Kubernetes cluster, with a single `helmc install` command.
3939

4040
Run the following command to add this repository to Helm:
4141

4242
```
43-
$ helm repo add deis https://github.com/deis/charts
43+
$ helmc repo add deis https://github.com/deis/charts
4444
```
4545

4646
## Install Deis Workflow
4747

4848
Now that you have Helm installed and have added the Deis Chart Repository, install Workflow by running:
4949

5050
```
51-
$ helm fetch deis/workflow-beta3 # fetches the chart into a
52-
# local workspace
53-
$ helm generate -x manifests workflow-beta3 # generates various secrets
54-
$ helm install workflow-beta3 # injects resources into
55-
# your cluster
51+
$ helmc fetch deis/workflow-beta3 # fetches the chart into a
52+
# local workspace
53+
$ helmc generate -x manifests workflow-beta3 # generates various secrets
54+
$ helmc install workflow-beta3 # injects resources into
55+
# your cluster
5656
```
5757

5858
Helm will install a variety of Kubernetes resources in the `deis` namespace.

0 commit comments

Comments
 (0)