From 60ceb9b4e2fed31d56d44a51b62fe8e6e40f11d0 Mon Sep 17 00:00:00 2001 From: Logan V Date: Tue, 18 Oct 2016 16:31:27 -0500 Subject: [PATCH] Do not extend lists in AIO config Extending lists in openstack_user_config creates broken overrides, because it will take the base AIO config and then, for example, add your overrides to the list of cidr_networks, etc. By turning off list extend we will have a usable path to override the openstack_user_config file deployed by the AIO bootstrap role. Change-Id: Ica90896dfb3f85bde869023ca9e2d4898d5f6201 --- tests/roles/bootstrap-host/tasks/prepare_aio_config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/roles/bootstrap-host/tasks/prepare_aio_config.yml b/tests/roles/bootstrap-host/tasks/prepare_aio_config.yml index 091bf01f99..90ce767360 100644 --- a/tests/roles/bootstrap-host/tasks/prepare_aio_config.yml +++ b/tests/roles/bootstrap-host/tasks/prepare_aio_config.yml @@ -41,6 +41,7 @@ dest: "/etc/openstack_deploy/openstack_user_config.yml" config_overrides: "{{ openstack_user_config_overrides | default({}) }}" config_type: "yaml" + list_extend: false tags: - deploy-openstack-user-config