2017-08-03 21:30:25 +08:00
|
|
|
---
|
2024-02-14 18:14:02 +08:00
|
|
|
- name: Install yum plugin priorities
|
|
|
|
ansible.builtin.package:
|
2019-03-15 23:30:15 +08:00
|
|
|
name: yum-plugin-priorities
|
|
|
|
register: result
|
|
|
|
until: result is succeeded
|
2019-04-01 23:46:15 +08:00
|
|
|
tags: with_pkg
|
2021-03-03 22:43:50 +08:00
|
|
|
when: ansible_facts['distribution_major_version'] | int == 7
|
2019-03-15 23:30:15 +08:00
|
|
|
|
2024-02-14 18:14:02 +08:00
|
|
|
- name: Configure red hat ceph community repository stable key
|
|
|
|
ansible.builtin.rpm_key:
|
2017-08-03 21:30:25 +08:00
|
|
|
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
|
|
|
|
2024-02-14 18:14:02 +08:00
|
|
|
- name: Configure red hat ceph stable community repository
|
|
|
|
ansible.builtin.yum_repository:
|
2017-08-03 21:30:25 +08:00
|
|
|
name: ceph_stable
|
2019-03-05 00:10:24 +08:00
|
|
|
description: Ceph Stable $basearch repo
|
2024-02-14 18:14:02 +08:00
|
|
|
gpgcheck: true
|
2017-08-03 21:30:25 +08:00
|
|
|
state: present
|
|
|
|
gpgkey: "{{ ceph_stable_key }}"
|
2021-03-03 22:43:50 +08:00
|
|
|
baseurl: "{{ ceph_mirror }}/rpm-{{ ceph_stable_release }}/el{{ ansible_facts['distribution_major_version'] }}/$basearch"
|
2019-03-05 00:10:24 +08:00
|
|
|
file: ceph_stable
|
2019-03-15 23:30:15 +08:00
|
|
|
priority: 2
|
2019-03-05 00:10:24 +08:00
|
|
|
register: result
|
|
|
|
until: result is succeeded
|
|
|
|
|
2024-02-14 18:14:02 +08:00
|
|
|
- name: Configure red hat ceph stable noarch community repository
|
|
|
|
ansible.builtin.yum_repository:
|
2019-03-05 00:10:24 +08:00
|
|
|
name: ceph_stable_noarch
|
|
|
|
description: Ceph Stable noarch repo
|
2024-02-14 18:14:02 +08:00
|
|
|
gpgcheck: true
|
2019-03-05 00:10:24 +08:00
|
|
|
state: present
|
|
|
|
gpgkey: "{{ ceph_stable_key }}"
|
2021-03-03 22:43:50 +08:00
|
|
|
baseurl: "{{ ceph_mirror }}/rpm-{{ ceph_stable_release }}/el{{ ansible_facts['distribution_major_version'] }}/noarch"
|
2019-03-05 00:10:24 +08:00
|
|
|
file: ceph_stable
|
2019-03-15 23:30:15 +08:00
|
|
|
priority: 2
|
2018-12-20 17:00:26 +08:00
|
|
|
register: result
|
2019-04-01 23:46:15 +08:00
|
|
|
until: result is succeeded
|