]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
Rename folders to fix task order
authorVasu Kulkarni <vasu@redhat.com>
Fri, 18 Aug 2017 18:35:54 +0000 (11:35 -0700)
committerVasu Kulkarni <vasu@redhat.com>
Fri, 18 Aug 2017 18:35:54 +0000 (11:35 -0700)
Signed-off-by: Vasu Kulkarni <vasu@redhat.com>
14 files changed:
qa/suites/ceph-ansible/smoke/basic/2-ceph/ceph_ansible.yaml [new file with mode: 0644]
qa/suites/ceph-ansible/smoke/basic/2-config/bluestore_with_dmcrypt.yaml [deleted file]
qa/suites/ceph-ansible/smoke/basic/2-config/dmcrypt_off.yaml [deleted file]
qa/suites/ceph-ansible/smoke/basic/2-config/dmcrypt_on.yaml [deleted file]
qa/suites/ceph-ansible/smoke/basic/3-config/bluestore_with_dmcrypt.yaml [new file with mode: 0644]
qa/suites/ceph-ansible/smoke/basic/3-config/dmcrypt_off.yaml [new file with mode: 0644]
qa/suites/ceph-ansible/smoke/basic/3-config/dmcrypt_on.yaml [new file with mode: 0644]
qa/suites/ceph-ansible/smoke/basic/3-tasks/ceph-admin-commands.yaml [deleted file]
qa/suites/ceph-ansible/smoke/basic/3-tasks/cls.yaml [deleted file]
qa/suites/ceph-ansible/smoke/basic/3-tasks/rbd_import_export.yaml [deleted file]
qa/suites/ceph-ansible/smoke/basic/4-tasks/ceph-admin-commands.yaml [new file with mode: 0644]
qa/suites/ceph-ansible/smoke/basic/4-tasks/cls.yaml [new file with mode: 0644]
qa/suites/ceph-ansible/smoke/basic/4-tasks/rbd_import_export.yaml [new file with mode: 0644]
qa/suites/ceph-ansible/smoke/basic/ceph_ansible.yaml [deleted file]

