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: docs/cluster_up_down.md
+6-42
Original file line number
Diff line number
Diff line change
@@ -174,18 +174,11 @@ and download a [compatible version of Docker](#prerequisites).
174
174
4. Create a new docker machine named `openshift` with appropriate resource constraints. See [Getting Started with Docker Machine](https://docs.docker.com/machine/get-started/#create-a-machine) for instructions.
175
175
5. Open Terminal and run
176
176
```
177
-
$ oc cluster up --docker-machine=openshift
177
+
$ docker-machine create openshift
178
+
$ docker-machine start openshift
178
179
```
179
180
180
-
OpenShift will start cluster on the docker machine you specified.
181
-
182
-
To stop the cluster, run:
183
-
184
-
```
185
-
$ oc cluster down --docker-machine=openshift
186
-
```
187
-
188
-
To start/stop OpenShift again, either:
181
+
To start/stop OpenShift cluster:
189
182
190
183
* Setup the Docker environment for the machine you wish to use, and then run `oc cluster up` and `oc cluster down`:
191
184
@@ -198,18 +191,6 @@ To start/stop OpenShift again, either:
198
191
$ oc cluster down
199
192
```
200
193
201
-
OR
202
-
203
-
* Specify the Docker machine name as an argument to `oc cluster up` and `oc cluster down`:
204
-
205
-
```
206
-
$ oc cluster up --docker-machine=openshift
207
-
208
-
...
209
-
210
-
$ oc cluster down --docker-machine=openshift
211
-
```
212
-
213
194
### Windows with Docker for Windows
214
195
215
196
1. Install [Docker for Windows](https://docs.docker.com/docker-for-windows/relase-notes/) making sure you meet the [prerequisites](https://docs.docker.com/docker-for-windows/#/what-to-know-before-you-install)
@@ -252,18 +233,11 @@ and download a [compatible version of Docker](#prerequisites).
252
233
5. Open a Command window as Administrator (for most drivers, docker-machine on Windows requires administrator privileges)
253
234
and run:
254
235
```
255
-
C:\> oc cluster up --docker-machine=openshift
236
+
C:\> docker-machine create openshift
237
+
C:\> docker-machine start openshift
256
238
```
257
239
258
-
OpenShift will start cluster on the docker machine you specified.
259
-
260
-
To stop the cluster, run:
261
-
262
-
```
263
-
C:\> oc cluster down --docker-machine=openshift
264
-
```
265
-
266
-
To start/stop OpenShift again, either:
240
+
To start/stop OpenShift cluster:
267
241
268
242
* Setup the Docker environment for the machine you wish to use, and then run `oc cluster up` and `oc cluster down`:
269
243
```
@@ -275,16 +249,6 @@ To start/stop OpenShift again, either:
275
249
C:\> oc cluster down
276
250
```
277
251
278
-
* Specify the Docker machine name as an argument to `oc cluster up` and `oc cluster down`:
0 commit comments