2015-01-30 20:34:35 +08:00
|
|
|
|
---
|
2018-06-01 16:38:46 +08:00
|
|
|
|
- name: wait for all osd to be up
|
|
|
|
|
shell: >
|
|
|
|
|
test "$({{ hostvars[groups[mon_group_name][0]]['docker_exec_cmd'] | default('') }} ceph --cluster {{ cluster }} -s -f json | python -c 'import sys, json; print(json.load(sys.stdin)["osdmap"]["osdmap"]["num_osds"])')" =
|
|
|
|
|
"$({{ hostvars[groups[mon_group_name][0]]['docker_exec_cmd'] | default('') }} ceph --cluster {{ cluster }} -s -f json | python -c 'import sys, json; print(json.load(sys.stdin)["osdmap"]["osdmap"]["num_up_osds"])')"
|
|
|
|
|
register: wait_for_all_osds_up
|
|
|
|
|
retries: 30
|
|
|
|
|
delay: 10
|
|
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
|
|
|
|
until: wait_for_all_osds_up.rc == 0
|
|
|
|
|
|
2018-04-27 20:48:33 +08:00
|
|
|
|
- name: list existing pool(s)
|
|
|
|
|
command: >
|
2018-05-22 22:41:40 +08:00
|
|
|
|
{{ hostvars[groups[mon_group_name][0]]['docker_exec_cmd'] | default('') }} ceph --cluster {{ cluster }}
|
2018-04-27 20:48:33 +08:00
|
|
|
|
osd pool get {{ item.name }} size
|
|
|
|
|
with_items: "{{ openstack_pools | unique }}"
|
|
|
|
|
register: created_pools
|
2018-05-22 22:41:40 +08:00
|
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
2018-04-27 20:48:33 +08:00
|
|
|
|
failed_when: false
|
|
|
|
|
|
2017-06-23 18:35:39 +08:00
|
|
|
|
- name: create openstack pool(s)
|
2018-03-06 21:22:48 +08:00
|
|
|
|
command: >
|
2018-05-22 22:41:40 +08:00
|
|
|
|
{{ hostvars[groups[mon_group_name][0]]['docker_exec_cmd'] | default('') }} ceph --cluster {{ cluster }}
|
2018-04-27 20:48:33 +08:00
|
|
|
|
osd pool create {{ item.0.name }}
|
|
|
|
|
{{ item.0.pg_num }}
|
|
|
|
|
{{ item.0.pgp_num | default(item.0.pg_num) }}
|
|
|
|
|
{{ 'replicated_rule' if item.0.rule_name | default('replicated_rule') == '' else item.0.rule_name | default('replicated_rule') }}
|
|
|
|
|
{{ 1 if item.0.type|default(1) == 'replicated' else 3 if item.0.type|default(1) == 'erasure' else item.0.type|default(1) }}
|
|
|
|
|
{%- if (item.0.type | default("1") == '3' or item.0.type | default("1") == 'erasure') and item.0.erasure_profile != '' %}
|
|
|
|
|
{{ item.0.erasure_profile }}
|
2018-03-06 21:26:53 +08:00
|
|
|
|
{%- endif %}
|
2018-04-27 20:48:33 +08:00
|
|
|
|
{{ item.0.expected_num_objects | default('') }}
|
|
|
|
|
with_together:
|
|
|
|
|
- "{{ openstack_pools | unique }}"
|
|
|
|
|
- "{{ created_pools.results }}"
|
2015-06-26 06:26:03 +08:00
|
|
|
|
changed_when: false
|
2018-05-22 22:41:40 +08:00
|
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
2018-04-27 20:48:33 +08:00
|
|
|
|
when:
|
|
|
|
|
- item.1.get('rc', 0) != 0
|
2015-01-30 20:34:35 +08:00
|
|
|
|
|
2018-04-27 01:55:48 +08:00
|
|
|
|
- name: assign application to pool(s)
|
2018-05-22 22:41:40 +08:00
|
|
|
|
command: "{{ hostvars[groups[mon_group_name][0]]['docker_exec_cmd'] | default('') }} ceph --cluster {{ cluster }} osd pool application enable {{ item.name }} {{ item.application }}"
|
2018-02-09 22:12:35 +08:00
|
|
|
|
with_items: "{{ openstack_pools | unique }}"
|
|
|
|
|
changed_when: false
|
2018-05-22 22:41:40 +08:00
|
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
2018-02-09 22:12:35 +08:00
|
|
|
|
when:
|
|
|
|
|
- ceph_release_num[ceph_release] >= ceph_release_num['luminous']
|
2018-04-27 01:55:48 +08:00
|
|
|
|
- item.application is defined
|
2018-02-09 22:12:35 +08:00
|
|
|
|
|
2018-04-04 22:22:36 +08:00
|
|
|
|
- name: create openstack cephx key(s)
|
|
|
|
|
ceph_key:
|
|
|
|
|
state: present
|
|
|
|
|
name: "{{ item.name }}"
|
|
|
|
|
caps: "{{ item.caps }}"
|
|
|
|
|
secret: "{{ item.key | default('') }}"
|
2018-05-22 22:41:40 +08:00
|
|
|
|
containerized: "{{ hostvars[groups[mon_group_name][0]]['docker_exec_cmd'] | default('') }}"
|
2018-04-04 22:22:36 +08:00
|
|
|
|
cluster: "{{ cluster }}"
|
2018-04-20 22:37:05 +08:00
|
|
|
|
mode: "{{ item.mode|default(omit) }}"
|
2016-09-21 20:21:41 +08:00
|
|
|
|
with_items: "{{ openstack_keys }}"
|
2018-05-22 22:41:40 +08:00
|
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
2016-02-27 05:39:27 +08:00
|
|
|
|
when: cephx
|
2017-06-23 18:35:39 +08:00
|
|
|
|
|
2018-04-04 22:22:36 +08:00
|
|
|
|
- name: fetch openstack cephx key(s)
|
2017-07-19 05:11:55 +08:00
|
|
|
|
fetch:
|
|
|
|
|
src: "/etc/ceph/{{ cluster }}.{{ item.name }}.keyring"
|
|
|
|
|
dest: "{{ fetch_directory }}/{{ fsid }}/etc/ceph/{{ cluster }}.{{ item.name }}.keyring"
|
|
|
|
|
flat: yes
|
2018-05-22 22:41:40 +08:00
|
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
2017-07-19 05:11:55 +08:00
|
|
|
|
with_items: "{{ openstack_keys }}"
|
|
|
|
|
|
2018-04-04 22:22:36 +08:00
|
|
|
|
- name: copy to other mons the openstack cephx key(s)
|
2017-07-19 05:11:55 +08:00
|
|
|
|
copy:
|
|
|
|
|
src: "{{ fetch_directory }}/{{ fsid }}/etc/ceph/{{ cluster }}.{{ item.1.name }}.keyring"
|
|
|
|
|
dest: "/etc/ceph/{{ cluster }}.{{ item.1.name }}.keyring"
|
2018-04-23 16:02:16 +08:00
|
|
|
|
owner: "{{ ceph_uid }}"
|
|
|
|
|
group: "{{ ceph_uid }}"
|
|
|
|
|
mode: "{{ item.1.mode|default(omit) }}"
|
2017-07-19 05:11:55 +08:00
|
|
|
|
with_nested:
|
|
|
|
|
- "{{ groups[mon_group_name] }}"
|
|
|
|
|
- "{{ openstack_keys }}"
|
|
|
|
|
delegate_to: "{{ item.0 }}"
|
|
|
|
|
when:
|
|
|
|
|
- cephx
|
|
|
|
|
- openstack_config
|
2018-06-07 01:13:18 +08:00
|
|
|
|
- item.0 != groups[mon_group_name]
|