From 087c432068340f38aa0fdc46c2d72bdea1fb980c Mon Sep 17 00:00:00 2001 From: SamYaple Date: Tue, 1 Mar 2016 15:49:15 +0000 Subject: [PATCH] Change default CONFIG_STRATEGY Due to the fact COPY_ONCE is not how most people expect the container to work, as well as causing additional delays in the reconfigure process by needing to delete and recreate teh container, we should default to COPY_ALWAYS. It is both how operators and deployers expect things to work and allows a quick restart to pull in a new config. TrivialFix Change-Id: Ie5f043fc66aa85378f456017c9e31ddbbe6d8880 --- ansible/group_vars/all.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/group_vars/all.yml b/ansible/group_vars/all.yml index 0ddc191c50..9ca55381a6 100644 --- a/ansible/group_vars/all.yml +++ b/ansible/group_vars/all.yml @@ -15,7 +15,7 @@ node_config_directory: "/etc/kolla" # Kolla options ################### # Valid options are [ COPY_ONCE, COPY_ALWAYS ] -config_strategy: "COPY_ONCE" +config_strategy: "COPY_ALWAYS" # Valid options are [ centos, fedora, oraclelinux, ubuntu ] kolla_base_distro: "centos"