mirror of https://github.com/ceph/ceph-ansible.git
16 lines
540 B
YAML
16 lines
540 B
YAML
|
---
|
||
|
- name: ensure ceph_rbd_mirror_pool is set
|
||
|
fail:
|
||
|
msg: "ceph_rbd_mirror_pool needs to be provided"
|
||
|
when: ceph_rbd_mirror_pool | default("") | length == 0
|
||
|
|
||
|
- name: ensure ceph_rbd_mirror_remote_cluster is set
|
||
|
fail:
|
||
|
msg: "ceph_rbd_mirror_remote_cluster needs to be provided"
|
||
|
when: ceph_rbd_mirror_remote_cluster | default("") | length == 0
|
||
|
|
||
|
- name: ensure ceph_rbd_mirror_remote_user is set
|
||
|
fail:
|
||
|
msg: "ceph_rbd_mirror_remote_user needs to be provided"
|
||
|
when: ceph_rbd_mirror_remote_user | default("") | length == 0
|