2017-08-03 21:30:25 +08:00
|
|
|
---
|
|
|
|
- name: configure red hat ceph community repository stable key
|
|
|
|
rpm_key:
|
|
|
|
key: "{{ ceph_stable_key }}"
|
|
|
|
state: present
|
2018-12-20 17:00:26 +08:00
|
|
|
register: result
|
|
|
|
until: result is succeeded
|
2017-08-03 21:30:25 +08:00
|
|
|
|
|
|
|
- name: configure red hat ceph stable community repository
|
|
|
|
yum_repository:
|
|
|
|
name: ceph_stable
|
2019-03-05 00:10:24 +08:00
|
|
|
description: Ceph Stable $basearch repo
|
2017-08-03 21:30:25 +08:00
|
|
|
gpgcheck: yes
|
|
|
|
state: present
|
|
|
|
gpgkey: "{{ ceph_stable_key }}"
|
|
|
|
baseurl: "{{ ceph_mirror }}/rpm-{{ ceph_stable_release }}/{{ ceph_stable_redhat_distro }}/$basearch"
|
2019-03-05 00:10:24 +08:00
|
|
|
file: ceph_stable
|
|
|
|
register: result
|
|
|
|
until: result is succeeded
|
|
|
|
|
|
|
|
- name: configure red hat ceph stable noarch community repository
|
|
|
|
yum_repository:
|
|
|
|
name: ceph_stable_noarch
|
|
|
|
description: Ceph Stable noarch repo
|
|
|
|
gpgcheck: yes
|
|
|
|
state: present
|
|
|
|
gpgkey: "{{ ceph_stable_key }}"
|
|
|
|
baseurl: "{{ ceph_mirror }}/rpm-{{ ceph_stable_release }}/{{ ceph_stable_redhat_distro }}/noarch"
|
|
|
|
file: ceph_stable
|
2018-12-20 17:00:26 +08:00
|
|
|
register: result
|
|
|
|
until: result is succeeded
|