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 13, 2021
1 parent 7b19748 commit 191ec4f
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 14 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
2 changes: 0 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -251,13 +251,11 @@ commands=
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/infrastructure-playbooks/cephadm-adopt.yml --extra-vars "\
ireallymeanit=yes \
delegate_facts_host={env:DELEGATE_FACTS_HOST:True} \
ceph_repository=dev \
"
# idempotency test
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/infrastructure-playbooks/cephadm-adopt.yml --extra-vars "\
ireallymeanit=yes \
delegate_facts_host={env:DELEGATE_FACTS_HOST:True} \
ceph_repository=dev \
"

[testenv]
Expand Down

0 comments on commit 191ec4f

Please sign in to comment.