summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python-nova
diff options
context:
space:
mode:
authorLiam R. Howlett <Liam.Howlett@WindRiver.com>2014-09-19 15:52:17 -0400
committerBruce Ashfield <bruce.ashfield@windriver.com>2014-09-22 11:46:43 -0400
commit1c34736247f8ae18d054cfecfec54152bf27f1d9 (patch)
treef5c2a952d804fc43c00e1be89751551b579aa6c0 /meta-openstack/recipes-devtools/python/python-nova
parentbf51fa4f053a6aecb816ed7b4dcca64e9bd5b9b3 (diff)
downloadmeta-cloud-services-1c34736247f8ae18d054cfecfec54152bf27f1d9.tar.gz
keystone: Change packages configuration to use apache keystone.
This commit changes all required configurations to use keystone running on apache. The following packages configurations were modified for keystone running on apache: python-neutron, python-nova, tempest, python-swift, python-rally, python-heat, python-glance, python-cinder, python-ceilmoeter, python-horizon. Signed-off-by: Liam R. Howlett <Liam.Howlett@WindRiver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-nova')
-rw-r--r--meta-openstack/recipes-devtools/python/python-nova/nova.conf6
-rw-r--r--meta-openstack/recipes-devtools/python/python-nova/openrc4
2 files changed, 4 insertions, 6 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-nova/nova.conf b/meta-openstack/recipes-devtools/python/python-nova/nova.conf
index 09ae44c..3cb143d 100644
--- a/meta-openstack/recipes-devtools/python/python-nova/nova.conf
+++ b/meta-openstack/recipes-devtools/python/python-nova/nova.conf
@@ -50,7 +50,7 @@ neutron_auth_strategy=keystone
50neutron_admin_tenant_name=service 50neutron_admin_tenant_name=service
51neutron_admin_username=neutron 51neutron_admin_username=neutron
52neutron_admin_password=password 52neutron_admin_password=password
53neutron_admin_auth_url=http://%CONTROLLER_IP%:5000/v2.0/ 53neutron_admin_auth_url=http://%CONTROLLER_IP%:8081/keystone/main/v2.0
54 54
55# Disables reporting of network state to the controller 55# Disables reporting of network state to the controller
56vif_plugging_timeout=10 56vif_plugging_timeout=10
@@ -85,9 +85,7 @@ server_proxyclient_address=%COMPUTE_IP%
85 85
86auth_strategy=keystone 86auth_strategy=keystone
87[keystone_authtoken] 87[keystone_authtoken]
88auth_host = %CONTROLLER_IP% 88identity_uri=http://127.0.0.1:8081/keystone/admin
89auth_port = 35357
90auth_protocol = http
91admin_tenant_name = %SERVICE_TENANT_NAME% 89admin_tenant_name = %SERVICE_TENANT_NAME%
92admin_user = %SERVICE_USER% 90admin_user = %SERVICE_USER%
93admin_password = %SERVICE_PASSWORD% 91admin_password = %SERVICE_PASSWORD%
diff --git a/meta-openstack/recipes-devtools/python/python-nova/openrc b/meta-openstack/recipes-devtools/python/python-nova/openrc
index 35327ac..e8507f2 100644
--- a/meta-openstack/recipes-devtools/python/python-nova/openrc
+++ b/meta-openstack/recipes-devtools/python/python-nova/openrc
@@ -1,8 +1,8 @@
1export OS_TENANT_NAME=admin 1export OS_TENANT_NAME=admin
2export OS_USERNAME=admin 2export OS_USERNAME=admin
3export OS_PASSWORD=%OS_PASSWORD% 3export OS_PASSWORD=%OS_PASSWORD%
4export OS_AUTH_URL="http://%CONTROLLER_HOST%:5000/v2.0/" 4export OS_AUTH_URL="http://%CONTROLLER_HOST%:8081/keystone/main/v2.0/"
5export SERVICE_ENDPOINT="http://%CONTROLLER_HOST%:35357/v2.0" 5export SERVICE_ENDPOINT="http://%CONTROLLER_HOST%:8081/keystone/admin/v2.0"
6export SERVICE_TOKEN=%SERVICE_TOKEN% 6export SERVICE_TOKEN=%SERVICE_TOKEN%
7 7
8function get_field() { 8function get_field() {