From 0ad2f666c020bc0bdbf9d866ae146de5a7032fa7 Mon Sep 17 00:00:00 2001 From: Paul Bourke Date: Mon, 6 Jul 2015 16:00:25 +0000 Subject: [PATCH] Fix incorrect database_address variable in globals.yml A typo exists here which results in the following error: TASK: [database | Creating haproxy mysql user] ******************************** fatal: [localhost] => One or more undefined variables: 'keystone_internal_address' is undefined FATAL: all hosts have already failed -- aborting Change-Id: Ib8e88ca5d755d388a80f06b45e8ea80891f70eb3 Closes-Bug: #1471825 --- etc/kolla/globals.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/kolla/globals.yml b/etc/kolla/globals.yml index cf95ebd218..4a0b8dddc0 100644 --- a/etc/kolla/globals.yml +++ b/etc/kolla/globals.yml @@ -19,7 +19,7 @@ kolla_internal_address: "10.10.10.254" #################### # Database options #################### -database_address: "{{ keystone_internal_address }}" +database_address: "{{ kolla_internal_address }}" database_user: "root"