diff --git a/templates/gnocchi.conf.j2 b/templates/gnocchi.conf.j2 index 61b1c30..5cb1334 100644 --- a/templates/gnocchi.conf.j2 +++ b/templates/gnocchi.conf.j2 @@ -5,6 +5,7 @@ use_stderr = False debug = {{ debug }} fatal_deprecations = {{ gnocchi_fatal_deprecations }} +coordination_url = {{ gnocchi_coordination_url }} [api] auth_mode = {{ gnocchi_auth_mode }} @@ -42,7 +43,6 @@ memcache_secret_key = {{ memcached_encryption_key }} [storage] driver = {{ gnocchi_storage_driver }} -coordination_url = {{ gnocchi_coordination_url }} {% if gnocchi_storage_driver == 'file' %} ############ ## File Storage diff --git a/tests/test-install-gnocchi.yml b/tests/test-install-gnocchi.yml index 89c9fca..f778f11 100644 --- a/tests/test-install-gnocchi.yml +++ b/tests/test-install-gnocchi.yml @@ -21,7 +21,8 @@ - common/test-vars.yml pre_tasks: - include_tasks: common/create-grant-db.yml - db_password: "{{ gnocchi_container_mysql_password }}" - db_name: "gnocchi" + vars: + db_password: "{{ gnocchi_container_mysql_password }}" + db_name: "gnocchi" roles: - role: "os_gnocchi"