2017-08-03 21:30:25 +08:00
|
|
|
---
|
2021-02-06 03:41:21 +08:00
|
|
|
- name: get latest available build
|
|
|
|
uri:
|
2021-03-03 22:43:50 +08:00
|
|
|
url: "https://shaman.ceph.com/api/search/?status=ready&project=ceph&flavor=default&distros=centos/{{ ansible_facts['distribution_major_version'] }}/{{ ansible_facts['architecture'] }}&ref={{ ceph_dev_branch }}&sha1={{ ceph_dev_sha1 }}"
|
2021-02-06 03:41:21 +08:00
|
|
|
return_content: yes
|
|
|
|
run_once: true
|
|
|
|
register: latest_build
|
|
|
|
|
2017-08-03 21:30:25 +08:00
|
|
|
- name: fetch ceph red hat development repository
|
|
|
|
uri:
|
2018-04-07 00:17:48 +08:00
|
|
|
# Use the centos repo since we don't currently have a dedicated red hat repo
|
2021-02-06 03:41:21 +08:00
|
|
|
url: "{{ (latest_build.content | from_json)[0]['chacra_url'] }}repo"
|
2017-08-03 21:30:25 +08:00
|
|
|
return_content: yes
|
|
|
|
register: ceph_dev_yum_repo
|
|
|
|
|
|
|
|
- name: configure ceph red hat development repository
|
|
|
|
copy:
|
|
|
|
content: "{{ ceph_dev_yum_repo.content }}"
|
|
|
|
dest: /etc/yum.repos.d/ceph-dev.repo
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
backup: yes
|
2019-04-09 21:44:27 +08:00
|
|
|
|
|
|
|
- name: remove ceph_stable repositories
|
|
|
|
yum_repository:
|
|
|
|
name: '{{ item }}'
|
|
|
|
file: ceph_stable
|
|
|
|
state: absent
|
|
|
|
with_items:
|
|
|
|
- ceph_stable
|
|
|
|
- ceph_stable_noarch
|