This uses journal collocation for the osd.
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
Resolves: testing#updates
--- /dev/null
+../../../../../Vagrantfile
\ No newline at end of file
--- /dev/null
+---
+
+ceph_stable: True
+public_network: "192.168.42.0/24"
+cluster_network: "192.168.43.0/24"
+journal_size: 100
+devices:
+ - '/dev/sdb'
+ - '/dev/sdc'
+journal_collocation: True
+os_tuning_params:
+ - { name: kernel.pid_max, value: 4194303 }
+ - { name: fs.file-max, value: 26234859 }
--- /dev/null
+---
+os_tuning_params:
+ - { name: kernel.pid_max, value: 4194303 }
+ - { name: fs.file-max, value: 26234859 }
--- /dev/null
+[mons]
+# centos7 uses the enp0s8 interface
+mon0 monitor_interface=enp0s8
+
+[osds]
+osd0
--- /dev/null
+# 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']
+ },
+ 'osd0': {
+ 'username': 'vagrant',
+ 'components': [],
+ },
+}