You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-12Lines changed: 14 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,36 +50,38 @@ This instructs Vagrant to spin up 3 VMs. To be able to connect to the VMs, you m
50
50
$ ssh-add ~/.vagrant.d/insecure_private_key
51
51
```
52
52
53
-
## Configure Deis
54
-
55
-
Before Deis will start successfully, there are a few administrative settings we need to provide.
53
+
## Install deisctl
56
54
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.
58
56
59
57
```console
60
-
$ deisctl config platform set domain=local3.deisapp.com
58
+
$ curl -sSL http://deis.io/deisctl/install.sh | sh
61
59
```
62
60
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.
64
62
65
63
```console
66
-
$ deisctl config platform set sshPrivateKey=~/.vagrant.d/insecure_private_key
64
+
$ export DEISCTL_TUNNEL=172.17.8.100
67
65
```
68
66
69
-
## Provision Deis
67
+
## Configure Deis
70
68
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:
72
72
73
73
```console
74
-
$ curl -sSL http://deis.io/deisctl/install.sh | sh
74
+
$ deisctl config platform set domain=local3.deisapp.com
75
75
```
76
76
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:
78
78
79
79
```console
80
-
$ export DEISCTL_TUNNEL=172.17.8.100
80
+
$ deisctl config platform set sshPrivateKey=~/.vagrant.d/insecure_private_key
81
81
```
82
82
83
+
## Provision Deis
84
+
83
85
Use `deisctl install platform` to install all Deis components across the cluster, then `deisctl start platform` to start them.
0 commit comments