33564a0097
During the Train cycle, Bifrost switched to using JSON-RPC by default for Ironic's internal communication [1], avoiding the need to install RabbitMQ. This simplifies things, so we may as well remove our custom configuration of RabbitMQ. [1] https://review.openstack.org/645093 Change-Id: I3107349530aa753d68fd59baaf13eb7dd5485ae6
37 lines
952 B
YAML
37 lines
952 B
YAML
---
|
|
- name: Ensuring config directories exist
|
|
file:
|
|
path: "{{ node_config_directory }}/{{ item }}"
|
|
state: "directory"
|
|
owner: "{{ config_owner_user }}"
|
|
group: "{{ config_owner_group }}"
|
|
mode: "0770"
|
|
become: true
|
|
with_items:
|
|
- "bifrost"
|
|
|
|
- name: Generate bifrost configs
|
|
merge_yaml:
|
|
sources:
|
|
- "{{ role_path }}/templates/{{ item }}.yml.j2"
|
|
- "{{ node_custom_config }}/{{ item }}.yml"
|
|
- "{{ node_custom_config }}/bifrost/{{ item }}.yml"
|
|
dest: "{{ node_config_directory }}/bifrost/{{ item }}.yml"
|
|
mode: "0660"
|
|
become: true
|
|
with_items:
|
|
- "bifrost"
|
|
- "dib"
|
|
- "servers"
|
|
|
|
- name: Template ssh keys
|
|
template:
|
|
src: "{{ item.src }}"
|
|
dest: "{{ node_config_directory }}/bifrost/{{ item.dest }}"
|
|
mode: "0660"
|
|
become: true
|
|
with_items:
|
|
- { src: "id_rsa", dest: "id_rsa" }
|
|
- { src: "id_rsa.pub", dest: "id_rsa.pub" }
|
|
- { src: "ssh_config", dest: "ssh_config" }
|