035ab8b79b
Change-Id: Ia4dcc5eddd2b18a4b9b36d9bd809c405d4f92b27 Co-Authored-By: caoyuan <cao.yuan@99cloud.net> Co-Authored-By: Francisco Edigleison Barbosa <barbosaedigleison@gmail.com> Partially-implements: blueprint better-reconfigure
107 lines
3.5 KiB
YAML
107 lines
3.5 KiB
YAML
---
|
|
- name: Ensuring config directories exist
|
|
file:
|
|
path: "{{ node_config_directory }}/{{ item.key }}"
|
|
state: "directory"
|
|
recurse: yes
|
|
when:
|
|
- inventory_hostname in groups[item.value.group]
|
|
- item.value.enabled | bool
|
|
with_dict: "{{ manila_services }}"
|
|
|
|
- name: Copying over config.json files for services
|
|
template:
|
|
src: "{{ item.key }}.json.j2"
|
|
dest: "{{ node_config_directory }}/{{ item.key }}/config.json"
|
|
register: manila_config_jsons
|
|
when:
|
|
- inventory_hostname in groups[item.value.group]
|
|
- item.value.enabled | bool
|
|
with_dict: "{{ manila_services }}"
|
|
notify:
|
|
- "Restart {{ item.key }} container"
|
|
|
|
- name: Copying over manila.conf
|
|
merge_configs:
|
|
vars:
|
|
service_name: "{{ item.key }}"
|
|
sources:
|
|
- "{{ role_path }}/templates/manila.conf.j2"
|
|
- "{{ node_custom_config }}/global.conf"
|
|
- "{{ node_custom_config }}/database.conf"
|
|
- "{{ node_custom_config }}/messaging.conf"
|
|
- "{{ node_custom_config }}/manila.conf"
|
|
- "{{ node_custom_config }}/manila/{{ item.key }}.conf"
|
|
- "{{ node_custom_config }}/manila/{{ inventory_hostname }}/manila.conf"
|
|
dest: "{{ node_config_directory }}/{{ item.key }}/manila.conf"
|
|
register: manila_confs
|
|
when:
|
|
- item.key in [ "manila-api", "manila-data", "manila-scheduler" ]
|
|
- inventory_hostname in groups[item.value.group]
|
|
- item.value.enabled | bool
|
|
with_dict: "{{ manila_services }}"
|
|
notify:
|
|
- Restart manila-api container
|
|
- Restart manila-data container
|
|
- Restart manila-scheduler container
|
|
|
|
- name: Copying over manila-share.conf
|
|
vars:
|
|
service: "{{ manila_services['manila-share'] }}"
|
|
merge_configs:
|
|
vars:
|
|
service_name: "{{ item }}"
|
|
sources:
|
|
- "{{ role_path }}/templates/manila.conf.j2"
|
|
- "{{ role_path }}/templates/manila-share.conf.j2"
|
|
- "{{ node_custom_config }}/global.conf"
|
|
- "{{ node_custom_config }}/database.conf"
|
|
- "{{ node_custom_config }}/messaging.conf"
|
|
- "{{ node_custom_config }}/manila.conf"
|
|
- "{{ node_custom_config }}/{{ item }}.conf"
|
|
- "{{ node_custom_config }}/manila/{{ item }}.conf"
|
|
- "{{ node_custom_config }}/manila/{{ inventory_hostname }}/manila.conf"
|
|
dest: "{{ node_config_directory }}/{{ item }}/manila.conf"
|
|
register: manila_conf_share
|
|
when:
|
|
- inventory_hostname in groups[service.group]
|
|
- service.enabled | bool
|
|
with_items:
|
|
- "manila-share"
|
|
notify:
|
|
- Restart manila-share container
|
|
|
|
- name: Check if policies shall be overwritten
|
|
local_action: stat path="{{ node_custom_config }}/manila/policy.json"
|
|
register: manila_policy
|
|
|
|
- name: Copying over existing policy.json
|
|
template:
|
|
src: "{{ node_custom_config }}/manila/policy.json"
|
|
dest: "{{ node_config_directory }}/{{ item.key }}/policy.json"
|
|
register: policy_jsons
|
|
when:
|
|
- manila_policy.stat.exists
|
|
- inventory_hostname in groups[item.value.group]
|
|
- item.value.enabled | bool
|
|
with_dict: "{{ manila_services }}"
|
|
notify:
|
|
- "Restart {{ item.key }} container"
|
|
|
|
- name: Check manila containers
|
|
kolla_docker:
|
|
action: "compare_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
name: "{{ item.value.container_name }}"
|
|
image: "{{ item.value.image }}"
|
|
privileged: "{{ item.value.privileged|default(False) }}"
|
|
volumes: "{{ item.value.volumes|reject('equalto', '')|list }}"
|
|
register: check_manila_containers
|
|
when:
|
|
- action != "config"
|
|
- inventory_hostname in groups[item.value.group]
|
|
- item.value.enabled | bool
|
|
with_dict: "{{ manila_services }}"
|
|
notify:
|
|
- "Restart {{ item.key }} container"
|