Skip to content

Commit 49e3e7f

Browse files
Merge pull request #19227 from praveenkumar/issue_19226
Issue #19226 Removed docker machine doc from cluster up usage message
2 parents 685ba87 + 156168d commit 49e3e7f

File tree

5 files changed

+11
-127
lines changed

5 files changed

+11
-127
lines changed

docs/cluster_up_down.md

+6-42
Original file line numberDiff line numberDiff line change
@@ -174,18 +174,11 @@ and download a [compatible version of Docker](#prerequisites).
174174
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.
175175
5. Open Terminal and run
176176
```
177-
$ oc cluster up --docker-machine=openshift
177+
$ docker-machine create openshift
178+
$ docker-machine start openshift
178179
```
179180
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:
189182
190183
* Setup the Docker environment for the machine you wish to use, and then run `oc cluster up` and `oc cluster down`:
191184
@@ -198,18 +191,6 @@ To start/stop OpenShift again, either:
198191
$ oc cluster down
199192
```
200193
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-
213194
### Windows with Docker for Windows
214195
215196
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).
252233
5. Open a Command window as Administrator (for most drivers, docker-machine on Windows requires administrator privileges)
253234
and run:
254235
```
255-
C:\> oc cluster up --docker-machine=openshift
236+
C:\> docker-machine create openshift
237+
C:\> docker-machine start openshift
256238
```
257239
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:
267241
268242
* Setup the Docker environment for the machine you wish to use, and then run `oc cluster up` and `oc cluster down`:
269243
```
@@ -275,16 +249,6 @@ To start/stop OpenShift again, either:
275249
C:\> oc cluster down
276250
```
277251
278-
* Specify the Docker machine name as an argument to `oc cluster up` and `oc cluster down`:
279-
280-
```
281-
C:\> oc cluster up --docker-machine=openshift
282-
283-
...
284-
285-
C:\> oc cluster down --docker-machine=openshift
286-
```
287-
288252
## Persistent Volumes
289253
290254
(Available starting origin release 1.5.0-alpha.2)

pkg/oc/bootstrap/docker/down.go

+2-8
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,11 @@ const CmdDownRecommendedName = "down"
1919

2020
var (
2121
cmdDownLong = templates.LongDesc(`
22-
Stops the container running OpenShift on Docker and associated containers.
23-
24-
If you started your OpenShift with a specific docker-machine, you need to specify the
25-
same machine using the --docker-machine argument.`)
22+
Stops the container running OpenShift on Docker and associated containers.`)
2623

2724
cmdDownExample = templates.Examples(`
2825
# Stop local OpenShift cluster
29-
%[1]s
30-
31-
# Stop cluster running on Docker machine 'mymachine'
32-
%[1]s --docker-machine=mymachine`)
26+
%[1]s`)
3327
)
3428

3529
type ClientStopConfig struct {

pkg/oc/bootstrap/docker/errors/docker.go

-67
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package errors
22

33
import (
44
"fmt"
5-
"os/exec"
65
"runtime"
76
)
87

@@ -11,11 +10,6 @@ func ErrNoDockerClient(err error) error {
1110
return NewError("cannot obtain a Docker client").WithCause(err).WithSolution(noDockerClientSolution())
1211
}
1312

14-
// ErrNoDockerMachineClient is returned when a Docker client cannot be obtained from the given Docker machine
15-
func ErrNoDockerMachineClient(name string, err error) error {
16-
return NewError("cannot obtain a client for Docker machine %q", name).WithCause(err).WithSolution(noDockerMachineClientSolution())
17-
}
18-
1913
// ErrKubeConfigNotWriteable is returned when the file pointed to by KUBECONFIG cannot be created or written to
2014
func ErrKubeConfigNotWriteable(file string, err error) error {
2115
return NewError("KUBECONFIG is set to a file that cannot be created or modified: %s", file).WithCause(err).WithSolution(kubeConfigSolution())
@@ -41,20 +35,6 @@ Please install Docker tools by following instructions at:
4135
4236
Once installed, run this command with the --create-machine
4337
argument to create a new Docker machine that will run OpenShift.
44-
`
45-
NoDockerMachineMacSolution = `
46-
To create a new Docker machine to run OpenShift, run this command again with
47-
the --create-machine argument. This will create a Docker machine named
48-
'openshift'.
49-
50-
To use a different machine name, specify the --machine-name=NAME argument.
51-
52-
If you wish to use an existing Docker machine, enable it before running this
53-
command by executing:
54-
55-
eval $(docker-machine env NAME)
56-
57-
where NAME is the name of your Docker machine.
5838
`
5939
NoDockerWindowsSolution = `
6040
Please install Docker tools by following instructions at:
@@ -63,43 +43,18 @@ Please install Docker tools by following instructions at:
6343
6444
Once installed, run this command with the --create-machine argument to create a
6545
new Docker machine that will run OpenShift.
66-
`
67-
NoDockerMachineWindowsSolution = `
68-
To create a new Docker machine to run OpenShift, run this command again with
69-
the --create-machine argument. This will create a Docker machine named
70-
'openshift'.
71-
72-
To use a different machine name, specify the --machine-name=NAME argument.
73-
74-
If you wish to use an existing Docker machine, enable it before running this
75-
command by executing:
76-
77-
docker-machine env
78-
79-
where NAME is the name of your Docker machine.
8046
`
8147
NoDockerLinuxSolution = `
8248
Ensure that Docker is installed and accessible in your environment.
8349
Use your package manager or follow instructions at:
8450
8551
https://docs.docker.com/linux/
8652
`
87-
88-
NoDockerMachineClientSolution = `
89-
Ensure that the Docker machine is available and running. You can also create a
90-
new Docker machine by specifying the --create-machine flag.
91-
`
92-
9353
InvalidInsecureRegistryArgSolution = `
9454
Ensure that the Docker daemon is running with the following argument:
9555
--insecure-registry 172.30.0.0/16
9656
`
9757

