kayobe/ansible/roles/kolla-bifrost/tasks/main.yml
Mark Goddard 20a8436d0f Don't install bifrost into local virtualenv
Bifrost is no longer required to be installed locally.
2017-08-16 15:22:54 +00:00

17 lines
506 B
YAML

---
- name: Ensure the Kolla Bifrost configuration directores 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 }