From 179bcd17115b8dab6dcee46a36d561bd807dcb5a Mon Sep 17 00:00:00 2001 From: Yikun Jiang Date: Wed, 10 Apr 2019 16:50:13 +0800 Subject: [PATCH] Fix auth config in "Install Cyborg from Source" We should add the auth_type under the keystone_auth section. Otherwise, the config of auth_url/username/password... will not work. See more in keystoneauth official doc [1]. [1] https://docs.openstack.org/keystoneauth/latest/plugin-options.html#using-plugins-via-config-file Change-Id: Icf0aeb8875f503863fc9dea2de29de7afe617c3b --- doc/source/install/from-source.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/source/install/from-source.rst b/doc/source/install/from-source.rst index bf60b357..d35bfc41 100644 --- a/doc/source/install/from-source.rst +++ b/doc/source/install/from-source.rst @@ -97,6 +97,7 @@ Install and Configure password = cyborg username = cyborg auth_url = http://%OPENSTACK_HOST_IP%/identity + auth_type = password ..