Skip to content

Commit a2c7087

Browse files
committed
Order steps for deis installation (vagrant)
1 parent de812f1 commit a2c7087

1 file changed

Lines changed: 14 additions & 12 deletions

File tree

README.md

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -50,36 +50,38 @@ This instructs Vagrant to spin up 3 VMs. To be able to connect to the VMs, you m
5050
$ ssh-add ~/.vagrant.d/insecure_private_key
5151
```
5252

53-
## Configure Deis
54-
55-
Before Deis will start successfully, there are a few administrative settings we need to provide.
53+
## Install deisctl
5654

57-
Set the default domain used to anchor your applications. For a Vagrant environment, use `local3.deisapp.com` as it will resolve to your local routers:
55+
Install the [deisctl utility](deisctl#installation) used to provision and operate Deis.
5856

5957
```console
60-
$ deisctl config platform set domain=local3.deisapp.com
58+
$ curl -sSL http://deis.io/deisctl/install.sh | sh
6159
```
6260

63-
If you want to allow `deis run` for one-off admin commands, you must provide an SSH private key that allows Deis to gather container logs on CoreOS hosts:
61+
Export `DEISCTL_TUNNEL` so you can connect to one of the VMs using the `deisctl` client on your workstation.
6462

6563
```console
66-
$ deisctl config platform set sshPrivateKey=~/.vagrant.d/insecure_private_key
64+
$ export DEISCTL_TUNNEL=172.17.8.100
6765
```
6866

69-
## Provision Deis
67+
## Configure Deis
7068

71-
Install the [deisctl utility](deisctl#installation) used to provision and operate Deis.
69+
Before Deis will start successfully, there are a few administrative settings we need to provide.
70+
71+
Set the default domain used to anchor your applications. For a Vagrant environment, use `local3.deisapp.com` as it will resolve to your local routers:
7272

7373
```console
74-
$ curl -sSL http://deis.io/deisctl/install.sh | sh
74+
$ deisctl config platform set domain=local3.deisapp.com
7575
```
7676

77-
Export `DEISCTL_TUNNEL` so you can connect to one of the VMs using the `deisctl` client on your workstation.
77+
If you want to allow `deis run` for one-off admin commands, you must provide an SSH private key that allows Deis to gather container logs on CoreOS hosts:
7878

7979
```console
80-
$ export DEISCTL_TUNNEL=172.17.8.100
80+
$ deisctl config platform set sshPrivateKey=~/.vagrant.d/insecure_private_key
8181
```
8282

83+
## Provision Deis
84+
8385
Use `deisctl install platform` to install all Deis components across the cluster, then `deisctl start platform` to start them.
8486

8587
```console

0 commit comments

Comments
 (0)