mirror of https://github.com/ceph/ceph-ansible.git
99 lines
4.8 KiB
YAML
99 lines
4.8 KiB
YAML
---
|
|
- name: check and deploy filesystem pools
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
|
block:
|
|
- name: check if filesystem pool already exists
|
|
block:
|
|
- name: compile a list of pool names
|
|
set_fact:
|
|
cephfs_pool_names: "{{ cephfs_pools | map(attribute='name') | list }}"
|
|
|
|
- name: get and store list of filesystem pools
|
|
command: "{{ container_exec_cmd | default('') }} ceph --cluster {{ cluster }} osd pool ls"
|
|
changed_when: false
|
|
register: osd_pool_ls
|
|
|
|
- name: look whether pools to be created are present in the output
|
|
set_fact:
|
|
fs_pools_created: True
|
|
when: osd_pool_ls.stdout_lines | intersect(cephfs_pool_names) | length > 0
|
|
|
|
- name: deploy filesystem pools
|
|
when: fs_pools_created is not defined
|
|
block:
|
|
- name: create filesystem pools
|
|
command: >
|
|
{{ container_exec_cmd | default('') }} ceph --cluster {{ cluster }}
|
|
osd pool create {{ item.name }}
|
|
{{ item.pg_num | default(osd_pool_default_pg_num) if not item.pg_autoscale_mode | default(False) | bool else 16 }}
|
|
{{ item.pgp_num | default(item.pg_num) | default(osd_pool_default_pg_num) if not item.pg_autoscale_mode | default(False) | bool else '' }}
|
|
{%- if item.type | default(1) | int == 1 or item.type | default('replicated') == 'replicated' %}
|
|
replicated
|
|
{{ item.rule_name | default(osd_pool_default_crush_rule) }}
|
|
{{ item.expected_num_objects | default(0) }}
|
|
{%- else %}
|
|
erasure
|
|
{{ item.erasure_profile }}
|
|
{%- endif %}
|
|
changed_when: false
|
|
with_items:
|
|
- "{{ cephfs_pools }}"
|
|
|
|
- name: set the target ratio on pool(s)
|
|
command: "{{ hostvars[groups[mon_group_name][0]]['container_exec_cmd'] | default('') }} ceph --cluster {{ cluster }} osd pool set {{ item.name }} target_size_ratio {{ item.target_size_ratio }}"
|
|
with_items: "{{ cephfs_pools | unique }}"
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
|
when: item.pg_autoscale_mode | default(False) | bool
|
|
|
|
- name: set pg_autoscale_mode value on pool(s)
|
|
command: "{{ hostvars[groups[mon_group_name][0]]['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: "{{ groups[mon_group_name][0] }}"
|
|
with_items: "{{ cephfs_pools | unique }}"
|
|
|
|
- name: customize pool size
|
|
command: "{{ container_exec_cmd | default('') }} ceph --cluster {{ cluster }} 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 '' }}"
|
|
with_items: "{{ cephfs_pools | unique }}"
|
|
changed_when: false
|
|
when:
|
|
- item.size | default(osd_pool_default_size) != ceph_osd_pool_default_size
|
|
- item.type | default(1) | int != 3
|
|
- item.type | default('replicated') != 'erasure'
|
|
|
|
- name: customize pool min_size
|
|
command: "{{ container_exec_cmd | default('') }} ceph --cluster {{ cluster }} osd pool set {{ item.name }} min_size {{ item.min_size | default(osd_pool_default_min_size) }}"
|
|
with_items: "{{ cephfs_pools | unique }}"
|
|
changed_when: false
|
|
when:
|
|
- (item.min_size | default(osd_pool_default_min_size))|int > ceph_osd_pool_default_min_size
|
|
- item.type | default(1) | int != 3
|
|
- item.type | default('replicated') != 'erasure'
|
|
|
|
- name: assign application to cephfs pools
|
|
command: "{{ container_exec_cmd | default('') }} ceph --cluster {{ cluster }} osd pool application enable {{ item.name }} {{ item.application }}"
|
|
with_items:
|
|
- "{{ cephfs_data_pool }}"
|
|
- "{{ cephfs_metadata_pool }}"
|
|
changed_when: false
|
|
|
|
- name: check and create ceph filesystem
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
|
block:
|
|
- name: check if ceph filesystem already exists
|
|
command: "{{ container_exec_cmd | default('') }} ceph --cluster {{ cluster }} fs get {{ cephfs }}"
|
|
register: check_existing_cephfs
|
|
changed_when: false
|
|
failed_when: false
|
|
|
|
- name: create ceph filesystem
|
|
command: "{{ container_exec_cmd | default('') }} ceph --cluster {{ cluster }} fs new {{ cephfs }} {{ cephfs_metadata_pool.name }} {{ cephfs_data_pool.name }}"
|
|
changed_when: false
|
|
when: check_existing_cephfs.rc != 0
|
|
|
|
- name: set max_mds
|
|
command: "{{ container_exec_cmd | default('') }} ceph --cluster {{ cluster }} fs set {{ cephfs }} max_mds {{ mds_max_mds }}"
|
|
changed_when: false
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
|
when:
|
|
- mds_max_mds > 1
|
|
- not rolling_update
|