release preparation
diff --git a/configs-examples/ceph_fuel.yaml b/configs-examples/ceph_fuel.yaml
new file mode 100644
index 0000000..7018e86
--- /dev/null
+++ b/configs-examples/ceph_fuel.yaml
@@ -0,0 +1,51 @@
+clouds:
+ fuel:
+ url: http://FUEL_WEB_IP:8000/
+ creds: USER:PASSWD@TENANT #admin:admin@admin
+ ssh_creds: root:FUEL_SSH_PASSWD
+ openstack_env: OPENSTACK_ENV_NAME
+
+discover: fuel_openrc_only
+
+internal:
+ var_dir_root: /tmp/perf_tests
+
+logging:
+ extra_logs: 1
+
+vm_configs:
+ wally_1024:
+ image:
+ name: wally_ubuntu
+ url: https://cloud-images.ubuntu.com/trusty/current/trusty-server-cloudimg-amd64-disk1.img
+ creds: "ssh://ubuntu@{ip}::{private_key_path}"
+
+ flavor:
+ name: wally_1024
+ hdd_size: 50
+ ram_size: 1024
+ cpu_count: 1
+
+ vol_sz: 30
+ keypair_name: wally_vm_key
+ name_templ: wally-{group}-{id}
+ aa_group_name: wally-aa-{0}
+ security_group: wally_ssh_to_everyone
+
+tests:
+ - start_test_nodes:
+ openstack:
+ # creds: /tmp/perf_tests/personalistic_sharron/test_openrc
+ # creds: ENV
+ creds: clouds
+ count: x1
+ cfg_name: wally_1024
+ network_zone_name: net04
+ flt_ip_pool: net04_ext
+
+ tests:
+ - io:
+ cfg: ceph
+ params:
+ FILENAME: /dev/vdb
+ NUM_ROUNDS: 7
diff --git a/configs-examples/ceph_raw.yaml b/configs-examples/ceph_raw.yaml
new file mode 100644
index 0000000..646945f
--- /dev/null
+++ b/configs-examples/ceph_raw.yaml
@@ -0,0 +1,27 @@
+clouds:
+ ceph: ssh://USER@ANY_CEPH_NODE::KEY_FILE
+
+discover: ceph
+
+explicit_nodes:
+ "ssh://TEST_USER@TESTNODE1::KEY_FILE": testnode
+ "ssh://TEST_USER@TESTNODE2::KEY_FILE": testnode
+ "ssh://TEST_USER@TESTNODE3::KEY_FILE": testnode
+
+sensors:
+ roles_mapping:
+ testnode: system-cpu, block-io, net-io
+ ceph-osd: system-cpu, block-io, net-io
+
+tests:
+ - io:
+ cfg: ceph
+ params:
+ FILENAME: /dev/rbd/rbd/RBD_DEV_NAME_OR_LINK
+ NUM_ROUNDS: 7
+
+internal:
+ var_dir_root: /tmp/perf_tests
+
+logging:
+ extra_logs: 1
diff --git a/configs-examples/hdd.yaml b/configs-examples/hdd.yaml
new file mode 100644
index 0000000..dcb5f9e
--- /dev/null
+++ b/configs-examples/hdd.yaml
@@ -0,0 +1,17 @@
+explicit_nodes:
+ local: testnode
+
+internal:
+ var_dir_root: /tmp/perf_tests
+
+testnode_log_root: /tmp/perf_tests_rem
+
+tests:
+ - io:
+ cfg: hdd
+ params:
+ FILENAME: FILE_ON_USB_HDD
+ NUM_ROUNDS: 7
+
+logging:
+ extra_logs: 1
\ No newline at end of file
diff --git a/configs-examples/local_ceph.yaml b/configs-examples/local_ceph.yaml
new file mode 100644
index 0000000..613894d
--- /dev/null
+++ b/configs-examples/local_ceph.yaml
@@ -0,0 +1,24 @@
+clouds:
+ ceph: local
+
+discover: ceph
+
+explicit_nodes:
+ local: testnode
+
+internal:
+ var_dir_root: /tmp/perf_tests
+
+sensors:
+ roles_mapping:
+ testnode: system-cpu, block-io
+
+tests:
+ - io:
+ cfg: ceph
+ params:
+ FILENAME: CEPH_RBD_DEVICE
+ NUM_ROUNDS: 7
+
+logging:
+ extra_logs: 1