ceph-ansible/roles/ceph-common/tasks/installs/debian_ceph_repository.yml

60 lines
1.7 KiB
YAML
Raw Normal View History

---
- name: install the ceph repository stable key
2015-09-04 00:18:53 +08:00
apt_key:
data: "{{ lookup('file', role_path+'/files/cephstable.asc') }}"
2015-09-04 00:18:53 +08:00
state: present
when: ceph_stable
- name: install the ceph development repository key
2015-09-04 00:18:53 +08:00
apt_key:
data: "{{ lookup('file', role_path+'/files/cephdev.asc') }}"
2015-09-04 00:18:53 +08:00
state: present
when: ceph_dev
- name: install intank ceph enterprise repository key
2015-09-04 00:18:53 +08:00
apt_key:
data: "{{ lookup('file', role_path+'/files/cephstableice.asc') }}"
2015-09-04 00:18:53 +08:00
state: present
when: ceph_stable_ice
- name: add ceph stable repository
2015-09-04 00:18:53 +08:00
apt_repository:
repo: "deb {{ ceph_stable_repo }} {{ ceph_stable_distro_source | default(ansible_lsb.codename) }} main"
2015-09-04 00:18:53 +08:00
state: present
changed_when: false
when: ceph_stable
- name: add ceph development repository
2015-09-04 00:18:53 +08:00
apt_repository:
repo: "deb http://gitbuilder.ceph.com/ceph-deb-{{ ansible_lsb.codename }}-x86_64-basic/ref/{{ ceph_dev_branch }} {{ ansible_lsb.codename }} main"
state: present
changed_when: false
when: ceph_dev
- name: add inktank ceph enterprise repository
2015-09-04 00:18:53 +08:00
apt_repository:
repo: "deb file://{{ ceph_stable_ice_temp_path }} {{ ansible_lsb.codename }} main"
state: present
changed_when: false
when: ceph_stable_ice
- name: add ubuntu cloud archive key package
apt:
pkg: ubuntu-cloud-keyring
when: ceph_stable_uca
- name: add ubuntu cloud archive repository
apt_repository:
repo: "deb {{ ceph_stable_repo_uca }} {{ ceph_stable_release_uca}} main"
state: present
changed_when: false
when: ceph_stable_uca
- name: add custom repo
apt_repository:
repo: "deb {{ ceph_custom_repo }} {{ ansible_lsb.codename }} main"
state: present
changed_when: false
when: ceph_custom