kayobe/ansible/roles/kolla-bifrost/tasks/main.yml
Pierre Riteau ea565393a5 Fix typos in task names
Change-Id: I4e9030c7786e8c164e83d2d1d56ac3b362597f67
2018-09-28 18:15:45 +01:00

17 lines
507 B
YAML

---
- name: Ensure the Kolla Bifrost configuration directories exist
file:
path: "{{ kolla_node_custom_config_path }}/bifrost"
state: directory
mode: 0750
- name: Ensure the Kolla Bifrost configuration files exist
template:
src: "{{ item.src }}"
dest: "{{ kolla_node_custom_config_path }}/bifrost/{{ item.dest }}"
mode: 0640
with_items:
- { src: bifrost.yml.j2, dest: bifrost.yml }
- { src: dib.yml.j2, dest: dib.yml }
- { src: servers.yml.j2, dest: servers.yml }