From a577ed53203234cafe87d873e4db0fe24a1f957e Mon Sep 17 00:00:00 2001 From: Mohammed Naser Date: Tue, 5 Jun 2018 17:34:15 -0400 Subject: [PATCH] Add galera_address to list of variables Previously, we had a _galera_address for every project, however, it looks like the patches to move the creation of the database inside the roles have worked great, but their testing patches inside this repo. have dropped the usage of the address which means that the service is configured with 127.0.0.1 (the fallback if none is provided). This patch fixes this by adding that variable so that everything can go through smoothly. Therefore, the removal of future _galera_address variables will not affect things. Change-Id: Ib180fc3a7cbae28b413094b444f7d528b584c9ed --- test-vars.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-vars.yml b/test-vars.yml index bce7f394..af3961c7 100644 --- a/test-vars.yml +++ b/test-vars.yml @@ -74,6 +74,7 @@ lxc_kernel_options: - { key: 'fs.inotify.max_user_instances', value: 1024 } # Galera Settings +galera_address: "{{ test_galera_host }}" galera_root_password: secrete galera_root_user: root galera_innodb_buffer_pool_size: 256M @@ -169,7 +170,6 @@ glance_service_port: 9292 glance_service_user_name: glance glance_container_mysql_password: "SuperSecrete" glance_developer_mode: true -glance_galera_address: "{{ test_galera_host }}" glance_git_install_branch: "{{ test_branch }}" glance_profiler_hmac_key: "secrete" glance_oslomsg_rpc_password: "{{ oslomsg_rpc_password }}"