Skip to content

Commit

Permalink
ceph-validate: export validate repository vars as a task
Browse files Browse the repository at this point in the history
Signed-off-by: Seena Fallah <[email protected]>
(cherry picked from commit 4f6da9d)
  • Loading branch information
clwluvw authored and guits committed Oct 13, 2021
1 parent 7fd5bd4 commit f6c4101
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 20 deletions.
20 changes: 20 additions & 0 deletions roles/ceph-validate/tasks/check_repository.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
- name: validate ceph_origin
fail:
msg: "ceph_origin must be either 'repository', 'distro' or 'local'"
when: ceph_origin not in ['repository', 'distro', 'local']

- name: validate ceph_repository
fail:
msg: "ceph_repository must be either 'community', 'rhcs', 'dev', 'custom' or 'uca'"
when:
- ceph_origin == 'repository'
- ceph_repository not in ['community', 'rhcs', 'dev', 'custom', 'uca']

- name: validate ceph_repository_community
fail:
msg: "ceph_stable_release must be 'pacific'"
when:
- ceph_origin == 'repository'
- ceph_repository == 'community'
- ceph_stable_release not in ['pacific']
21 changes: 1 addition & 20 deletions roles/ceph-validate/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,8 @@
include_tasks: check_system.yml

- name: validate repository variables in non-containerized scenario
include_tasks: check_repository.yml
when: not containerized_deployment | bool
block:
- name: validate ceph_origin
fail:
msg: "ceph_origin must be either 'repository', 'distro' or 'local'"
when: ceph_origin not in ['repository', 'distro', 'local']

- name: validate ceph_repository
fail:
msg: "ceph_repository must be either 'community', 'rhcs', 'dev', 'custom' or 'uca'"
when:
- ceph_origin == 'repository'
- ceph_repository not in ['community', 'rhcs', 'dev', 'custom', 'uca']

- name: validate ceph_repository_community
fail:
msg: "ceph_stable_release must be 'pacific'"
when:
- ceph_origin == 'repository'
- ceph_repository == 'community'
- ceph_stable_release != 'pacific'

- name: validate osd_objectstore
fail:
Expand Down

0 comments on commit f6c4101

Please sign in to comment.