]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
create a scenario config file for mon initial members
authorAlfredo Deza <adeza@redhat.com>
Thu, 27 Oct 2016 19:30:40 +0000 (15:30 -0400)
committerAlfredo Deza <adeza@redhat.com>
Fri, 4 Nov 2016 17:59:33 +0000 (13:59 -0400)
Signed-off-by: Alfredo Deza <adeza@redhat.com>
Resolves: pytest#harness

tests/functional/ubuntu/16.04/mon/initial_members/scenario.py [new file with mode: 0644]

diff --git a/tests/functional/ubuntu/16.04/mon/initial_members/scenario.py b/tests/functional/ubuntu/16.04/mon/initial_members/scenario.py
new file mode 100644 (file)
index 0000000..caabef6
--- /dev/null
@@ -0,0 +1,15 @@
+# Basic information about ceph and its configuration
+ceph = {
+    'releases': ['infernalis', 'jewel'],
+    'cluster_name': 'ceph'
+}
+
+# remote nodes to test, with anything specific to them that might be useful for
+# tests to get. Each one of these can get requested as a py.test fixture to
+# validate information.
+nodes = {
+    'mon0': {
+        'username': 'vagrant',
+        'components': ['mon', 'mon_initial_members']
+    }
+}