98-
InvalidInsecureRegistryArgSolutionDockerMachine = InvalidInsecureRegistryArgSolution + `
99-
You can run this command with --create-machine to create a machine with the
100-
right argument.
101-
`
102-
10358
KubeConfigSolutionUnix = `
10459
You can unset the KUBECONFIG variable to use the default location for it:
10560
unset KUBECONFIG
@@ -117,37 +72,18 @@ Or you can set its value to a file that can be written to:
11772
`
11873
)
11974

120-
func hasDockerMachine() bool {
121-
binary := "docker-machine"
122-
if runtime.GOOS == "windows" {
123-
binary += ".exe"
124-
}
125-
_, err := exec.LookPath(binary)
126-
return err == nil
127-
}
128-
12975
func noDockerClientSolution() string {
13076
switch runtime.GOOS {
13177
case "darwin":
132-
if hasDockerMachine() {
133-
return NoDockerMachineMacSolution
134-
}
13578
return NoDockerMacSolution
13679
case "windows":
137-
if hasDockerMachine() {
138-
return NoDockerMachineWindowsSolution
139-
}
14080
return NoDockerWindowsSolution
14181
case "linux":
14282
return NoDockerLinuxSolution
14383
}
14484
return fmt.Sprintf("Platform %s is not supported by this command", runtime.GOOS)
14585
}
14686

147-
func noDockerMachineClientSolution() string {
148-
return NoDockerMachineClientSolution
149-
}
150-
15187
func kubeConfigSolution() string {
15288
switch runtime.GOOS {
15389
case "windows":
@@ -158,8 +94,5 @@ func kubeConfigSolution() string {
15894
}
15995

16096
func invalidInsecureRegistryArgSolution() string {
161-
if hasDockerMachine() {
162-
return InvalidInsecureRegistryArgSolutionDockerMachine
163-
}
16497
return InvalidInsecureRegistryArgSolution
16598
}

pkg/oc/bootstrap/docker/status.go

+2-8
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,11 @@ const CmdStatusRecommendedName = "status"
2727

2828
var (
2929
cmdStatusLong = templates.LongDesc(`
30-
Show the status of the local OpenShift cluster.
31-
32-
If you started your OpenShift with a specific docker-machine, you need to specify the
33-
same machine using the --docker-machine argument.`)
30+
Show the status of the local OpenShift cluster.`)
3431

3532
cmdStatusExample = templates.Examples(`
3633
# See status of local OpenShift cluster
37-
%[1]s
38-
39-
# See status of OpenShift cluster running on Docker machine 'mymachine'
40-
%[1]s --docker-machine=mymachine`)
34+
%[1]s`)
4135
)
4236

4337
// NewCmdStatus implements the OpenShift cluster status command.

pkg/oc/cli/cmd/cluster/cluster.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ var (
2727
'join' command on another machine to connect to the first cluster.
2828
2929
To use an existing Docker connection, ensure that Docker commands are working and that you
30-
can create new containers. For OS X and Windows clients, a docker-machine with the VirtualBox
31-
driver can be created for you using the --create-machine option.
30+
can create new containers.
3231
3332
By default, etcd data will not be preserved between container restarts. If you wish to
3433
preserve your data, specify a value for --host-data-dir and the --use-existing-config flag.

0 commit comments

Comments
 (0)