mirror of https://github.com/ceph/ceph-ansible.git
common: Use rhsm_repository module for RHCS
Instead of using subscription-manager with command module we can use the rhsm_repository ansible module. This module already uses repos list feature to determine if a repository is enabled or not. That way this module is idempotent so we don't need changed_when: false anymore. Signed-off-by: Dimitri Savineau <dsavinea@redhat.com>pull/3698/head
parent
5da9a7dec5
commit
d6e71d769c
|
@ -1,50 +1,18 @@
|
||||||
---
|
---
|
||||||
- name: check if the red hat storage monitor repo is already present
|
|
||||||
yum:
|
|
||||||
list: repos
|
|
||||||
update_cache: no
|
|
||||||
register: rhcs_mon_repo
|
|
||||||
when:
|
|
||||||
- (mon_group_name in group_names or mgr_group_name in group_names)
|
|
||||||
until: rhcs_mon_repo is succeeded
|
|
||||||
|
|
||||||
- name: enable red hat storage monitor repository
|
- name: enable red hat storage monitor repository
|
||||||
command: subscription-manager repos --enable rhel-7-server-rhceph-{{ ceph_rhcs_version }}-mon-rpms
|
rhsm_repository:
|
||||||
changed_when: false
|
name: "rhel-7-server-rhceph-{{ ceph_rhcs_version }}-mon-rpms"
|
||||||
when:
|
when:
|
||||||
- (mon_group_name in group_names or mgr_group_name in group_names)
|
- (mon_group_name in group_names or mgr_group_name in group_names)
|
||||||
- "'rhel-7-server-rhceph-'+ ceph_rhcs_version | string +'-mon-rpms' not in rhcs_mon_repo.results"
|
|
||||||
|
|
||||||
- name: check if the red hat storage osd repo is already present
|
|
||||||
yum:
|
|
||||||
list: repos
|
|
||||||
update_cache: no
|
|
||||||
register: rhcs_osd_repo
|
|
||||||
check_mode: no
|
|
||||||
when:
|
|
||||||
- osd_group_name in group_names
|
|
||||||
until: rhcs_osd_repo is succeeded
|
|
||||||
|
|
||||||
- name: enable red hat storage osd repository
|
- name: enable red hat storage osd repository
|
||||||
command: subscription-manager repos --enable rhel-7-server-rhceph-{{ ceph_rhcs_version }}-osd-rpms
|
rhsm_repository:
|
||||||
changed_when: false
|
name: "rhel-7-server-rhceph-{{ ceph_rhcs_version }}-osd-rpms"
|
||||||
when:
|
when:
|
||||||
- osd_group_name in group_names
|
- osd_group_name in group_names
|
||||||
- "'rhel-7-server-rhceph-'+ ceph_rhcs_version | string +'-osd-rpms' not in rhcs_osd_repo.results"
|
|
||||||
|
|
||||||
- name: check if the red hat storage tools repo is already present
|
|
||||||
yum:
|
|
||||||
list: repos
|
|
||||||
update_cache: no
|
|
||||||
register: rhcs_tools_repo
|
|
||||||
check_mode: no
|
|
||||||
when:
|
|
||||||
- (rgw_group_name in group_names or mds_group_name in group_names or nfs_group_name in group_names or iscsi_gw_group_name in group_names or client_group_name in group_names)
|
|
||||||
until: rhcs_tools_repo is succeeded
|
|
||||||
|
|
||||||
- name: enable red hat storage tools repository
|
- name: enable red hat storage tools repository
|
||||||
command: subscription-manager repos --enable rhel-7-server-rhceph-{{ ceph_rhcs_version }}-tools-rpms
|
rhsm_repository:
|
||||||
changed_when: false
|
name: "rhel-7-server-rhceph-{{ ceph_rhcs_version }}-tools-rpms"
|
||||||
when:
|
when:
|
||||||
- (rgw_group_name in group_names or mds_group_name in group_names or nfs_group_name in group_names or iscsi_gw_group_name in group_names or client_group_name in group_names)
|
- (rgw_group_name in group_names or mds_group_name in group_names or nfs_group_name in group_names or iscsi_gw_group_name in group_names or client_group_name in group_names)
|
||||||
- "'rhel-7-server-rhceph-'+ ceph_rhcs_version | string +'-tools-rpms' not in rhcs_tools_repo.results"
|
|
Loading…
Reference in New Issue