From cad66b03231beba779581892af0317c6dcde2f2b Mon Sep 17 00:00:00 2001 From: Manuel Buil Date: Mon, 23 Sep 2019 15:12:35 +0200 Subject: [PATCH] Update env. variables in the documentation This patch: https://github.com/openstack/bifrost/commit/6df83e0bc56d519bb6d37190228e0977d89da6a3 changes the variables that must be exported to use ironic in standalone mode. The old env. variables: export OS_URL=http://localhost:6385/ export OS_TOKEN='fake-token' must be replaced by: export OS_ENDPOINT=http://localhost:6385/ export OS_AUTH_TYPE=none Change-Id: Ia2ae95af66f701198d5e3174a7cb5564664ae038 Signed-off-by: Manuel Buil --- doc/source/contributor/dev-quickstart.rst | 4 ++-- doc/source/install/standalone.rst | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/source/contributor/dev-quickstart.rst b/doc/source/contributor/dev-quickstart.rst index 6f75740c71..62b7fc2ccc 100644 --- a/doc/source/contributor/dev-quickstart.rst +++ b/doc/source/contributor/dev-quickstart.rst @@ -204,8 +204,8 @@ Step 1: Create a Python virtualenv #. Export some ENV vars so the client will connect to the local services that you'll start in the next section:: - export OS_TOKEN=fake-token - export OS_URL=http://localhost:6385/ + export OS_AUTH_TYPE=none + export OS_ENDPOINT=http://localhost:6385/ Next, install and configure system dependencies. diff --git a/doc/source/install/standalone.rst b/doc/source/install/standalone.rst index 3112715cc0..85197eedc1 100644 --- a/doc/source/install/standalone.rst +++ b/doc/source/install/standalone.rst @@ -63,12 +63,12 @@ Steps to start a deployment are pretty similar to those when using Compute: #. To use the `openstack baremetal CLI `_, set up these environment variables. Since no authentication strategy is - being used, the value can be any string for OS_TOKEN. OS_URL is + being used, the value none must be set for OS_AUTH_TYPE. OS_ENDPOINT is the URL of the ironic-api process. For example:: - export OS_TOKEN=fake-token - export OS_URL=http://localhost:6385/ + export OS_AUTH_TYPE=none + export OS_ENDPOINT=http://localhost:6385/ #. Create a node in Bare Metal service. At minimum, you must specify the driver name (for example, ``ipmi``). You can also specify all the required