From 535c72c73dc435c7f5253a74322db4419dd58461 Mon Sep 17 00:00:00 2001 From: Sam Yaple Date: Thu, 20 Aug 2015 17:09:54 +0000 Subject: [PATCH] Change default config location Currently we write configs to /opt/kolla/config on the destination node. This does not mesh with LSB so we adjust it to /etc/kolla Change-Id: I4b6683b3b707ebb25b064ba5162533ea5a35d977 Partially-Implements: blueprint update-configs --- ansible/group_vars/all.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/ansible/group_vars/all.yml b/ansible/group_vars/all.yml index 1c09a33830..1773b299e5 100644 --- a/ansible/group_vars/all.yml +++ b/ansible/group_vars/all.yml @@ -5,17 +5,14 @@ # https://github.com/ansible/ansible-modules-core/issues/1227 docker_api_version: "1.18" -# TODO(SamYaple): remove references to these variables in Ansible -kolla_directory: "/usr/share/kolla" -koalla_directory: "/usr/share/kolla" - # The "temp" files that are created before merge need to stay persistent due # to the fact that ansible will register a "change" if it has to create them # again. Persistent files allow for idempotency node_templates_directory: "/usr/share/kolla/templates" # The directory to store the config files on the destination node -node_config_directory: "/opt/kolla/config" +node_config_directory: "/etc/kolla" + ################### # Kolla options