diff --git a/qa/suites/ceph-ansible/smoke/basic/2-ceph/ceph_ansible.yaml b/qa/suites/ceph-ansible/smoke/basic/2-ceph/ceph_ansible.yaml
new file mode 100644 (file)
index 0000000..e7e8cda
--- /dev/null
@@ -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:
diff --git a/qa/suites/ceph-ansible/smoke/basic/2-config/bluestore_with_dmcrypt.yaml b/qa/suites/ceph-ansible/smoke/basic/2-config/bluestore_with_dmcrypt.yaml
deleted file mode 100644 (file)
index 604e757..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-meta:
-- desc: "use bluestore + dmcrypt option"
-
-overrides:
-   ceph_ansible:
-     vars:
-        osd_objectstore: bluestore
-        dmcrypt: True
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
deleted file mode 100644 (file)
index 4bbd1c7..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-meta:
-- desc: "without dmcrypt"
-
-overrides:
-   ceph_ansible:
-     vars:
-        dmcrypt: False
diff --git a/qa/suites/ceph-ansible/smoke/basic/2-config/dmcrypt_on.yaml b/qa/suites/ceph-ansible/smoke/basic/2-config/dmcrypt_on.yaml
deleted file mode 100644 (file)
index 12d63d3..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-meta:
-- desc: "use dmcrypt option"
-
-overrides:
-   ceph_ansible:
-     vars:
-        dmcrypt: True
diff --git a/qa/suites/ceph-ansible/smoke/basic/3-config/bluestore_with_dmcrypt.yaml b/qa/suites/ceph-ansible/smoke/basic/3-config/bluestore_with_dmcrypt.yaml
new file mode 100644 (file)
index 0000000..604e757
--- /dev/null
@@ -0,0 +1,8 @@
+meta:
+- desc: "use bluestore + dmcrypt option"
+
+overrides:
+   ceph_ansible:
+     vars:
+        osd_objectstore: bluestore
+        dmcrypt: True
diff --git a/qa/suites/ceph-ansible/smoke/basic/3-config/dmcrypt_off.yaml b/qa/suites/ceph-ansible/smoke/basic/3-config/dmcrypt_off.yaml
new file mode 100644 (file)
index 0000000..4bbd1c7
--- /dev/null
@@ -0,0 +1,7 @@
+meta:
+- desc: "without dmcrypt"
+
+overrides:
+   ceph_ansible:
+     vars:
+        dmcrypt: False
diff --git a/qa/suites/ceph-ansible/smoke/basic/3-config/dmcrypt_on.yaml b/qa/suites/ceph-ansible/smoke/basic/3-config/dmcrypt_on.yaml
new file mode 100644 (file)
index 0000000..12d63d3
--- /dev/null
@@ -0,0 +1,7 @@
+meta:
+- desc: "use dmcrypt option"
+
+overrides:
+   ceph_ansible:
+     vars:
+        dmcrypt: True
diff --git a/qa/suites/ceph-ansible/smoke/basic/3-tasks/ceph-admin-commands.yaml b/qa/suites/ceph-ansible/smoke/basic/3-tasks/ceph-admin-commands.yaml
deleted file mode 100644 (file)
index 33642d5..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-meta:
-- desc: "Run ceph-admin-commands.sh"
-tasks:
-- workunit:
-    clients:
-      client.0:
-        - ceph-tests/ceph-admin-commands.sh
diff --git a/qa/suites/ceph-ansible/smoke/basic/3-tasks/cls.yaml b/qa/suites/ceph-ansible/smoke/basic/3-tasks/cls.yaml
deleted file mode 100644 (file)
index 781a4d4..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-meta:
-- desc: "Run the rados cls tests"
-tasks:
-- workunit:
-    clients:
-      client.0:
-        - cls
diff --git a/qa/suites/ceph-ansible/smoke/basic/3-tasks/rbd_import_export.yaml b/qa/suites/ceph-ansible/smoke/basic/3-tasks/rbd_import_export.yaml
deleted file mode 100644 (file)
index 9495934..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-meta:
-- desc: "Run the rbd import/export tests"
-tasks:
-- workunit:
-    clients:
-      client.0:
-        - rbd/import_export.sh
diff --git a/qa/suites/ceph-ansible/smoke/basic/4-tasks/ceph-admin-commands.yaml b/qa/suites/ceph-ansible/smoke/basic/4-tasks/ceph-admin-commands.yaml
new file mode 100644 (file)
index 0000000..33642d5
--- /dev/null
@@ -0,0 +1,7 @@
+meta:
+- desc: "Run ceph-admin-commands.sh"
+tasks:
+- workunit:
+    clients:
+      client.0:
+        - ceph-tests/ceph-admin-commands.sh
diff --git a/qa/suites/ceph-ansible/smoke/basic/4-tasks/cls.yaml b/qa/suites/ceph-ansible/smoke/basic/4-tasks/cls.yaml
new file mode 100644 (file)
index 0000000..781a4d4
--- /dev/null
@@ -0,0 +1,7 @@
+meta:
+- desc: "Run the rados cls tests"
+tasks:
+- workunit:
+    clients:
+      client.0:
+        - cls
diff --git a/qa/suites/ceph-ansible/smoke/basic/4-tasks/rbd_import_export.yaml b/qa/suites/ceph-ansible/smoke/basic/4-tasks/rbd_import_export.yaml
new file mode 100644 (file)
index 0000000..9495934
--- /dev/null
@@ -0,0 +1,7 @@
+meta:
+- desc: "Run the rbd import/export tests"
+tasks:
+- workunit:
+    clients:
+      client.0:
+        - rbd/import_export.sh
diff --git a/qa/suites/ceph-ansible/smoke/basic/ceph_ansible.yaml b/qa/suites/ceph-ansible/smoke/basic/ceph_ansible.yaml
deleted file mode 100644 (file)
index e7e8cda..0000000
+++ /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: