From a1ab06d2446f7e540b2c02a9a7d7dcc39216d891 Mon Sep 17 00:00:00 2001 From: chenxing Date: Fri, 2 Aug 2019 09:53:45 +0800 Subject: [PATCH] Remove unnecessary option from group_vars/all.yml We often specific the project name after "{{ node_config_directory }}", for example, ``{{ node_config_directory }}/cinder-api/:{{ container_config_directory }}/:ro``. As the "{{ project }}" option is not configured, This line was generated with: ``/etc/kolla//cinder-api/:...`` There would be double slash exists. It's OK, but confusing. Change-Id: I82e6a91b2c541e38cf8e97896842149b31244688 Closes-Bug: #1838259 --- ansible/group_vars/all.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/ansible/group_vars/all.yml b/ansible/group_vars/all.yml index 9b5922f3e6..3440e42499 100644 --- a/ansible/group_vars/all.yml +++ b/ansible/group_vars/all.yml @@ -12,11 +12,8 @@ node_config: "{{ CONFIG_DIR | default('/etc/kolla') }}" # The directory to merge custom config files the kolla's config files node_custom_config: "/etc/kolla/config" -# The project to generate configuration files for -project: "" - # The directory to store the config files on the destination node -node_config_directory: "/etc/kolla/{{ project }}" +node_config_directory: "/etc/kolla" # The group which own node_config_directory, you can use a non-root # user to deploy kolla