2016-05-11 00:29:27 +08:00
---
2018-04-10 21:39:44 +08:00
- name : set_fact keys_tmp - preserve backward compatibility after the introduction of the ceph_keys module
set_fact :
2018-09-07 22:54:42 +08:00
keys_tmp : "{{ keys_tmp|default([]) + [ { 'key': item.key, 'name': item.name, 'caps': { 'mon': item.mon_cap, 'osd': item.osd_cap|default(''), 'mds': item.mds_cap|default(''), 'mgr': item.mgr_cap|default('') } , 'mode': item.mode } ] }}"
2019-04-01 23:46:15 +08:00
when : item.get('mon_cap', None) # it's enough to assume we are running an old-fashionned syntax simply by checking the presence of mon_cap since every key needs this cap
2018-04-10 21:39:44 +08:00
with_items : "{{ keys }}"
- name : set_fact keys - override keys_tmp with keys
set_fact :
keys : "{{ keys_tmp }}"
2019-04-01 23:46:15 +08:00
when : keys_tmp is defined
2018-04-10 21:39:44 +08:00
2018-08-30 15:53:36 +08:00
# dummy container setup is only supported on x86_64
# when running with containerized_deployment: true this task
# creates a group that contains only x86_64 hosts.
# when running with containerized_deployment: false this task
# will add all client hosts to the group (and not filter).
- name : create filtered clients group
add_host :
name : "{{ item }}"
groups : _filtered_clients
2020-02-06 10:23:54 +08:00
with_items : "{{ groups[client_group_name] | intersect(ansible_play_batch) }}"
2019-05-22 16:02:42 +08:00
when : (hostvars[item]['ansible_architecture'] == 'x86_64') or (not containerized_deployment | bool)
2018-08-30 15:53:36 +08:00
2018-05-01 02:53:42 +08:00
- name : set_fact delegated_node
set_fact :
delegated_node : "{{ groups[mon_group_name][0] if groups.get(mon_group_name, []) | length > 0 else inventory_hostname }}"
- name : set_fact condition_copy_admin_key
set_fact :
condition_copy_admin_key : "{{ True if groups.get(mon_group_name, []) | length > 0 else copy_admin_key }}"
2018-04-04 22:22:36 +08:00
- name : create cephx key(s)
ceph_key :
state : present
name : "{{ item.name }}"
caps : "{{ item.caps }}"
secret : "{{ item.key | default('') }}"
cluster : "{{ cluster }}"
dest : "{{ ceph_conf_key_directory }}"
2018-07-11 22:03:10 +08:00
import_key : "{{ condition_copy_admin_key }}"
2018-04-20 22:37:05 +08:00
mode : "{{ item.mode|default(omit) }}"
2018-11-16 17:50:38 +08:00
owner : "{{ ceph_uid if containerized_deployment else 'ceph' }}"
group : "{{ ceph_uid if containerized_deployment else 'ceph' }}"
2018-11-18 02:58:54 +08:00
environment :
CEPH_CONTAINER_IMAGE : "{{ ceph_docker_registry + '/' + ceph_docker_image + ':' + ceph_docker_image_tag if containerized_deployment else None }}"
2018-11-18 23:10:11 +08:00
CEPH_CONTAINER_BINARY : "{{ container_binary }}"
2019-05-20 21:58:10 +08:00
with_items :
- "{{ keys }}"
2018-06-06 19:59:26 +08:00
delegate_to : "{{ delegated_node }}"
2017-07-13 23:39:35 +08:00
when :
2019-05-22 16:02:42 +08:00
- cephx | bool
2017-07-13 23:39:35 +08:00
- keys | length > 0
2019-03-05 15:44:25 +08:00
- inventory_hostname == groups.get('_filtered_clients') | first
2017-07-13 23:39:35 +08:00
2018-04-04 22:22:36 +08:00
- name : slurp client cephx key(s)
2018-03-30 19:48:17 +08:00
slurp :
src : "{{ ceph_conf_key_directory }}/{{ cluster }}.{{ item.name }}.keyring"
2019-04-01 23:46:15 +08:00
with_items : "{{ keys }}"
2018-03-30 19:48:17 +08:00
register : slurp_client_keys
2018-06-06 19:59:26 +08:00
delegate_to : "{{ delegated_node }}"
2018-03-30 19:48:17 +08:00
when :
2019-05-22 16:02:42 +08:00
- cephx | bool
2018-03-30 19:48:17 +08:00
- keys | length > 0
2019-03-05 15:44:25 +08:00
- inventory_hostname == groups.get('_filtered_clients') | first
2018-03-30 19:48:17 +08:00
2018-10-01 23:11:13 +08:00
- name : pool related tasks
2018-04-27 20:48:33 +08:00
when :
2019-05-22 16:02:42 +08:00
- condition_copy_admin_key | bool
2018-08-30 15:53:36 +08:00
- inventory_hostname == groups.get('_filtered_clients', []) | first
2018-10-01 23:11:13 +08:00
block :
- name : list existing pool(s)
command : >
2019-05-14 20:51:32 +08:00
{{ container_exec_cmd | default('') }} ceph --cluster {{ cluster }}
2018-10-01 23:11:13 +08:00
osd pool get {{ item.name }} size
with_items : "{{ pools }}"
register : created_pools
failed_when : false
delegate_to : "{{ delegated_node }}"
2018-04-27 20:48:33 +08:00
2018-10-01 23:11:13 +08:00
- name : create ceph pool(s)
command : >
2019-05-14 20:51:32 +08:00
{{ container_exec_cmd | default('') }} ceph --cluster {{ cluster }}
2018-10-01 23:11:13 +08:00
osd pool create {{ item.0.name }}
2020-02-28 23:03:15 +08:00
{{ item.0.pg_num | default(osd_pool_default_pg_num) if not item.0.pg_autoscale_mode | default(False) | bool else 16 }}
{{ item.0.pgp_num | default(item.0.pg_num) | default(osd_pool_default_pg_num) if not item.0.pg_autoscale_mode | default(False) | bool else '' }}
2020-02-28 18:41:00 +08:00
{%- if item.0.type | default(1) | int == 1 or item.0.type | default('replicated') == 'replicated' %}
replicated
{{ item.0.rule_name | default(osd_pool_default_crush_rule) }}
2020-02-28 23:03:15 +08:00
{{ item.0.expected_num_objects | default(0) }}
2020-02-28 18:41:00 +08:00
{%- else %}
erasure
2018-10-01 23:11:13 +08:00
{{ item.0.erasure_profile }}
{%- endif %}
with_together :
- "{{ pools }}"
- "{{ created_pools.results }}"
changed_when : false
delegate_to : "{{ delegated_node }}"
when :
- pools | length > 0
- item.1.rc != 0
2020-02-28 23:03:15 +08:00
- name : set the target ratio on pool(s)
command : "{{ container_exec_cmd | default('') }} ceph --cluster {{ cluster }} osd pool set {{ item.name }} target_size_ratio {{ item.target_size_ratio }}"
with_items : "{{ pools | unique }}"
delegate_to : "{{ delegated_node }}"
when : item.pg_autoscale_mode | default(False) | bool
- name : set pg_autoscale_mode value on pool(s)
command : "{{ container_exec_cmd | default('') }} ceph --cluster {{ cluster }} osd pool set {{ item.name }} pg_autoscale_mode {{ item.pg_autoscale_mode | default(False) | ternary('on', 'warn') }}"
delegate_to : "{{ delegated_node }}"
with_items : "{{ pools | unique }}"
2018-10-01 23:11:13 +08:00
- name : customize pool size
command : >
2019-05-14 20:51:32 +08:00
{{ container_exec_cmd | default('') }} ceph --cluster {{ cluster }}
2020-03-11 08:50:55 +08:00
osd pool set {{ item.name }} size {{ item.size | default(osd_pool_default_size) }} {{ '--yes-i-really-mean-it' if item.size | default(osd_pool_default_size) | int == 1 else '' }}
2018-10-01 23:11:13 +08:00
with_items : "{{ pools | unique }}"
2018-11-18 00:40:35 +08:00
delegate_to : "{{ delegated_node }}"
2018-10-01 23:11:13 +08:00
changed_when : false
when :
- pools | length > 0
2020-03-03 17:47:19 +08:00
- item.type | default(1) | int != 3
- item.type | default('replicated') != 'erasure'
2018-11-21 18:00:11 +08:00
- item.size | default(osd_pool_default_size) != ceph_osd_pool_default_size
2017-09-14 04:13:53 +08:00
2019-03-01 04:58:31 +08:00
- name : customize pool min_size
command : >
2019-05-14 20:51:32 +08:00
{{ container_exec_cmd | default('') }} ceph --cluster {{ cluster }}
2019-03-01 04:58:31 +08:00
osd pool set {{ item.name }} min_size {{ item.min_size | default(osd_pool_default_min_size) }}
with_items : "{{ pools | unique }}"
delegate_to : "{{ delegated_node }}"
changed_when : false
when :
- pools | length > 0
2019-03-06 03:17:11 +08:00
- (item.min_size | default(osd_pool_default_min_size))|int > ceph_osd_pool_default_min_size
2020-03-03 17:47:19 +08:00
- item.type | default(1) | int != 3
- item.type | default('replicated') != 'erasure'
2019-03-01 04:58:31 +08:00
2019-03-01 00:46:29 +08:00
- name : assign application to pool(s)
2019-05-14 20:51:32 +08:00
command : "{{ container_exec_cmd | default('') }} ceph --cluster {{ cluster }} osd pool application enable {{ item.name }} {{ item.application }}"
2019-03-01 00:46:29 +08:00
with_items : "{{ pools | unique }}"
changed_when : false
delegate_to : "{{ delegated_node }}"
2019-04-01 23:46:15 +08:00
when : item.application is defined
2019-03-01 00:46:29 +08:00
2018-04-04 22:22:36 +08:00
- name : get client cephx keys
2018-03-30 19:48:17 +08:00
copy :
2019-03-01 23:41:55 +08:00
dest : "{{ item.source }}"
2018-03-30 19:48:17 +08:00
content : "{{ item.content | b64decode }}"
2018-06-07 21:49:03 +08:00
mode : "{{ item.item.get('mode', '0600') }}"
2018-04-23 16:02:16 +08:00
owner : "{{ ceph_uid }}"
group : "{{ ceph_uid }}"
2019-04-01 23:46:15 +08:00
with_items : "{{ hostvars[groups['_filtered_clients'][0]]['slurp_client_keys']['results'] }}"
when : not item.get('skipped', False)