From 25cada1d6700dfcea1a92433d54a0fc1abdd1965 Mon Sep 17 00:00:00 2001 From: Tobias Urdin Date: Wed, 18 Jul 2018 10:30:55 +0200 Subject: [PATCH] Replace port 35357 with 5000 Depends-On: https://review.openstack.org/#/c/571076/ Change-Id: Id218e5f2b4e29514d6da15f648c1a3db5bcbdea9 --- all-in-one.sh | 2 +- manifests/config.pp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/all-in-one.sh b/all-in-one.sh index 6d7734dd2..3f9dd1e37 100755 --- a/all-in-one.sh +++ b/all-in-one.sh @@ -82,7 +82,7 @@ export OS_PROJECT_NAME=openstack export OS_TENANT_NAME=openstack export OS_USERNAME=admin export OS_PASSWORD=a_big_secret -export OS_AUTH_URL=http://127.0.0.1:35357/v3 +export OS_AUTH_URL=http://127.0.0.1:5000/v3 export OS_IDENTITY_API_VERSION=3 EOF diff --git a/manifests/config.pp b/manifests/config.pp index 561ac3e07..f63f31571 100644 --- a/manifests/config.pp +++ b/manifests/config.pp @@ -75,5 +75,5 @@ class openstack_integration::config ( $base_url = "${proto}://${ip_for_url}" $keystone_auth_uri = "${base_url}:5000" - $keystone_admin_uri = "${base_url}:35357" + $keystone_admin_uri = "${base_url}:5000" }