Previously shared kolla-ansible's kolla_config_path, now uses kolla_build_config_path. Also adds a variable, config_path, which sets a base path for configuration on the remote hosts.
10 lines
312 B
YAML
10 lines
312 B
YAML
---
|
|
- name: Ensure the Kolla build configuration files exist
|
|
template:
|
|
src: "{{ item.src }}"
|
|
dest: "{{ kolla_build_config_path }}/{{ item.dest }}"
|
|
mode: 0644
|
|
with_items:
|
|
- { src: kolla-build.conf.j2, dest: kolla-build.conf }
|
|
- { src: template-override.j2.j2, dest: template-override.j2 }
|