Skip to content

Commit 0e3b0e3

Browse files
committed
ref(quickstart,installing): s/Platform/Workflow/
1 parent 8723ccf commit 0e3b0e3

4 files changed

Lines changed: 18 additions & 17 deletions

File tree

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pages:
1212
- Installing Deis:
1313
- Quick Start: installing-deis/quickstart.md
1414
- System Requirements: installing-deis/system-requirements.md
15-
- Installing the Deis Platform: installing-deis/installing-the-deis-platform.md
15+
- Installing Deis Workflow: installing-deis/installing-deis-workflow.md
1616
- Using Deis:
1717
- Installing the Client: using-deis/installing-the-client.md
1818
- Registering a User: using-deis/registering-a-user.md

src/installing-deis/installing-the-deis-platform.md renamed to src/installing-deis/installing-deis-workflow.md

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Installing the Deis Platform
1+
# Installing Deis Workflow
22

3-
We will use the `helm` utility to provision the Deis platform to a kubernetes cluster. If you don't
3+
We will use the `helm` utility to install Deis Workflow onto a Kubernetes cluster. If you don't
44
have `helm` installed, see [installing helm][helm] for more info.
55

66
## Check Your Setup
@@ -10,9 +10,9 @@ First check that you have `helm` installed and the version is correct.
1010
$ helm --version
1111
0.2.0
1212

13-
Ensure your kubectl client is installed and ensure it can connect to your kubernetes cluster. This
13+
Ensure your kubectl client is installed and ensure it can connect to your Kubernetes cluster. This
1414
is where `helm` will attempt to communicate with the cluster. You can test that it is working
15-
properly by running
15+
properly by running:
1616

1717
$ helm target
1818
Kubernetes master is running at https://10.245.1.2
@@ -26,7 +26,7 @@ If you see a list of targets like the one above, helm can communicate with the k
2626

2727
## Get the Helm Chart
2828

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

3232
Run the following commands to set up your Helm environment and install the chart:
@@ -37,24 +37,25 @@ $ helm repo add deis https://github.com/deis/charts
3737
$ helm fetch deis/deis
3838
```
3939

40-
## Launch Your Deis Cluster
40+
## Install Deis Workflow
4141

42-
Now that you have it prepared, launch the Deis cluster with:
42+
Now that you have Helm installed an the Deish Chart Repository added, install Workflow by running:
4343

4444
```
45-
$ helm install deis/deis
45+
$ helm install deis/deis --namespace=deis
4646
```
4747

48-
This command will launch a variety of Kubernetes resources in the `deis` namespace.
48+
Helm will install a variety of Kubernetes resources in the `deis` namespace.
4949
You'll need to wait for the pods that it launched to be ready. Monitor their status
5050
by running:
5151

5252
```
5353
$ kubectl get pods --namespace=deis
5454
```
5555

56-
Once you see all of the pods in the `READY` state, your Deis platform is running on a cluster!
56+
Once you see all of the pods in the `READY` state, Deis Workflow is up and running!
5757

58+
Next, [configure dns][] so you can register your first user.
5859

5960
[helm]: http://helm.sh
6061
[using deis]: ../using-deis/deploying-an-application.md

src/installing-deis/quickstart.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Quick Start
22

3-
These steps will help you provision a Deis cluster.
3+
These steps will help you install and configure Deis Workflow on a Kubernetes cluster.
44

55
## Check System Requirements
66

@@ -16,23 +16,23 @@ Choose one of the following providers and deploy a new Kubernetes cluster:
1616

1717
Reference [this table](http://kubernetes.io/v1.1/docs/getting-started-guides/#table-of-solutions) in the official Kubernetes documentation for a more extensive (but still non-exhaustive) list of Kubernetes provisioning options supported by the project or the community.
1818

19-
## Install Deis Platform
19+
## Install Deis Workflow
2020

21-
Now that you've finished provisioning a cluster, please [Install the Deis Platform][install deis].
21+
Now that you've finished provisioning a cluster, please [Install Deis Workflow][install deis].
2222

2323
## Configure DNS
2424

2525
See [Configuring DNS][] for more information on properly setting up your DNS records with Deis.
2626

2727
## Register a User
2828

29-
Once your cluster has been provisioned and the Deis Platform has been installed, you can
29+
Once your cluster has been provisioned and Deis Workflow has been installed, you can
3030
[install the client][client] and [register your first user][register]!
3131

3232

3333
[client]: ../using-deis/installing-the-client.md
3434
[configuring object storage]: configuring-object-storage.md
3535
[configuring dns]: ../managing-deis/configuring-dns.md
36-
[install deis]: installing-the-deis-platform.md
36+
[install deis]: installing-deis-workflow.md
3737
[register]: ../using-deis/registering-a-user.md
3838
[system requirements]: system-requirements.md

src/reference-guide/terms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ The Controller stack includes:
5555

5656
- Django API Server for handling API calls
5757

58-
Follow the [Installing Deis](../installing-deis/installing-the-deis-platform.md) guide to create your own private Deis controller.
58+
Follow the [Installing Deis](../installing-deis/installing-deis-workflow.md) guide to create your own private Deis controller.
5959

6060

6161
## Key

0 commit comments

Comments
 (0)