Skip to content

Commit

Permalink
Merge pull request #777 from dtantsur/master
Browse files Browse the repository at this point in the history
Stop recommending deprecated OS_URL
  • Loading branch information
Steven Hardy authored Aug 28, 2019
2 parents 4589dfb + cd2fc1d commit 096f691
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,18 +127,19 @@ master-2 Ready master 20m v1.12.4+50c2f2340a
For manual debugging via openstackclient, you can use the following, noting that the IP address is that of the bootstrap VM which is ephemeral and won't be available once the masters have been deployed:

```
export OS_TOKEN=fake-token
export OS_URL=http://172.22.0.2:6385/
export OS_AUTH_TYPE=none
export OS_ENDPOINT=http://172.22.0.2:6385/
openstack baremetal node list
...
```

Note that the OS_URL above refers to the provisioning network IP of the bootstrap VM, configured by `openshift-install` on the provisioning host. After the initial bootstrapping has completed this VM is destroyed, and Ironic services are started on the deployed cluster inside the baremetal operator.
Note that the OS_ENDPOINT above refers to the provisioning network IP of the bootstrap VM, configured by `openshift-install` on the provisioning host. After the initial bootstrapping has completed this VM is destroyed, and Ironic services are started on the deployed cluster inside the baremetal operator.

To access this instance, update OS_URL to the provisioning network IP on the master node that is running the baremetal-operator pod:
To access this instance, update OS_ENDPOINT to the provisioning network IP on the master node that is running the baremetal-operator pod:

```
export OS_URL=http://172.22.0.3:6385
export OS_AUTH_TYPE=none
export OS_ENDPOINT=http://172.22.0.3:6385
openstack baremetal node list
```

Expand Down

0 comments on commit 096f691

Please sign in to comment.