Fix syntax error in role octavia-controller-config
Commit b00b866564
introduced a syntax
error where template expression brackets were not wrapped in quotes.
Change-Id: I638473ed7f9317d65fcc00d1046358505f6dfc71
This commit is contained in:
@@ -9,7 +9,7 @@
|
|||||||
path: "{{ octavia_confd_prefix }}/etc/octavia/conf.d/common/post-deploy.conf"
|
path: "{{ octavia_confd_prefix }}/etc/octavia/conf.d/common/post-deploy.conf"
|
||||||
section: controller_worker
|
section: controller_worker
|
||||||
option: amp_boot_network_list
|
option: amp_boot_network_list
|
||||||
value: {{ lb_mgmt_net_id }}
|
value: "{{ lb_mgmt_net_id }}"
|
||||||
- name: setting [controller_worker]/amp_secgroup_list
|
- name: setting [controller_worker]/amp_secgroup_list
|
||||||
become: true
|
become: true
|
||||||
become_user: root
|
become_user: root
|
||||||
@@ -17,7 +17,7 @@
|
|||||||
path: "{{ octavia_confd_prefix }}/etc/octavia/conf.d/common/post-deploy.conf"
|
path: "{{ octavia_confd_prefix }}/etc/octavia/conf.d/common/post-deploy.conf"
|
||||||
section: controller_worker
|
section: controller_worker
|
||||||
option: amp_secgroup_list
|
option: amp_secgroup_list
|
||||||
value: {{ lb_mgmt_secgroup_id }}
|
value: "{{ lb_mgmt_secgroup_id }}"
|
||||||
- name: making sure octavia health manager configuration directory exists
|
- name: making sure octavia health manager configuration directory exists
|
||||||
file: path="{{octavia_confd_prefix}}/etc/octavia/conf.d/octavia-health-manager" state=directory
|
file: path="{{octavia_confd_prefix}}/etc/octavia/conf.d/octavia-health-manager" state=directory
|
||||||
become: true
|
become: true
|
||||||
|
Reference in New Issue
Block a user