From 7c0fd1c58d2ef8d0156ef1e926066b857ec69316 Mon Sep 17 00:00:00 2001 From: Daneyon Hansen Date: Thu, 9 Oct 2014 20:46:21 +0000 Subject: [PATCH] Closes-Bug: 1379513 Previously the glance-base script did not configure the registry host IP. This causes API to try connecting to registry on localhost. Since registry is bound to MY_IP, api is unable to connect to registry. This change adds support for the glance-base script to configure the registry_host parameter in api.conf to MY_IP. Change-Id: I1c711ff8aa95abec5ca306f03bd7e0a3883ca578 --- docker/glance/glance-base/config-glance.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docker/glance/glance-base/config-glance.sh b/docker/glance/glance-base/config-glance.sh index 2f78464bdb..f32602cfb3 100644 --- a/docker/glance/glance-base/config-glance.sh +++ b/docker/glance/glance-base/config-glance.sh @@ -75,3 +75,9 @@ for cfg in /etc/glance/glance-api.conf /etc/glance/glance-registry.conf; do "mysql://${GLANCE_DB_USER}:${GLANCE_DB_PASSWORD}@${MARIADB_PORT_3306_TCP_ADDR}/${GLANCE_DB_NAME}" done +for cfg in /etc/glance/glance-api.conf; do + crudini --set $cfg \ + DEFAULT \ + registry_host \ + $MY_IP +done