b5d1e4b457
Currently, policy.json is put in "{{ node_config_directory }}/{{ service_name }}" in target nodes. Relocation policy.json to "{{ node_config_directory }}/{{ item }}" with item is corresponding service compoment config directory. Currently, the policy.json is copied to all services, but it should be reviewed and left only in neccesary service (at many cases, only API service needs that). Redundant files will be removed in follow up patchset. Change-Id: I0e997dccf4ec438c9c0436db71ec2fd06650f50d Closes-Bug: #1639686
181 lines
5.5 KiB
YAML
181 lines
5.5 KiB
YAML
---
|
|
- name: Ensuring config directories exist
|
|
file:
|
|
path: "{{ node_config_directory }}/{{ item }}"
|
|
state: "directory"
|
|
recurse: yes
|
|
with_items:
|
|
- "swift"
|
|
- "swift-account-auditor"
|
|
- "swift-account-reaper"
|
|
- "swift-account-replicator"
|
|
- "swift-account-server"
|
|
- "swift-container-auditor"
|
|
- "swift-container-replicator"
|
|
- "swift-container-server"
|
|
- "swift-container-updater"
|
|
- "swift-object-auditor"
|
|
- "swift-object-expirer"
|
|
- "swift-object-replicator"
|
|
- "swift-object-server"
|
|
- "swift-object-updater"
|
|
- "swift-proxy-server"
|
|
- "swift-rsyncd"
|
|
|
|
- name: Copying over config.json files for services
|
|
template:
|
|
src: "{{ item }}.json.j2"
|
|
dest: "{{ node_config_directory }}/{{ item }}/config.json"
|
|
with_items:
|
|
- "swift-account-auditor"
|
|
- "swift-account-reaper"
|
|
- "swift-account-replicator"
|
|
- "swift-account-server"
|
|
- "swift-container-auditor"
|
|
- "swift-container-replicator"
|
|
- "swift-container-server"
|
|
- "swift-container-updater"
|
|
- "swift-object-auditor"
|
|
- "swift-object-expirer"
|
|
- "swift-object-replicator"
|
|
- "swift-object-server"
|
|
- "swift-object-updater"
|
|
- "swift-proxy-server"
|
|
- "swift-rsyncd"
|
|
|
|
- name: Copying over swift.conf
|
|
merge_configs:
|
|
vars:
|
|
service_name: "swift-{{ item }}"
|
|
sources:
|
|
- "{{ role_path }}/templates/swift.conf.j2"
|
|
- "{{ node_custom_config }}/global.conf"
|
|
- "{{ node_custom_config }}/swift.conf"
|
|
- "{{ node_custom_config }}/swift/{{ item }}.conf"
|
|
- "{{ node_custom_config }}/swift/{{ inventory_hostname }}/{{ item }}.conf"
|
|
dest: "{{ node_config_directory }}/swift-{{ item }}/swift.conf"
|
|
with_items:
|
|
- "account-auditor"
|
|
- "account-reaper"
|
|
- "account-replicator"
|
|
- "account-server"
|
|
- "container-auditor"
|
|
- "container-replicator"
|
|
- "container-server"
|
|
- "container-updater"
|
|
- "object-auditor"
|
|
- "object-expirer"
|
|
- "object-replicator"
|
|
- "object-server"
|
|
- "object-updater"
|
|
- "proxy-server"
|
|
|
|
- name: Copying over account-*.conf
|
|
merge_configs:
|
|
vars:
|
|
service_name: "swift-{{ item }}"
|
|
sources:
|
|
- "{{ role_path }}/templates/account.conf.j2"
|
|
- "{{ node_custom_config }}/global.conf"
|
|
- "{{ node_custom_config }}/swift/account.conf"
|
|
- "{{ node_custom_config }}/swift/{{ item }}.conf"
|
|
- "{{ node_custom_config }}/swift/{{ inventory_hostname }}/{{ item }}.conf"
|
|
dest: "{{ node_config_directory }}/swift-{{ item }}/{{ item }}.conf"
|
|
with_items:
|
|
- "account-auditor"
|
|
- "account-reaper"
|
|
- "account-replicator"
|
|
- "account-server"
|
|
|
|
- name: Copying over container-*.conf
|
|
merge_configs:
|
|
vars:
|
|
service_name: "swift-{{ item }}"
|
|
sources:
|
|
- "{{ role_path }}/templates/container.conf.j2"
|
|
- "{{ node_custom_config }}/global.conf"
|
|
- "{{ node_custom_config }}/swift/container.conf"
|
|
- "{{ node_custom_config }}/swift/{{ item }}.conf"
|
|
- "{{ node_custom_config }}/swift/{{ inventory_hostname }}/{{ item }}.conf"
|
|
dest: "{{ node_config_directory }}/swift-{{ item }}/{{ item }}.conf"
|
|
with_items:
|
|
- "container-auditor"
|
|
- "container-replicator"
|
|
- "container-server"
|
|
- "container-updater"
|
|
|
|
- name: Copying over object-*.conf
|
|
merge_configs:
|
|
vars:
|
|
service_name: "swift-{{ item }}"
|
|
sources:
|
|
- "{{ role_path }}/templates/object.conf.j2"
|
|
- "{{ node_custom_config }}/global.conf"
|
|
- "{{ node_custom_config }}/swift/object.conf"
|
|
- "{{ node_custom_config }}/swift/{{ item }}.conf"
|
|
- "{{ node_custom_config }}/swift/{{ inventory_hostname }}/{{ item }}.conf"
|
|
dest: "{{ node_config_directory }}/swift-{{ item }}/{{ item }}.conf"
|
|
with_items:
|
|
- "object-auditor"
|
|
- "object-expirer"
|
|
- "object-replicator"
|
|
- "object-server"
|
|
- "object-updater"
|
|
|
|
- name: Copying over proxy-server.conf
|
|
merge_configs:
|
|
vars:
|
|
service_name: "swift-{{ item }}"
|
|
sources:
|
|
- "{{ role_path }}/templates/proxy-server.conf.j2"
|
|
- "{{ node_custom_config }}/global.conf"
|
|
- "{{ node_custom_config }}/swift/{{ item }}.conf"
|
|
- "{{ node_custom_config }}/swift/{{ inventory_hostname }}/{{ item }}.conf"
|
|
dest: "{{ node_config_directory }}/swift-{{ item }}/{{ item }}.conf"
|
|
with_items:
|
|
- "proxy-server"
|
|
|
|
- name: Copying over rsyncd.conf
|
|
template:
|
|
src: "rsyncd.conf.j2"
|
|
dest: "{{ node_config_directory }}/swift-rsyncd/rsyncd.conf"
|
|
|
|
- name: Copying over Swift ring files
|
|
copy:
|
|
src: "{{ node_custom_config }}/swift/{{ item }}"
|
|
dest: "{{ node_config_directory }}/swift/{{ item }}"
|
|
backup: yes
|
|
with_items:
|
|
- "account.builder"
|
|
- "account.ring.gz"
|
|
- "container.builder"
|
|
- "container.ring.gz"
|
|
- "object.builder"
|
|
- "object.ring.gz"
|
|
|
|
- name: Check if policies shall be overwritten
|
|
local_action: stat path="{{ node_custom_config }}/swift/policy.json"
|
|
register: swift_policy
|
|
|
|
- name: Copying over existing policy.json
|
|
template:
|
|
src: "{{ node_custom_config }}/swift/policy.json"
|
|
dest: "{{ node_config_directory }}/{{ item }}/policy.json"
|
|
with_items:
|
|
- "swift-account-auditor"
|
|
- "swift-account-reaper"
|
|
- "swift-account-replicator"
|
|
- "swift-account-server"
|
|
- "swift-container-auditor"
|
|
- "swift-container-replicator"
|
|
- "swift-container-server"
|
|
- "swift-container-updater"
|
|
- "swift-object-auditor"
|
|
- "swift-object-expirer"
|
|
- "swift-object-replicator"
|
|
- "swift-object-server"
|
|
- "swift-object-updater"
|
|
- "swift-proxy-server"
|
|
when:
|
|
swift_policy.stat.exists
|