ceph-ansible/roles/ceph-mon/tasks/main.yml

73 lines
2.2 KiB
YAML
Raw Normal View History

---
- name: set_fact docker_exec_cmd
set_fact:
docker_exec_cmd: "docker exec ceph-mon-{{ ansible_hostname }}"
when:
- containerized_deployment
- name: include check_mandatory_vars.yml
include: check_mandatory_vars.yml
- name: include deploy_monitors.yml
include: deploy_monitors.yml
when: not containerized_deployment
- name: include start_monitor.yml
include: start_monitor.yml
when: not containerized_deployment
- name: include ceph_keys.yml
include: ceph_keys.yml
when: not containerized_deployment
# this avoids the bug mentioned here: https://github.com/ansible/ansible/issues/18206
static: no
- name: include secure_cluster.yml
include: secure_cluster.yml
when:
- secure_cluster
- not containerized_deployment
- name: include docker/main.yml
include: docker/main.yml
when: containerized_deployment
- name: crush_rules.yml
include: crush_rules.yml
when:
- crush_rule_config
- name: include set_osd_pool_default_pg_num.yml
include: set_osd_pool_default_pg_num.yml
- name: set_fact openstack_keys_tmp - preserve backward compatibility after the introduction of the ceph_keys module
set_fact:
openstack_keys_tmp: "{{ openstack_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 } ] }}"
with_items: "{{ openstack_keys }}"
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
- name: set_fact keys - override keys_tmp with keys
set_fact:
openstack_keys: "{{ openstack_keys_tmp }}"
when:
- openstack_keys_tmp is defined
# Create the pools listed in openstack_pools
- name: include openstack_config.yml
include: openstack_config.yml
when:
- openstack_config
- inventory_hostname == groups[mon_group_name] | last
- name: include create_mds_filesystems.yml
include: create_mds_filesystems.yml
when:
- groups[mds_group_name] is defined
- groups[mds_group_name]|length > 0
- inventory_hostname == groups[mon_group_name] | last
- name: include calamari.yml
include: calamari.yml
when: calamari