Andrey Shestakov f3e59083ab Ensure config directory exists for container ironic-pxe
Config directory for ironic-pxe should be created before copying files into it

Change-Id: I5ad8e44273c3d185cf7fbe94787aff47595aabb0
Closes-Bug: #1518330
2015-11-20 16:20:58 +02:00

85 lines
3.9 KiB
YAML

---
- include: ../../config.yml
vars:
service_name: "ironic-api"
config_source:
- "roles/ironic/templates/ironic.conf.j2"
- "/etc/kolla/config/global.conf"
- "/etc/kolla/config/database.conf"
- "/etc/kolla/config/messaging.conf"
- "/etc/kolla/config/{{ project_name }}.conf"
- "/etc/kolla/config/{{ project_name }}/{{ service_name }}.conf"
config_template_dest:
- "{{ node_templates_directory }}/{{ service_name }}/{{ project_name }}.conf_minimal"
- "{{ node_templates_directory }}/{{ service_name }}/{{ project_name }}.conf_global"
- "{{ node_templates_directory }}/{{ service_name }}/{{ project_name }}.conf_database"
- "{{ node_templates_directory }}/{{ service_name }}/{{ project_name }}.conf_messaging"
- "{{ node_templates_directory }}/{{ service_name }}/{{ project_name }}.conf_augment"
- "{{ node_templates_directory }}/{{ service_name }}/{{ service_name }}.conf_augment"
config_dest: "{{ node_config_directory }}/{{ service_name }}/ironic.conf"
when: inventory_hostname in groups['ironic-api']
- name: Copying Ironic API JSON configuration file
template:
src: "roles/ironic/templates/ironic-api.json.j2"
dest: "{{ node_config_directory }}/ironic-api/config.json"
- include: ../../config.yml
vars:
service_name: "ironic-conductor"
config_source:
- "roles/ironic/templates/ironic.conf.j2"
- "/etc/kolla/config/global.conf"
- "/etc/kolla/config/database.conf"
- "/etc/kolla/config/messaging.conf"
- "/etc/kolla/config/{{ project_name }}.conf"
- "/etc/kolla/config/{{ project_name }}/{{ service_name }}.conf"
config_template_dest:
- "{{ node_templates_directory }}/{{ service_name }}/{{ project_name }}.conf_minimal"
- "{{ node_templates_directory }}/{{ service_name }}/{{ project_name }}.conf_global"
- "{{ node_templates_directory }}/{{ service_name }}/{{ project_name }}.conf_database"
- "{{ node_templates_directory }}/{{ service_name }}/{{ project_name }}.conf_messaging"
- "{{ node_templates_directory }}/{{ service_name }}/{{ project_name }}.conf_augment"
- "{{ node_templates_directory }}/{{ service_name }}/{{ service_name }}.conf_augment"
config_dest: "{{ node_config_directory }}/{{ service_name }}/ironic.conf"
when: inventory_hostname in groups['ironic-conductor']
- name: Copying Ironic conductor JSON configuration file
template:
src: "roles/ironic/templates/ironic-conductor.json.j2"
dest: "{{ node_config_directory }}/ironic-conductor/config.json"
- include: ../../config.yml
vars:
service_name: "ironic-discoverd"
config_source:
- "roles/ironic/templates/discoverd.conf.j2"
- "/etc/kolla/config/global.conf"
- "/etc/kolla/config/database.conf"
- "/etc/kolla/config/messaging.conf"
- "/etc/kolla/config/{{ project_name }}/discoverd.conf"
config_template_dest:
- "{{ node_templates_directory }}/{{ service_name }}/discoverd.conf_minimal"
- "{{ node_templates_directory }}/{{ service_name }}/{{ project_name }}.conf_global"
- "{{ node_templates_directory }}/{{ service_name }}/{{ project_name }}.conf_database"
- "{{ node_templates_directory }}/{{ service_name }}/{{ project_name }}.conf_messaging"
- "{{ node_templates_directory }}/{{ service_name }}/discoverd.conf_augment"
config_dest: "{{ node_config_directory }}/{{ service_name }}/discoverd.conf"
when: inventory_hostname in groups['ironic-discoverd']
- name: Copying Ironic discoverd JSON configuration file
template:
src: "roles/ironic/templates/ironic-discoverd.json.j2"
dest: "{{ node_config_directory }}/ironic-discoverd/config.json"
- name: Ensuring config directory exists
file:
path: "{{ node_config_directory }}/ironic-pxe/"
state: "directory"
recurse: "yes"
- name: Copying Ironic PXE JSON configuration file
template:
src: "roles/ironic/templates/ironic-pxe.json.j2"
dest: "{{ node_config_directory }}/ironic-pxe/config.json"