602f89baa6
Since https://review.opendev.org/647699/, we lost the logic to only deploy glance-api on a single host when using the file backend. This code was always a bit custom, and would be better supported by using the 'host_in_groups' pattern we have in a few other places where a single group name does not describe the placement of containers for a service. Change-Id: I21ce4a3b0beee0009ac69fecd0ce24efebaf158d Closes-Bug: #1836151
61 lines
1.7 KiB
YAML
61 lines
1.7 KiB
YAML
---
|
|
- name: Copying over ceph.conf(s)
|
|
merge_configs:
|
|
sources:
|
|
- "{{ role_path }}/../ceph/templates/ceph.conf.j2"
|
|
- "{{ node_custom_config }}/ceph.conf"
|
|
- "{{ node_custom_config }}/ceph/{{ inventory_hostname }}/ceph.conf"
|
|
dest: "{{ node_config_directory }}/glance-api/ceph.conf"
|
|
mode: "0660"
|
|
become: true
|
|
when:
|
|
- glance_services['glance-api'].host_in_groups | bool
|
|
- glance_services['glance-api'].enabled | bool
|
|
notify:
|
|
- Restart glance-api container
|
|
|
|
- include_tasks: ../../ceph_pools.yml
|
|
vars:
|
|
pool_name: "{{ glance_pool_name }}"
|
|
pool_type: "{{ glance_pool_type }}"
|
|
cache_mode: "{{ glance_cache_mode }}"
|
|
pool_pg_num: "{{ glance_pool_pg_num }}"
|
|
pool_pgp_num: "{{ glance_pool_pgp_num }}"
|
|
pool_application: "rbd"
|
|
|
|
- name: Pulling cephx keyring
|
|
become: true
|
|
kolla_ceph_keyring:
|
|
name: client.glance
|
|
caps: "{{ ceph_client_glance_keyring_caps }}"
|
|
register: cephx_key
|
|
delegate_to: "{{ groups['ceph-mon'][0] }}"
|
|
run_once: True
|
|
|
|
- name: Pushing cephx keyring
|
|
copy:
|
|
content: |
|
|
[client.glance]
|
|
key = {{ cephx_key.keyring.key }}
|
|
dest: "{{ node_config_directory }}/glance-api/ceph.client.glance.keyring"
|
|
mode: "0600"
|
|
become: true
|
|
when:
|
|
- glance_services['glance-api'].host_in_groups | bool
|
|
- glance_services['glance-api'].enabled | bool
|
|
notify:
|
|
- Restart glance-api container
|
|
|
|
- name: Ensuring config directory has correct owner and permission
|
|
become: true
|
|
file:
|
|
path: "{{ node_config_directory }}/{{ item }}"
|
|
recurse: yes
|
|
owner: "{{ config_owner_user }}"
|
|
group: "{{ config_owner_group }}"
|
|
when:
|
|
- glance_services[item].host_in_groups | bool
|
|
- glance_services[item].enabled | bool
|
|
with_items:
|
|
- "glance-api"
|