summaryrefslogtreecommitdiffstats
path: root/TestUnits/replicate/self_heal/testenv.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'TestUnits/replicate/self_heal/testenv.cfg')
-rw-r--r--TestUnits/replicate/self_heal/testenv.cfg98
1 files changed, 98 insertions, 0 deletions
diff --git a/TestUnits/replicate/self_heal/testenv.cfg b/TestUnits/replicate/self_heal/testenv.cfg
new file mode 100644
index 0000000..a8b15c8
--- /dev/null
+++ b/TestUnits/replicate/self_heal/testenv.cfg
@@ -0,0 +1,98 @@
+[DEFAULT]
+user = root
+password = syst3m
+glusterversion = 3.2.5
+installpath =
+downloadpath =
+
+# ExportDir Section.
+# Necessary Options: dir
+# Optional: fstype, device
+[export1]
+dir = /export
+fstype = xfs
+device = /dev/sdb1
+
+[export2]
+dir = /export
+fstype = xfs
+device = /dev/sda1
+
+# Server Section
+# Necessary Options: hostname, username, password, glusterversion.
+# The username, password, glusterversion defaults from DEFAULTS Section and
+# can be overridden
+# Optional: installpath
+[server1]
+hostname = 10.1.11.110
+
+[server2]
+hostname = 10.1.11.111
+
+# Brick Section
+# Necessary Options: hostname, path
+[brick1]
+hostname = server1.hostname
+path = export1
+
+[brick2]
+hostname = server2.hostname
+path = export2
+
+
+# Volume Section
+# Necessary Options: volumename, volumetype, count, transporttype, bricks
+[volume1]
+volumename = replicate
+volumetype = replica
+count = 2
+transporttype = tcp
+bricks = brick1, brick2
+
+# Client Section
+# Necessary Options: hostname, username, password, glusterversion.
+# The username, password, glusterversion defaults from DEFAULTS Section and
+# can be overridden
+# Optional: installpath
+[client1]
+hostname = 10.1.11.109
+
+# MountDevice Section
+# Necessary Options: hostname, volume
+# The Server1.hostname could be a VIP also. Need not be a server hostname
+# IN a general case,(without NFS) we keep the 1st server from serverpool
+# The volume specified in this section is the "active_volume" onto which all
+# clients will be mounting to. This active volume and hostname can be changed
+# during testrun.
+[mountdevice1]
+hostname = server1.hostname
+volumename = volume1.volumename
+
+# Mount Section
+# addMount(dir, type, client, device=master.volume, logfile=None)
+[mount1]
+dir = /mnt/replicate1
+client = client1
+device = mountdevice1
+type = glusterfs
+logfile =
+options =
+
+[mount2]
+dir = /mnt/replicate2
+client = client1
+device = mountdevice1
+type = glusterfs
+
+[mount3]
+dir = /mnt/replicate3
+client = client1
+device = mountdevice1
+type = glusterfs
+
+
+
+
+
+
+