b25c6b15fe
At present, cinder/nova/glance/gnocchi relative containers's ceph.conf aren't be merge from user custom's config. In some condition, we should add extra parameter to custom's ceph.conf, for example:rbd_default_features = 1. So, it is necessary to use merge_configs instead of template. Closes-Bug: #1656162 Change-Id: I824e0c68af270b85c52382ae35987213266fc6f6
63 lines
2.6 KiB
YAML
63 lines
2.6 KiB
YAML
---
|
|
- name: Ensuring config directory exists
|
|
file:
|
|
path: "{{ node_config_directory }}/{{ item }}"
|
|
state: "directory"
|
|
with_items:
|
|
- "cinder-volume"
|
|
- "cinder-backup"
|
|
when: inventory_hostname in groups['cinder-volume']
|
|
|
|
- name: Copying over ceph.conf(s)
|
|
merge_configs:
|
|
vars:
|
|
service_name: "{{ item }}"
|
|
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 }}/{{ item }}/ceph.conf"
|
|
with_items:
|
|
- "cinder-volume"
|
|
- "cinder-backup"
|
|
when: inventory_hostname in groups['cinder-volume']
|
|
|
|
- include: ../../ceph_pools.yml
|
|
vars:
|
|
pool_name: "{{ cinder_pool_name }}"
|
|
pool_type: "{{ cinder_pool_type }}"
|
|
cache_mode: "{{ cinder_cache_mode }}"
|
|
|
|
- include: ../../ceph_pools.yml
|
|
vars:
|
|
pool_name: "{{ cinder_backup_pool_name }}"
|
|
pool_type: "{{ cinder_backup_pool_type }}"
|
|
cache_mode: "{{ cinder_backup_cache_mode }}"
|
|
|
|
# TODO(SamYaple): Improve changed_when tests
|
|
- name: Pulling cephx keyring for cinder
|
|
command: docker exec ceph_mon ceph auth get-or-create client.cinder mon 'allow r' osd 'allow class-read object_prefix rbd_children, allow rwx pool={{ ceph_cinder_pool_name }}, allow rwx pool={{ ceph_cinder_pool_name }}-cache, allow rwx pool={{ ceph_nova_pool_name }}, allow rwx pool={{ ceph_nova_pool_name }}-cache, allow rx pool={{ ceph_glance_pool_name }}, allow rx pool={{ ceph_glance_pool_name }}-cache'
|
|
register: cephx_key_cinder
|
|
delegate_to: "{{ groups['ceph-mon'][0] }}"
|
|
changed_when: False
|
|
run_once: True
|
|
|
|
# TODO(SamYaple): Improve changed_when tests
|
|
- name: Pulling cephx keyring for cinder-backup
|
|
command: docker exec ceph_mon ceph auth get-or-create client.cinder-backup mon 'allow r' osd 'allow class-read object_prefix rbd_children, allow rwx pool={{ ceph_cinder_backup_pool_name }}, allow rwx pool={{ ceph_cinder_backup_pool_name }}-cache'
|
|
register: cephx_key_cinder_backup
|
|
delegate_to: "{{ groups['ceph-mon'][0] }}"
|
|
changed_when: False
|
|
run_once: True
|
|
|
|
- name: Pushing cephx keyring
|
|
copy:
|
|
content: "{{ item.content }}\n\r"
|
|
dest: "{{ node_config_directory }}/{{ item.service_name }}/ceph.client.{{ item.key_name }}.keyring"
|
|
mode: "0600"
|
|
with_items:
|
|
- { service_name: "cinder-volume", key_name: "cinder", content: "{{ cephx_key_cinder.stdout }}" }
|
|
- { service_name: "cinder-backup", key_name: "cinder", content: "{{ cephx_key_cinder.stdout }}" }
|
|
- { service_name: "cinder-backup", key_name: "cinder-backup", content: "{{ cephx_key_cinder_backup.stdout }}" }
|
|
when: inventory_hostname in groups['cinder-volume']
|