summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancisco Redondo Marchena <francisco.marchena@codethink.co.uk>2014-11-14 16:21:00 +0000
committerRichard Ipsum <richardipsum@fastmail.co.uk>2014-11-27 18:12:13 +0000
commit703c614ef09342c9083002dc662845400a0e62ce (patch)
tree528e0894c472485f32b2fc058cd4a962c85fdbd1
parentfed99943bf86bdceb3cf3542424f2ada467ef538 (diff)
downloaddefinitions-703c614ef09342c9083002dc662845400a0e62ce.tar.gz
Fix nova configuration adding ip address for nova
Nova is expecting its ipaddress is configured as an ipaddress and not a name, i.e. it is expecting 127.0.0.1 and it will fail with localhost. See my_ip field in /etc/nova/nova.conf
-rw-r--r--clusters/openstack-cluster.morph2
1 files changed, 1 insertions, 1 deletions
diff --git a/clusters/openstack-cluster.morph b/clusters/openstack-cluster.morph
index 583342d7..d47e49f6 100644
--- a/clusters/openstack-cluster.morph
+++ b/clusters/openstack-cluster.morph
@@ -26,8 +26,8 @@ systems:
GLANCE_PUBLIC_URL: http:\/\/localhost:9292
GLANCE_INTERNAL_URL: http:\/\/localhost:9292
GLANCE_ADMIN_URL: http:\/\/localhost:9292
- NOVA_HOST: localhost
GLANCE_HOST: localhost
+ NOVA_HOST: 127.0.0.1
NOVA_SERVICE_USER: nova
NOVA_SERVICE_PASSWORD: veryinsecure
NOVA_PUBLIC_URL: \"http:\/\/localhost:8774\/v2\/\%\(tenant_id\)s\"