Skip to content

Commit bcd8d23

Browse files
author
likui
committed
update the default value of node_custom_config
The value of node_custom_config should is {{ node_config }}/config, when specified using --configdir Change-Id: I076b7d2c8980ddd3baa28f998f84a6b7005dc352
1 parent 1f8f9bd commit bcd8d23

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

ansible/group_vars/all.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ container_config_directory: "/var/lib/kolla/config_files"
1010
node_config: "{{ CONFIG_DIR | default('/etc/kolla') }}"
1111

1212
# The directory to merge custom config files the kolla's config files
13-
node_custom_config: "/etc/kolla/config"
13+
node_custom_config: "{{ node_config }}/config"
1414

1515
# The directory to store the config files on the destination node
1616
node_config_directory: "/etc/kolla"

etc/kolla/globals.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
#openstack_tag_suffix: ""
4444

4545
# Location of configuration overrides
46-
#node_custom_config: "/etc/kolla/config"
46+
#node_custom_config: "{{ node_config }}/config"
4747

4848
# This should be a VIP, an unused IP on your network that will float between
4949
# the hosts running keepalived for high-availability. If you want to run an
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
upgrade:
3+
- |
4+
update the default value of node_custom_config to {{ node_config }}/config,
5+
when specified using --configdir

0 commit comments

Comments
 (0)