mirror of https://github.com/ceph/ceph-ansible.git
ceph-common: install ceph-mon/osd for ceph dev
Since developement versions of Ceph are after infernalis a package split happened. So basically ceph-mon, ceph-osd, ceph-mds need to be installed. Signed-off-by: Sébastien Han <seb@redhat.com>pull/745/head
parent
2cd67c066b
commit
6513cdb313
|
@ -41,7 +41,7 @@
|
||||||
name: "ceph-mon"
|
name: "ceph-mon"
|
||||||
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
||||||
when:
|
when:
|
||||||
(ceph_origin == "distro" or ceph_stable_rh_storage or
|
(ceph_origin == "distro" or ceph_stable_rh_storage or ceph_dev or
|
||||||
(ceph_stable and ceph_stable_release not in ceph_stable_releases)) and
|
(ceph_stable and ceph_stable_release not in ceph_stable_releases)) and
|
||||||
mon_group_name in group_names and
|
mon_group_name in group_names and
|
||||||
ansible_pkg_mgr == "yum"
|
ansible_pkg_mgr == "yum"
|
||||||
|
@ -51,7 +51,7 @@
|
||||||
name: "ceph-mon"
|
name: "ceph-mon"
|
||||||
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
||||||
when:
|
when:
|
||||||
(ceph_origin == "distro" or ceph_stable_rh_storage or
|
(ceph_origin == "distro" or ceph_stable_rh_storage or ceph_dev or
|
||||||
(ceph_stable and ceph_stable_release not in ceph_stable_releases)) and
|
(ceph_stable and ceph_stable_release not in ceph_stable_releases)) and
|
||||||
mon_group_name in group_names and
|
mon_group_name in group_names and
|
||||||
ansible_pkg_mgr == "dnf"
|
ansible_pkg_mgr == "dnf"
|
||||||
|
@ -61,7 +61,7 @@
|
||||||
name: "ceph-osd"
|
name: "ceph-osd"
|
||||||
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
||||||
when:
|
when:
|
||||||
(ceph_origin == "distro" or ceph_stable_rh_storage or
|
(ceph_origin == "distro" or ceph_stable_rh_storage or ceph_dev or
|
||||||
(ceph_stable and ceph_stable_release not in ceph_stable_releases)) and
|
(ceph_stable and ceph_stable_release not in ceph_stable_releases)) and
|
||||||
osd_group_name in group_names and
|
osd_group_name in group_names and
|
||||||
ansible_pkg_mgr == "yum"
|
ansible_pkg_mgr == "yum"
|
||||||
|
@ -71,7 +71,7 @@
|
||||||
name: "ceph-osd"
|
name: "ceph-osd"
|
||||||
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
||||||
when:
|
when:
|
||||||
(ceph_origin == "distro" or ceph_stable_rh_storage or
|
(ceph_origin == "distro" or ceph_stable_rh_storage or ceph_dev or
|
||||||
(ceph_stable and ceph_stable_release not in ceph_stable_releases)) and
|
(ceph_stable and ceph_stable_release not in ceph_stable_releases)) and
|
||||||
osd_group_name in group_names and
|
osd_group_name in group_names and
|
||||||
ansible_pkg_mgr == "dnf"
|
ansible_pkg_mgr == "dnf"
|
||||||
|
|
Loading…
Reference in New Issue