mirror of https://github.com/ceph/ceph-ansible.git
15 lines
442 B
YAML
15 lines
442 B
YAML
---
|
|
- name: configure red hat ceph community repository stable key
|
|
rpm_key:
|
|
key: "{{ ceph_stable_key }}"
|
|
state: present
|
|
|
|
- name: configure red hat ceph stable community repository
|
|
yum_repository:
|
|
name: ceph_stable
|
|
description: Ceph Stable repo
|
|
gpgcheck: yes
|
|
state: present
|
|
gpgkey: "{{ ceph_stable_key }}"
|
|
baseurl: "{{ ceph_mirror }}/rpm-{{ ceph_stable_release }}/{{ ceph_stable_redhat_distro }}/$basearch"
|