]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
tests: make centos7_cluster use three mons 1141/head
authorAndrew Schoen <aschoen@redhat.com>
Thu, 1 Dec 2016 23:27:09 +0000 (17:27 -0600)
committerAndrew Schoen <aschoen@redhat.com>
Thu, 1 Dec 2016 23:27:09 +0000 (17:27 -0600)
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
tests/functional/centos/7/cluster/hosts
tests/functional/centos/7/cluster/scenario.py
tests/functional/centos/7/cluster/vagrant_variables.yml

index 356860f9b02ff0721834f233ef69c10167574dbd..b732c41543d5e90cea63d962fa93e96fcadfbae8 100644 (file)
@@ -1,5 +1,7 @@
 [mons]
-mon0 monitor_interface=eth1
+mon0 monitor_address=192.168.1.10
+mon1 monitor_interface=eth1
+mon2 monitor_address=192.168.1.12
 
 [osds]
 osd0
index 4597b589fc29ab669f8f1f388bb105f2d45ce413..658444f031ca7302e8d3e11776d2b821cb2a8974 100644 (file)
@@ -1,7 +1,8 @@
 # Basic information about ceph and its configuration
 ceph = {
     'releases': ['infernalis', 'jewel'],
-    'cluster_name': 'ceph'
+    'cluster_name': 'ceph',
+    'subnet': '192.168.1',
 }
 
 # remote nodes to test, with anything specific to them that might be useful for
@@ -10,7 +11,15 @@ ceph = {
 nodes = {
     'mon0': {
         'username': 'vagrant',
-        'components': ['mon', 'mon_initial_members']
+        'components': ['conf_tests']
+    },
+    'mon1': {
+        'username': 'vagrant',
+        'components': ['conf_tests']
+    },
+    'mon2': {
+        'username': 'vagrant',
+        'components': ['conf_tests']
     },
     'osd0': {
         'username': 'vagrant',
index ac76f1d8925303f28865659152b0c112915e2a91..7eb80e799f87568e5f5d3d8857d0fa3148efc54a 100644 (file)
@@ -4,7 +4,7 @@
 docker: false
 
 # DEFINE THE NUMBER OF VMS TO RUN
-mon_vms: 1
+mon_vms: 3
 osd_vms: 1
 mds_vms: 1
 rgw_vms: 1