diff --git a/README.rst b/README.rst index bbc1ce12..c9f5717d 100644 --- a/README.rst +++ b/README.rst @@ -79,10 +79,14 @@ Edit keystone section in `/etc/kuryr/kuryr.conf`, replace ADMIN_PASSWORD: :: - www_authenticate_uri = http://127.0.0.1:35357/v2.0 - admin_user = admin - admin_tenant_name = service - admin_password = ADMIN_PASSWORD + auth_type = v3password + auth_url = http://127.0.0.1:5000 + region_name = regionOne + user_doamin_name = Default + username = admin + project_domain_name = Default + project_name = service + password = ADMIN_PASSWORD In the same file uncomment the `bindir` parameter with the path for the Kuryr diff --git a/kuryr/tests/unit/test_utils.py b/kuryr/tests/unit/test_utils.py index 747cbb88..e9f90cd1 100644 --- a/kuryr/tests/unit/test_utils.py +++ b/kuryr/tests/unit/test_utils.py @@ -27,7 +27,7 @@ class TestKuryrUtils(base.TestCase): def setUp(self): super(TestKuryrUtils, self).setUp() self.fake_url = 'http://127.0.0.1:9696' - self.fake_auth_url = 'http://127.0.0.1:35357/v2.0' + self.fake_auth_url = 'http://127.0.0.1:5000' def test_get_subnetpool_name(self): fake_subnet_cidr = "10.0.0.0/16"