From cd2fc1dd11acf9fb89977556cf8a785b15201830 Mon Sep 17 00:00:00 2001 From: Dmitry Tantsur Date: Wed, 28 Aug 2019 15:42:27 +0200 Subject: [PATCH] Stop recommending deprecated OS_URL It is being removed in https://review.opendev.org/#/c/677795/. Use 'none' auth_type instead. --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 1c9a5232b..aef02ffb1 100644 --- a/README.md +++ b/README.md @@ -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 ```