From: Vasu Kulkarni Date: Fri, 18 Aug 2017 18:05:01 +0000 (-0700) Subject: Separate the main task from options X-Git-Tag: ses5-gm~5^2~5^2~11 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d2ddcc0324a66b1cb67a640df987e5bc1a6f4887;p=ceph.git Separate the main task from options Signed-off-by: Vasu Kulkarni (cherry picked from commit 60d00e0eadda3a7a7cfbac2acdc81a4d55a27570) --- diff --git a/qa/suites/ceph-ansible/smoke/basic/2-config/ceph_ansible.yaml b/qa/suites/ceph-ansible/smoke/basic/2-config/ceph_ansible.yaml deleted file mode 100644 index e7e8cda4736f..000000000000 --- a/qa/suites/ceph-ansible/smoke/basic/2-config/ceph_ansible.yaml +++ /dev/null @@ -1,23 +0,0 @@ -meta: -- desc: "Build the ceph cluster using ceph-ansible" - -overrides: - ceph_ansible: - vars: - ceph_conf_overrides: - global: - osd default pool size: 2 - mon pg warn min per osd: 2 - ceph_dev: true - ceph_dev_key: https://download.ceph.com/keys/autobuild.asc - ceph_origin: upstream - ceph_test: true - ceph_stable_release: luminous - osd_scenario: collocated - journal_size: 1024 - osd_auto_discovery: false - -tasks: -- ssh-keys: -- ceph_ansible: -- install.ship_utilities: diff --git a/qa/suites/ceph-ansible/smoke/basic/2-config/dmcrypt_off.yaml b/qa/suites/ceph-ansible/smoke/basic/2-config/dmcrypt_off.yaml new file mode 100644 index 000000000000..4bbd1c7c5d1e --- /dev/null +++ b/qa/suites/ceph-ansible/smoke/basic/2-config/dmcrypt_off.yaml @@ -0,0 +1,7 @@ +meta: +- desc: "without dmcrypt" + +overrides: + ceph_ansible: + vars: + dmcrypt: False diff --git a/qa/suites/ceph-ansible/smoke/basic/ceph_ansible.yaml b/qa/suites/ceph-ansible/smoke/basic/ceph_ansible.yaml new file mode 100644 index 000000000000..e7e8cda4736f --- /dev/null +++ b/qa/suites/ceph-ansible/smoke/basic/ceph_ansible.yaml @@ -0,0 +1,23 @@ +meta: +- desc: "Build the ceph cluster using ceph-ansible" + +overrides: + ceph_ansible: + vars: + ceph_conf_overrides: + global: + osd default pool size: 2 + mon pg warn min per osd: 2 + ceph_dev: true + ceph_dev_key: https://download.ceph.com/keys/autobuild.asc + ceph_origin: upstream + ceph_test: true + ceph_stable_release: luminous + osd_scenario: collocated + journal_size: 1024 + osd_auto_discovery: false + +tasks: +- ssh-keys: +- ceph_ansible: +- install.ship_utilities: