Skip to content

Commit

Permalink
cephadm: install cephadm from repository
Browse files Browse the repository at this point in the history
Signed-off-by: Seena Fallah <seenafallah@gmail.com>
(cherry picked from commit 5822936)
  • Loading branch information
clwluvw authored and guits committed Oct 18, 2021
1 parent 5e5f45d commit 360cfb1
Showing 1 changed file with 20 additions and 12 deletions.
32 changes: 20 additions & 12 deletions infrastructure-playbooks/cephadm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,24 +102,32 @@
tasks_from: registry.yml
when: ceph_docker_registry_auth | bool

- name: configure repository for installing cephadm
vars:
ceph_origin: repository
ceph_repository: community
block:
- name: validate repository variables
import_role:
name: ceph-validate
tasks_from: check_repository.yml

- name: configure repository
import_role:
name: ceph-common
tasks_from: "configure_repository.yml"

- name: install cephadm requirements
package:
name: ['python3', 'lvm2']
register: result
until: result is succeeded

- name: create a cephadm container
command: "{{ container_binary }} create --name cephadm {{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}"
changed_when: false

- name: cp the cephadm cli file
command: "{{ container_binary }} cp cephadm:/usr/sbin/cephadm /usr/sbin/cephadm"
args:
creates: /usr/sbin/cephadm

- name: remove the cephadm container
command: "{{ container_binary }} rm cephadm"
changed_when: false
- name: install cephadm
package:
name: cephadm
register: result
until: result is succeeded

- name: set_fact cephadm_cmd
set_fact:
Expand Down

0 comments on commit 360cfb1

Please sign in to comment.