├── .gitignore ├── README ├── archs ├── aarch64.yaml ├── armv7.yaml ├── i686.yaml └── x86_64.yaml ├── ceph-deploy-overrides ├── ceph_deploy_dmcrypt.yaml ├── disable_diff_journal_disk.yaml ├── enable_diff_journal_disk.yaml └── enable_dmcrypt_diff_journal_disk.yaml ├── cephfs ├── begin.yaml ├── clusters │ ├── 3-mds.yaml │ ├── 9-mds.yaml │ └── fixed-2-ucephfs.yaml ├── mount │ ├── fuse.yaml │ └── kclient.yaml ├── overrides │ ├── debug.yaml │ ├── frag_enable.yaml │ ├── fuse │ │ └── default-perm │ │ │ ├── % │ │ │ ├── no.yaml │ │ │ └── yes.yaml │ └── whitelist_wrongly_marked_down.yaml └── tasks │ ├── cfuse_workunit_suites_blogbench.yaml │ ├── cfuse_workunit_suites_dbench.yaml │ ├── cfuse_workunit_suites_ffsb.yaml │ ├── cfuse_workunit_suites_fsstress.yaml │ ├── cfuse_workunit_trivial_sync.yaml │ └── libcephfs_interface_tests.yaml ├── clusters ├── extra-client.yaml ├── fixed-1.yaml ├── fixed-2.yaml ├── fixed-3-cephfs.yaml ├── fixed-3.yaml └── fixed-4.yaml ├── config └── rados.yaml ├── config_options └── cephdeploy_conf.yaml ├── debug ├── buildpackages.yaml ├── mds_client.yaml ├── openstack-15G.yaml └── openstack-30G.yaml ├── distros ├── a-supported-distro.yaml ├── all │ ├── centos_6.3.yaml │ ├── centos_6.4.yaml │ ├── centos_6.5.yaml │ ├── centos_7.0.yaml │ ├── centos_7.1.yaml │ ├── centos_7.2.yaml │ ├── debian_6.0.yaml │ ├── debian_7.0.yaml │ ├── debian_8.0.yaml │ ├── fedora_17.yaml │ ├── fedora_18.yaml │ ├── fedora_19.yaml │ ├── opensuse_12.2.yaml │ ├── opensuse_13.2.yaml │ ├── opensuse_42.1.yaml │ ├── rhel_6.3.yaml │ ├── rhel_6.4.yaml │ ├── rhel_6.5.yaml │ ├── rhel_7.0.yaml │ ├── sles_11-sp2.yaml │ ├── ubuntu_12.04.yaml │ ├── ubuntu_12.10.yaml │ ├── ubuntu_14.04.yaml │ ├── ubuntu_14.04_aarch64.yaml │ ├── ubuntu_14.04_i686.yaml │ └── ubuntu_16.04.yaml └── supported │ ├── centos_7.2.yaml │ ├── ubuntu_14.04.yaml │ └── ubuntu_16.04.yaml ├── erasure-code ├── ec-feature-plugins-v2.yaml ├── ec-feature-plugins-v3.yaml ├── ec-rados-default.yaml ├── ec-rados-parallel.yaml ├── ec-rados-plugin=isa-k=2-m=1.yaml ├── ec-rados-plugin=jerasure-k=2-m=1.yaml ├── ec-rados-plugin=jerasure-k=3-m=1.yaml ├── ec-rados-plugin=lrc-k=4-m=2-l=3.yaml ├── ec-rados-plugin=shec-k=4-m=3-c=2.yaml └── ec-rados-sequential.yaml ├── fs ├── btrfs.yaml ├── ext4.yaml └── xfs.yaml ├── machine_types ├── schedule_rados.sh ├── schedule_rados_ovh.sh └── vps.yaml ├── mon_kv_backend ├── leveldb.yaml └── rocksdb.yaml ├── nightlies └── cron_wrapper ├── objectstore ├── bluestore.yaml └── filestore.yaml ├── overrides ├── 2-size-1-min-size.yaml ├── 2-size-2-min-size.yaml ├── 3-size-2-min-size.yaml ├── short_pg_log.yaml └── whitelist_wrongly_marked_down.yaml ├── packages └── packages.yaml ├── releases ├── infernalis.yaml ├── jewel.yaml └── kraken.yaml ├── rgw_pool_type ├── ec-cache.yaml ├── ec-profile.yaml ├── ec.yaml └── replicated.yaml ├── suites ├── big │ └── rados-thrash │ │ ├── % │ │ ├── ceph │ │ └── ceph.yaml │ │ ├── clusters │ │ ├── big.yaml │ │ ├── medium.yaml │ │ └── small.yaml │ │ ├── fs │ │ ├── btrfs.yaml │ │ └── xfs.yaml │ │ ├── thrashers │ │ └── default.yaml │ │ └── workloads │ │ └── snaps-few-objects.yaml ├── buildpackages │ ├── any │ │ ├── % │ │ ├── distros │ │ └── tasks │ │ │ └── release.yaml │ └── tests │ │ ├── % │ │ ├── distros │ │ └── tasks │ │ └── release.yaml ├── ceph-ansible │ └── smoke │ │ ├── % │ │ ├── 0-clusters │ │ ├── 3-node.yaml │ │ └── single_mon_osd.yaml │ │ ├── 1-distros │ │ ├── 2-setup │ │ └── ceph_ansible.yaml │ │ ├── 3-common │ │ ├── % │ │ ├── os_tuning │ │ │ └── vm_friendly.yaml │ │ └── source │ │ │ └── upstream_stable.yaml │ │ ├── 4-osd │ │ ├── % │ │ ├── devices │ │ │ ├── from_teuthology.yaml │ │ │ └── osd_auto_discovery.yaml │ │ └── journal │ │ │ └── collocated.yaml │ │ └── 5-tests │ │ ├── ceph-admin-commands.yaml │ │ ├── cls.yaml │ │ ├── rbd_cli_tests.yaml.disabled │ │ └── rbd_import_export.yaml ├── ceph-deploy │ └── basic │ │ ├── % │ │ ├── ceph-deploy-overrides │ │ ├── config_options │ │ ├── distros │ │ ├── python_versions │ │ ├── python_2.yaml │ │ └── python_3.yaml │ │ └── tasks │ │ └── ceph-admin-commands.yaml ├── ceph-disk │ └── basic │ │ ├── % │ │ ├── distros │ │ └── tasks │ │ └── ceph-disk.yaml ├── dummy │ ├── % │ └── all │ │ └── nop.yaml ├── experimental │ └── multimds │ │ ├── % │ │ ├── clusters │ │ └── 7-multimds.yaml │ │ └── tasks │ │ └── fsstress_thrash_subtrees.yaml ├── fs │ ├── 32bits │ │ ├── % │ │ ├── begin.yaml │ │ ├── clusters │ │ │ └── fixed-2-ucephfs.yaml │ │ ├── fs │ │ │ └── xfs.yaml │ │ ├── mount │ │ │ └── fuse.yaml │ │ ├── objectstore │ │ ├── overrides │ │ │ ├── + │ │ │ ├── debug.yaml │ │ │ ├── faked-ino.yaml │ │ │ ├── frag_enable.yaml │ │ │ └── whitelist_wrongly_marked_down.yaml │ │ └── tasks │ │ │ ├── cfuse_workunit_suites_fsstress.yaml │ │ │ └── cfuse_workunit_suites_pjd.yaml │ ├── basic │ │ ├── % │ │ ├── begin.yaml │ │ ├── clusters │ │ │ └── fixed-2-ucephfs.yaml │ │ ├── fs │ │ │ └── xfs.yaml │ │ ├── inline │ │ │ ├── no.yaml │ │ │ └── yes.yaml │ │ ├── mount │ │ │ └── fuse.yaml │ │ ├── objectstore │ │ ├── overrides │ │ │ ├── + │ │ │ ├── debug.yaml │ │ │ ├── frag_enable.yaml │ │ │ └── whitelist_wrongly_marked_down.yaml │ │ └── tasks │ │ │ ├── asok_dump_tree.yaml │ │ │ ├── cephfs_scrub_tests.yaml │ │ │ ├── cfuse_workunit_kernel_untar_build.yaml │ │ │ ├── cfuse_workunit_misc.yaml │ │ │ ├── cfuse_workunit_misc_test_o_trunc.yaml │ │ │ ├── cfuse_workunit_norstats.yaml │ │ │ ├── cfuse_workunit_quota.yaml │ │ │ ├── cfuse_workunit_suites_blogbench.yaml │ │ │ ├── cfuse_workunit_suites_dbench.yaml │ │ │ ├── cfuse_workunit_suites_ffsb.yaml │ │ │ ├── cfuse_workunit_suites_fsstress.yaml │ │ │ ├── cfuse_workunit_suites_fsx.yaml │ │ │ ├── cfuse_workunit_suites_fsync.yaml │ │ │ ├── cfuse_workunit_suites_iogen.yaml │ │ │ ├── cfuse_workunit_suites_iozone.yaml │ │ │ ├── cfuse_workunit_suites_pjd.yaml │ │ │ ├── cfuse_workunit_suites_truncate_delay.yaml │ │ │ ├── cfuse_workunit_trivial_sync.yaml │ │ │ ├── libcephfs_interface_tests.yaml │ │ │ ├── libcephfs_java.yaml │ │ │ ├── libcephfs_python.yaml │ │ │ └── mds_creation_retry.yaml │ ├── multiclient │ │ ├── % │ │ ├── begin.yaml │ │ ├── clusters │ │ │ ├── three_clients.yaml │ │ │ └── two_clients.yaml │ │ ├── fs │ │ │ └── xfs.yaml │ │ ├── mount │ │ │ ├── fuse.yaml │ │ │ └── kclient.yaml.disabled │ │ ├── objectstore │ │ ├── overrides │ │ │ ├── + │ │ │ ├── debug.yaml │ │ │ ├── frag_enable.yaml │ │ │ └── whitelist_wrongly_marked_down.yaml │ │ └── tasks │ │ │ ├── cephfs_misc_tests.yaml │ │ │ ├── fsx-mpi.yaml.disabled │ │ │ ├── ior-shared-file.yaml │ │ │ └── mdtest.yaml │ ├── multifs │ │ ├── % │ │ ├── begin.yaml │ │ ├── clusters │ │ │ └── 2-remote-clients.yaml │ │ ├── fs │ │ │ └── xfs.yaml │ │ ├── mount │ │ │ └── fuse.yaml │ │ ├── objectstore │ │ ├── overrides │ │ │ ├── + │ │ │ ├── debug.yaml │ │ │ ├── frag_enable.yaml │ │ │ ├── mon-debug.yaml │ │ │ └── whitelist_wrongly_marked_down.yaml │ │ └── tasks │ │ │ └── failover.yaml │ ├── permission │ │ ├── % │ │ ├── begin.yaml │ │ ├── clusters │ │ │ └── fixed-2-ucephfs.yaml │ │ ├── fs │ │ │ └── xfs.yaml │ │ ├── mount │ │ │ └── fuse.yaml │ │ ├── objectstore │ │ ├── overrides │ │ │ ├── + │ │ │ ├── debug.yaml │ │ │ ├── frag_enable.yaml │ │ │ └── whitelist_wrongly_marked_down.yaml │ │ └── tasks │ │ │ ├── cfuse_workunit_misc.yaml │ │ │ └── cfuse_workunit_suites_pjd.yaml │ ├── recovery │ │ ├── % │ │ ├── begin.yaml │ │ ├── clusters │ │ │ └── 4-remote-clients.yaml │ │ ├── fs │ │ │ └── xfs.yaml │ │ ├── mount │ │ │ └── fuse.yaml │ │ ├── objectstore │ │ ├── overrides │ │ │ ├── + │ │ │ ├── debug.yaml │ │ │ ├── frag_enable.yaml │ │ │ ├── fuse-unmounted.yaml │ │ │ └── whitelist_wrongly_marked_down.yaml │ │ └── tasks │ │ │ ├── auto-repair.yaml │ │ │ ├── backtrace.yaml │ │ │ ├── cap-flush.yaml │ │ │ ├── client-limits.yaml │ │ │ ├── client-readahad.yaml │ │ │ ├── client-recovery.yaml │ │ │ ├── config-commands.yaml │ │ │ ├── damage.yaml │ │ │ ├── data-scan.yaml │ │ │ ├── forward-scrub.yaml │ │ │ ├── fragment.yaml │ │ │ ├── journal-repair.yaml │ │ │ ├── mds-flush.yaml │ │ │ ├── mds-full.yaml │ │ │ ├── pool-perm.yaml │ │ │ ├── sessionmap.yaml │ │ │ ├── strays.yaml │ │ │ └── volume-client.yaml │ ├── snaps │ │ ├── % │ │ ├── begin.yaml │ │ ├── clusters │ │ │ └── fixed-2-ucephfs.yaml │ │ ├── fs │ │ │ └── xfs.yaml │ │ ├── mount │ │ │ └── fuse.yaml │ │ ├── objectstore │ │ ├── overrides │ │ │ ├── + │ │ │ ├── debug.yaml │ │ │ ├── frag_enable.yaml │ │ │ └── whitelist_wrongly_marked_down.yaml │ │ └── tasks │ │ │ └── snaptests.yaml │ ├── standbyreplay │ │ ├── % │ │ ├── begin.yaml │ │ ├── clusters │ │ │ └── standby-replay.yaml │ │ ├── fs │ │ │ └── xfs.yaml │ │ ├── mount │ │ │ └── fuse.yaml │ │ ├── objectstore │ │ ├── overrides │ │ │ ├── + │ │ │ ├── debug.yaml │ │ │ ├── frag_enable.yaml │ │ │ └── whitelist_wrongly_marked_down.yaml │ │ └── tasks │ │ │ └── migration.yaml │ ├── thrash │ │ ├── % │ │ ├── begin.yaml │ │ ├── ceph-thrash │ │ │ └── default.yaml │ │ ├── clusters │ │ │ └── mds-1active-1standby.yaml │ │ ├── fs │ │ │ └── xfs.yaml │ │ ├── mount │ │ │ └── fuse.yaml │ │ ├── msgr-failures │ │ │ ├── none.yaml │ │ │ └── osd-mds-delay.yaml │ │ ├── objectstore │ │ ├── overrides │ │ │ ├── + │ │ │ ├── debug.yaml │ │ │ ├── frag_enable.yaml │ │ │ └── whitelist_wrongly_marked_down.yaml │ │ └── tasks │ │ │ ├── cfuse_workunit_snaptests.yaml │ │ │ ├── cfuse_workunit_suites_fsstress.yaml │ │ │ ├── cfuse_workunit_suites_pjd.yaml │ │ │ └── cfuse_workunit_trivial_sync.yaml │ ├── traceless │ │ ├── % │ │ ├── begin.yaml │ │ ├── clusters │ │ │ └── fixed-2-ucephfs.yaml │ │ ├── fs │ │ │ └── xfs.yaml │ │ ├── mount │ │ │ └── fuse.yaml │ │ ├── objectstore │ │ ├── overrides │ │ │ ├── + │ │ │ ├── debug.yaml │ │ │ ├── frag_enable.yaml │ │ │ └── whitelist_wrongly_marked_down.yaml │ │ ├── tasks │ │ │ ├── cfuse_workunit_suites_blogbench.yaml │ │ │ ├── cfuse_workunit_suites_dbench.yaml │ │ │ ├── cfuse_workunit_suites_ffsb.yaml │ │ │ └── cfuse_workunit_suites_fsstress.yaml │ │ └── traceless │ │ │ └── 50pc.yaml │ └── verify │ │ ├── % │ │ ├── begin.yaml │ │ ├── clusters │ │ └── fixed-2-ucephfs.yaml │ │ ├── fs │ │ └── xfs.yaml │ │ ├── mount │ │ └── fuse.yaml │ │ ├── objectstore │ │ ├── overrides │ │ ├── + │ │ ├── debug.yaml │ │ ├── frag_enable.yaml │ │ ├── mon-debug.yaml │ │ └── whitelist_wrongly_marked_down.yaml │ │ ├── tasks │ │ ├── cfuse_workunit_suites_dbench.yaml │ │ ├── cfuse_workunit_suites_fsstress.yaml │ │ └── libcephfs_interface_tests.yaml │ │ └── validater │ │ ├── lockdep.yaml │ │ └── valgrind.yaml ├── hadoop │ └── basic │ │ ├── % │ │ ├── clusters │ │ └── fixed-3.yaml │ │ ├── tasks │ │ ├── repl.yaml │ │ ├── terasort.yaml │ │ └── wordcount.yaml │ │ └── xfs.yaml ├── kcephfs │ ├── cephfs │ │ ├── % │ │ ├── clusters │ │ │ └── fixed-3-cephfs.yaml │ │ ├── conf.yaml │ │ ├── fs │ │ │ └── xfs.yaml │ │ ├── inline │ │ │ ├── no.yaml │ │ │ └── yes.yaml │ │ └── tasks │ │ │ ├── kclient_workunit_direct_io.yaml │ │ │ ├── kclient_workunit_kernel_untar_build.yaml │ │ │ ├── kclient_workunit_misc.yaml │ │ │ ├── kclient_workunit_o_trunc.yaml │ │ │ ├── kclient_workunit_snaps.yaml │ │ │ ├── kclient_workunit_suites_dbench.yaml │ │ │ ├── kclient_workunit_suites_ffsb.yaml │ │ │ ├── kclient_workunit_suites_fsstress.yaml │ │ │ ├── kclient_workunit_suites_fsx.yaml │ │ │ ├── kclient_workunit_suites_fsync.yaml │ │ │ ├── kclient_workunit_suites_iozone.yaml │ │ │ ├── kclient_workunit_suites_pjd.yaml │ │ │ └── kclient_workunit_trivial_sync.yaml │ ├── mixed-clients │ │ ├── % │ │ ├── clusters │ │ │ └── 2-clients.yaml │ │ ├── conf.yaml │ │ ├── fs │ │ │ └── xfs.yaml │ │ └── tasks │ │ │ ├── kernel_cfuse_workunits_dbench_iozone.yaml │ │ │ └── kernel_cfuse_workunits_untarbuild_blogbench.yaml │ ├── recovery │ │ ├── % │ │ ├── clusters │ │ │ └── 4-remote-clients.yaml │ │ ├── debug │ │ │ └── mds_client.yaml │ │ ├── dirfrag │ │ │ └── frag_enable.yaml │ │ ├── mounts │ │ │ └── kmounts.yaml │ │ ├── tasks │ │ │ ├── auto-repair.yaml │ │ │ ├── backtrace.yaml │ │ │ ├── client-limits.yaml │ │ │ ├── client-recovery.yaml │ │ │ ├── config-commands.yaml │ │ │ ├── damage.yaml │ │ │ ├── data-scan.yaml │ │ │ ├── failover.yaml.disabled │ │ │ ├── forward-scrub.yaml │ │ │ ├── journal-repair.yaml │ │ │ ├── mds-flush.yaml │ │ │ ├── pool-perm.yaml │ │ │ ├── sessionmap.yaml │ │ │ ├── strays.yaml.disabled │ │ │ └── volume-client.yaml │ │ └── xfs.yaml │ └── thrash │ │ ├── % │ │ ├── clusters │ │ └── fixed-3-cephfs.yaml │ │ ├── conf.yaml │ │ ├── fs │ │ └── xfs.yaml │ │ ├── thrashers │ │ ├── default.yaml │ │ ├── mds.yaml │ │ └── mon.yaml │ │ └── workloads │ │ ├── kclient_workunit_suites_ffsb.yaml │ │ └── kclient_workunit_suites_iozone.yaml ├── knfs │ └── basic │ │ ├── % │ │ ├── ceph │ │ └── base.yaml │ │ ├── clusters │ │ └── extra-client.yaml │ │ ├── fs │ │ └── xfs.yaml │ │ ├── mount │ │ ├── v3.yaml │ │ └── v4.yaml │ │ └── tasks │ │ ├── nfs-workunit-kernel-untar-build.yaml │ │ ├── nfs_workunit_misc.yaml │ │ ├── nfs_workunit_suites_blogbench.yaml │ │ ├── nfs_workunit_suites_dbench.yaml │ │ ├── nfs_workunit_suites_ffsb.yaml │ │ ├── nfs_workunit_suites_fsstress.yaml │ │ └── nfs_workunit_suites_iozone.yaml ├── krbd │ ├── rbd-nomount │ │ ├── % │ │ ├── clusters │ │ │ └── fixed-3.yaml │ │ ├── conf.yaml │ │ ├── fs │ │ │ └── btrfs.yaml │ │ ├── install │ │ │ └── ceph.yaml │ │ ├── msgr-failures │ │ │ ├── few.yaml │ │ │ └── many.yaml │ │ └── tasks │ │ │ ├── rbd_concurrent.yaml │ │ │ ├── rbd_huge_tickets.yaml │ │ │ ├── rbd_image_read.yaml │ │ │ ├── rbd_kernel.yaml │ │ │ ├── rbd_kfsx.yaml │ │ │ ├── rbd_map_snapshot_io.yaml │ │ │ ├── rbd_map_unmap.yaml │ │ │ └── rbd_simple_big.yaml │ ├── rbd │ │ ├── % │ │ ├── clusters │ │ │ └── fixed-3.yaml │ │ ├── conf.yaml │ │ ├── fs │ │ │ └── btrfs.yaml │ │ ├── msgr-failures │ │ │ ├── few.yaml │ │ │ └── many.yaml │ │ └── tasks │ │ │ ├── rbd_fio.yaml │ │ │ ├── rbd_workunit_kernel_untar_build.yaml │ │ │ ├── rbd_workunit_suites_dbench.yaml │ │ │ ├── rbd_workunit_suites_ffsb.yaml │ │ │ ├── rbd_workunit_suites_fsstress.yaml │ │ │ ├── rbd_workunit_suites_fsstress_btrfs.yaml │ │ │ ├── rbd_workunit_suites_fsstress_ext4.yaml │ │ │ ├── rbd_workunit_suites_fsx.yaml │ │ │ ├── rbd_workunit_suites_iozone.yaml │ │ │ └── rbd_workunit_trivial_sync.yaml │ ├── singleton │ │ ├── % │ │ ├── conf.yaml │ │ ├── fs │ │ │ └── btrfs.yaml │ │ ├── msgr-failures │ │ │ ├── few.yaml │ │ │ └── many.yaml │ │ └── tasks │ │ │ └── rbd_xfstests.yaml │ ├── thrash │ │ ├── % │ │ ├── clusters │ │ │ └── fixed-3.yaml │ │ ├── conf.yaml │ │ ├── fs │ │ │ └── btrfs.yaml │ │ ├── thrashers │ │ │ ├── default.yaml │ │ │ └── mon-thrasher.yaml │ │ └── workloads │ │ │ ├── rbd_fio.yaml │ │ │ ├── rbd_workunit_suites_ffsb.yaml │ │ │ └── rbd_workunit_suites_iozone.yaml.disabled │ └── unmap │ │ ├── % │ │ ├── ceph │ │ └── ceph.yaml │ │ ├── clusters │ │ └── separate-client.yaml │ │ ├── conf.yaml │ │ ├── kernels │ │ ├── pre-single-major.yaml │ │ ├── single-major-off.yaml │ │ └── single-major-on.yaml │ │ ├── tasks │ │ └── unmap.yaml │ │ └── xfs.yaml ├── marginal │ ├── basic │ │ ├── % │ │ ├── clusters │ │ │ └── fixed-3.yaml │ │ ├── fs │ │ │ └── btrfs.yaml │ │ └── tasks │ │ │ ├── kclient_workunit_suites_blogbench.yaml │ │ │ └── kclient_workunit_suites_fsx.yaml │ ├── fs-misc │ │ ├── % │ │ ├── clusters │ │ │ └── two_clients.yaml │ │ ├── fs │ │ │ └── btrfs.yaml │ │ └── tasks │ │ │ └── locktest.yaml │ ├── mds_restart │ │ ├── % │ │ ├── clusters │ │ │ └── one_mds.yaml │ │ └── tasks │ │ │ └── restart-workunit-backtraces.yaml │ └── multimds │ │ ├── % │ │ ├── clusters │ │ ├── 3-node-3-mds.yaml │ │ └── 3-node-9-mds.yaml │ │ ├── fs │ │ └── btrfs.yaml │ │ ├── mounts │ │ ├── ceph-fuse.yaml │ │ └── kclient.yaml │ │ ├── tasks │ │ ├── workunit_misc.yaml │ │ ├── workunit_suites_blogbench.yaml │ │ ├── workunit_suites_dbench.yaml │ │ ├── workunit_suites_fsstress.yaml │ │ ├── workunit_suites_fsync.yaml │ │ ├── workunit_suites_pjd.yaml │ │ └── workunit_suites_truncate_delay.yaml │ │ └── thrash │ │ ├── exports.yaml │ │ └── normal.yaml ├── mgr │ └── basic │ │ ├── % │ │ ├── clusters │ │ └── 2-node-mgr.yaml │ │ ├── debug │ │ └── mgr.yaml │ │ ├── fs │ │ └── xfs.yaml │ │ └── tasks │ │ └── failover.yaml ├── mixed-clients │ └── basic │ │ ├── clusters │ │ └── fixed-3.yaml │ │ ├── fs │ │ └── btrfs.yaml │ │ └── tasks │ │ ├── kernel_cfuse_workunits_dbench_iozone.yaml │ │ └── kernel_cfuse_workunits_untarbuild_blogbench.yaml ├── multimds │ ├── basic │ │ ├── % │ │ ├── begin.yaml │ │ ├── clusters │ │ │ ├── 3-mds.yaml │ │ │ └── 9-mds.yaml │ │ ├── fs │ │ ├── inline │ │ ├── mount │ │ │ ├── fuse.yaml │ │ │ └── kclient.yaml │ │ ├── overrides │ │ │ ├── % │ │ │ ├── basic │ │ │ └── fuse-default-perm-no.yaml │ │ └── tasks │ └── verify │ │ ├── % │ │ ├── begin.yaml │ │ ├── clusters │ │ ├── 3-mds.yaml │ │ └── 9-mds.yaml │ │ ├── fs │ │ ├── mount │ │ ├── fuse.yaml │ │ └── kclient.yaml │ │ ├── overrides │ │ ├── % │ │ ├── fuse-default-perm-no.yaml │ │ └── verify │ │ ├── tasks │ │ └── validater ├── powercycle │ └── osd │ │ ├── % │ │ ├── clusters │ │ └── 3osd-1per-target.yaml │ │ ├── fs │ │ ├── btrfs.yaml │ │ └── xfs.yaml │ │ ├── objectstore │ │ ├── powercycle │ │ └── default.yaml │ │ └── tasks │ │ ├── admin_socket_objecter_requests.yaml │ │ ├── cfuse_workunit_kernel_untar_build.yaml │ │ ├── cfuse_workunit_misc.yaml │ │ ├── cfuse_workunit_suites_ffsb.yaml │ │ ├── cfuse_workunit_suites_fsstress.yaml │ │ ├── cfuse_workunit_suites_fsx.yaml │ │ ├── cfuse_workunit_suites_fsync.yaml │ │ ├── cfuse_workunit_suites_pjd.yaml │ │ ├── cfuse_workunit_suites_truncate_delay.yaml │ │ ├── rados_api_tests.yaml │ │ ├── radosbench.yaml │ │ ├── readwrite.yaml │ │ ├── snaps-few-objects.yaml │ │ └── snaps-many-objects.yaml ├── rados │ ├── basic │ │ ├── % │ │ ├── clusters │ │ │ ├── + │ │ │ ├── fixed-2.yaml │ │ │ └── openstack.yaml │ │ ├── fs │ │ │ ├── btrfs.yaml │ │ │ └── xfs.yaml │ │ ├── mon_kv_backend │ │ ├── msgr-failures │ │ │ ├── few.yaml │ │ │ └── many.yaml │ │ ├── msgr │ │ │ ├── async.yaml │ │ │ ├── random.yaml │ │ │ └── simple.yaml │ │ ├── objectstore │ │ ├── rados.yaml │ │ └── tasks │ │ │ ├── rados_api_tests.yaml │ │ │ ├── rados_cls_all.yaml │ │ │ ├── rados_python.yaml │ │ │ ├── rados_stress_watch.yaml │ │ │ ├── rados_striper.yaml │ │ │ ├── rados_workunit_loadgen_big.yaml │ │ │ ├── rados_workunit_loadgen_mix.yaml │ │ │ ├── rados_workunit_loadgen_mostlyread.yaml │ │ │ ├── readwrite.yaml │ │ │ ├── repair_test.yaml │ │ │ ├── rgw_snaps.yaml │ │ │ └── scrub_test.yaml │ ├── monthrash │ │ ├── % │ │ ├── ceph │ │ │ └── ceph.yaml │ │ ├── clusters │ │ │ ├── 3-mons.yaml │ │ │ └── 9-mons.yaml │ │ ├── fs │ │ │ └── xfs.yaml │ │ ├── mon_kv_backend │ │ ├── msgr │ │ ├── msgr-failures │ │ │ ├── few.yaml │ │ │ └── mon-delay.yaml │ │ ├── objectstore │ │ ├── rados.yaml │ │ ├── thrashers │ │ │ ├── force-sync-many.yaml │ │ │ ├── many.yaml │ │ │ ├── one.yaml │ │ │ ├── sync-many.yaml │ │ │ └── sync.yaml │ │ └── workloads │ │ │ ├── pool-create-delete.yaml │ │ │ ├── rados_5925.yaml │ │ │ ├── rados_api_tests.yaml │ │ │ ├── rados_mon_workunits.yaml │ │ │ └── snaps-few-objects.yaml │ ├── multimon │ │ ├── % │ │ ├── clusters │ │ │ ├── 21.yaml │ │ │ ├── 3.yaml │ │ │ ├── 6.yaml │ │ │ └── 9.yaml │ │ ├── fs │ │ │ └── xfs.yaml │ │ ├── mon_kv_backend │ │ ├── msgr │ │ ├── msgr-failures │ │ │ ├── few.yaml │ │ │ └── many.yaml │ │ ├── objectstore │ │ ├── rados.yaml │ │ └── tasks │ │ │ ├── mon_clock_no_skews.yaml │ │ │ ├── mon_clock_with_skews.yaml │ │ │ └── mon_recovery.yaml │ ├── objectstore │ │ ├── alloc-hint.yaml │ │ ├── ceph_objectstore_tool.yaml │ │ ├── filejournal.yaml │ │ ├── filestore-idempotent-aio-journal.yaml │ │ ├── filestore-idempotent.yaml │ │ ├── fusestore.yaml │ │ ├── keyvaluedb.yaml │ │ ├── objectcacher-stress.yaml │ │ └── objectstore.yaml │ ├── singleton-nomsgr │ │ ├── % │ │ ├── all │ │ │ ├── cache-fs-trunc.yaml │ │ │ ├── ceph-post-file.yaml │ │ │ ├── export-after-evict.yaml │ │ │ ├── full-tiering.yaml │ │ │ ├── msgr.yaml │ │ │ ├── multi-backfill-reject.yaml │ │ │ └── valgrind-leaks.yaml │ │ └── rados.yaml │ ├── singleton │ │ ├── % │ │ ├── all │ │ │ ├── admin-socket.yaml │ │ │ ├── cephtool.yaml │ │ │ ├── divergent_priors.yaml │ │ │ ├── divergent_priors2.yaml │ │ │ ├── dump-stuck.yaml │ │ │ ├── ec-lost-unfound.yaml │ │ │ ├── lost-unfound-delete.yaml │ │ │ ├── lost-unfound.yaml │ │ │ ├── mon-config-keys.yaml │ │ │ ├── mon-seesaw.yaml │ │ │ ├── mon-thrasher.yaml │ │ │ ├── osd-backfill.yaml │ │ │ ├── osd-recovery-incomplete.yaml │ │ │ ├── osd-recovery.yaml │ │ │ ├── peer.yaml │ │ │ ├── pg-removal-interruption.yaml │ │ │ ├── radostool.yaml │ │ │ ├── rebuild-mondb.yaml │ │ │ ├── reg11184.yaml │ │ │ ├── resolve_stuck_peering.yaml │ │ │ ├── rest-api.yaml │ │ │ ├── test_envlibrados_for_rocksdb.yaml │ │ │ ├── thrash-rados.yaml │ │ │ ├── thrash_cache_writeback_proxy_none.yaml │ │ │ └── watch-notify-same-primary.yaml │ │ ├── fs │ │ │ └── xfs.yaml │ │ ├── msgr │ │ ├── msgr-failures │ │ │ ├── few.yaml │ │ │ └── many.yaml │ │ ├── objectstore │ │ └── rados.yaml │ ├── thrash-erasure-code-big │ │ ├── % │ │ ├── cluster │ │ │ ├── + │ │ │ ├── 12-osds.yaml │ │ │ └── openstack.yaml │ │ ├── fs │ │ ├── leveldb.yaml │ │ ├── msgr-failures │ │ ├── objectstore │ │ ├── rados.yaml │ │ ├── thrashers │ │ │ ├── default.yaml │ │ │ ├── fastread.yaml │ │ │ ├── mapgap.yaml │ │ │ ├── morepggrow.yaml │ │ │ └── pggrow.yaml │ │ └── workloads │ │ │ └── ec-rados-plugin=lrc-k=4-m=2-l=3.yaml │ ├── thrash-erasure-code-isa │ │ ├── % │ │ ├── arch │ │ │ └── x86_64.yaml │ │ ├── clusters │ │ ├── fs │ │ ├── leveldb.yaml │ │ ├── msgr-failures │ │ ├── objectstore │ │ ├── rados.yaml │ │ ├── supported │ │ ├── thrashers │ │ └── workloads │ │ │ └── ec-rados-plugin=isa-k=2-m=1.yaml │ ├── thrash-erasure-code-shec │ │ ├── % │ │ ├── clusters │ │ │ ├── + │ │ │ ├── fixed-4.yaml │ │ │ └── openstack.yaml │ │ ├── fs │ │ │ └── xfs.yaml │ │ ├── leveldb.yaml │ │ ├── msgr-failures │ │ ├── objectstore │ │ ├── rados.yaml │ │ ├── thrashers │ │ │ └── default.yaml │ │ └── workloads │ │ │ └── ec-rados-plugin=shec-k=4-m=3-c=2.yaml │ ├── thrash-erasure-code │ │ ├── % │ │ ├── clusters │ │ ├── fast │ │ │ ├── fast.yaml │ │ │ └── normal.yaml │ │ ├── fs │ │ ├── leveldb.yaml │ │ ├── msgr-failures │ │ ├── objectstore │ │ ├── rados.yaml │ │ ├── thrashers │ │ │ ├── default.yaml │ │ │ ├── fastread.yaml │ │ │ ├── mapgap.yaml │ │ │ ├── morepggrow.yaml │ │ │ └── pggrow.yaml │ │ └── workloads │ │ │ ├── ec-pool-snaps-few-objects-overwrites.yaml │ │ │ ├── ec-rados-plugin=jerasure-k=2-m=1.yaml │ │ │ ├── ec-rados-plugin=jerasure-k=3-m=1.yaml │ │ │ ├── ec-radosbench.yaml │ │ │ ├── ec-small-objects-fast-read-overwrites.yaml │ │ │ ├── ec-small-objects-fast-read.yaml │ │ │ ├── ec-small-objects-overwrites.yaml │ │ │ ├── ec-small-objects.yaml │ │ │ └── ec-snaps-few-objects-overwrites.yaml │ ├── thrash │ │ ├── % │ │ ├── 0-size-min-size-overrides │ │ │ ├── 2-size-1-min-size.yaml │ │ │ ├── 2-size-2-min-size.yaml │ │ │ └── 3-size-2-min-size.yaml │ │ ├── 1-pg-log-overrides │ │ │ ├── normal_pg_log.yaml │ │ │ └── short_pg_log.yaml │ │ ├── clusters │ │ │ ├── + │ │ │ ├── fixed-2.yaml │ │ │ └── openstack.yaml │ │ ├── fs │ │ │ ├── btrfs.yaml │ │ │ └── xfs.yaml │ │ ├── hobj-sort.yaml │ │ ├── msgr │ │ ├── msgr-failures │ │ │ ├── fastclose.yaml │ │ │ ├── few.yaml │ │ │ └── osd-delay.yaml │ │ ├── objectstore │ │ ├── rados.yaml │ │ ├── rocksdb.yaml │ │ ├── thrashers │ │ │ ├── default.yaml │ │ │ ├── mapgap.yaml │ │ │ ├── morepggrow.yaml │ │ │ └── pggrow.yaml │ │ └── workloads │ │ │ ├── admin_socket_objecter_requests.yaml │ │ │ ├── cache-agent-big.yaml │ │ │ ├── cache-agent-small.yaml │ │ │ ├── cache-pool-snaps-readproxy.yaml │ │ │ ├── cache-pool-snaps.yaml │ │ │ ├── cache-snaps.yaml │ │ │ ├── cache.yaml │ │ │ ├── pool-snaps-few-objects.yaml │ │ │ ├── rados_api_tests.yaml │ │ │ ├── radosbench.yaml │ │ │ ├── small-objects.yaml │ │ │ ├── snaps-few-objects.yaml │ │ │ └── write_fadvise_dontneed.yaml │ ├── upgrade │ │ └── jewel-x-singleton │ │ │ ├── % │ │ │ ├── 0-cluster │ │ │ ├── + │ │ │ ├── openstack.yaml │ │ │ └── start.yaml │ │ │ ├── 1-jewel-install │ │ │ └── jewel.yaml │ │ │ ├── 2-partial-upgrade │ │ │ └── firsthalf.yaml │ │ │ ├── 3-thrash │ │ │ └── default.yaml │ │ │ ├── 4-mon │ │ │ └── mona.yaml │ │ │ ├── 5-workload │ │ │ ├── + │ │ │ ├── rbd-cls.yaml │ │ │ ├── rbd-import-export.yaml │ │ │ ├── readwrite.yaml │ │ │ └── snaps-few-objects.yaml │ │ │ ├── 6-next-mon │ │ │ └── monb.yaml │ │ │ ├── 7-workload │ │ │ ├── + │ │ │ ├── radosbench.yaml │ │ │ └── rbd_api.yaml │ │ │ ├── 8-next-mon │ │ │ └── monc.yaml │ │ │ └── 9-workload │ │ │ ├── + │ │ │ ├── rbd-python.yaml │ │ │ ├── rgw-swift.yaml │ │ │ └── snaps-many-objects.yaml │ └── verify │ │ ├── % │ │ ├── 1thrash │ │ ├── default.yaml │ │ └── none.yaml │ │ ├── clusters │ │ ├── + │ │ ├── fixed-2.yaml │ │ └── openstack.yaml │ │ ├── fs │ │ └── btrfs.yaml │ │ ├── mon_kv_backend │ │ ├── msgr │ │ ├── msgr-failures │ │ └── few.yaml │ │ ├── objectstore │ │ ├── rados.yaml │ │ ├── tasks │ │ ├── mon_recovery.yaml │ │ ├── rados_api_tests.yaml │ │ └── rados_cls_all.yaml │ │ └── validater │ │ ├── lockdep.yaml │ │ └── valgrind.yaml ├── rbd │ ├── basic │ │ ├── % │ │ ├── base │ │ │ └── install.yaml │ │ ├── cachepool │ │ │ ├── none.yaml │ │ │ └── small.yaml │ │ ├── clusters │ │ │ ├── + │ │ │ ├── fixed-1.yaml │ │ │ └── openstack.yaml │ │ ├── fs │ │ │ └── xfs.yaml │ │ ├── msgr-failures │ │ │ ├── few.yaml │ │ │ └── many.yaml │ │ ├── objectstore │ │ └── tasks │ │ │ ├── rbd_api_tests_old_format.yaml │ │ │ ├── rbd_cli_tests.yaml │ │ │ ├── rbd_cls_tests.yaml │ │ │ ├── rbd_lock_and_fence.yaml │ │ │ └── rbd_python_api_tests_old_format.yaml │ ├── cli │ │ ├── % │ │ ├── base │ │ │ └── install.yaml │ │ ├── clusters │ │ ├── features │ │ │ ├── defaults.yaml │ │ │ ├── format-1.yaml │ │ │ ├── journaling.yaml │ │ │ └── layering.yaml │ │ ├── fs │ │ ├── msgr-failures │ │ │ ├── few.yaml │ │ │ └── many.yaml │ │ ├── objectstore │ │ ├── pool │ │ │ ├── ec-data-pool.yaml │ │ │ ├── none.yaml │ │ │ ├── replicated-data-pool.yaml │ │ │ └── small-cache-pool.yaml │ │ └── workloads │ │ │ ├── rbd_cli_copy.yaml │ │ │ └── rbd_cli_import_export.yaml │ ├── librbd │ │ ├── % │ │ ├── cache │ │ │ ├── none.yaml │ │ │ ├── writeback.yaml │ │ │ └── writethrough.yaml │ │ ├── clusters │ │ │ ├── + │ │ │ ├── fixed-3.yaml │ │ │ └── openstack.yaml │ │ ├── config │ │ │ ├── copy-on-read.yaml │ │ │ ├── none.yaml │ │ │ └── skip-partial-discard.yaml │ │ ├── fs │ │ ├── msgr-failures │ │ │ └── few.yaml │ │ ├── objectstore │ │ ├── pool │ │ │ ├── ec-data-pool.yaml │ │ │ ├── none.yaml │ │ │ ├── replicated-data-pool.yaml │ │ │ └── small-cache-pool.yaml │ │ └── workloads │ │ │ ├── c_api_tests.yaml │ │ │ ├── c_api_tests_with_defaults.yaml │ │ │ ├── c_api_tests_with_journaling.yaml │ │ │ ├── fsx.yaml │ │ │ ├── python_api_tests.yaml │ │ │ ├── python_api_tests_with_defaults.yaml │ │ │ ├── python_api_tests_with_journaling.yaml │ │ │ └── rbd_fio.yaml │ ├── maintenance │ │ ├── % │ │ ├── base │ │ │ └── install.yaml │ │ ├── clusters │ │ │ ├── + │ │ │ ├── fixed-3.yaml │ │ │ └── openstack.yaml │ │ ├── objectstore │ │ ├── qemu │ │ │ └── xfstests.yaml │ │ ├── workloads │ │ │ ├── dynamic_features.yaml │ │ │ └── rebuild_object_map.yaml │ │ └── xfs.yaml │ ├── mirror │ │ ├── % │ │ ├── base │ │ │ └── install.yaml │ │ ├── cluster │ │ │ ├── + │ │ │ ├── 2-node.yaml │ │ │ └── openstack.yaml │ │ ├── fs │ │ ├── msgr-failures │ │ ├── objectstore │ │ ├── rbd-mirror │ │ │ └── one-per-cluster.yaml │ │ └── workloads │ │ │ ├── rbd-mirror-stress-workunit.yaml │ │ │ └── rbd-mirror-workunit.yaml │ ├── nbd │ │ ├── % │ │ ├── base │ │ ├── cluster │ │ │ ├── + │ │ │ ├── fixed-3.yaml │ │ │ └── openstack.yaml │ │ ├── fs │ │ ├── msgr-failures │ │ ├── objectstore │ │ ├── thrashers │ │ └── workloads │ │ │ ├── rbd_fsx_nbd.yaml │ │ │ └── rbd_nbd.yaml │ ├── qemu │ │ ├── % │ │ ├── cache │ │ │ ├── none.yaml │ │ │ ├── writeback.yaml │ │ │ └── writethrough.yaml │ │ ├── clusters │ │ │ ├── + │ │ │ ├── fixed-3.yaml │ │ │ └── openstack.yaml │ │ ├── features │ │ │ ├── defaults.yaml │ │ │ └── journaling.yaml │ │ ├── fs │ │ ├── msgr-failures │ │ │ └── few.yaml │ │ ├── objectstore │ │ ├── pool │ │ │ ├── ec-cache-pool.yaml │ │ │ ├── ec-data-pool.yaml │ │ │ ├── none.yaml │ │ │ ├── replicated-data-pool.yaml │ │ │ └── small-cache-pool.yaml │ │ └── workloads │ │ │ ├── #qemu_xfstests.yaml# │ │ │ ├── qemu_bonnie.yaml │ │ │ ├── qemu_fsstress.yaml │ │ │ ├── qemu_iozone.yaml.disabled │ │ │ └── qemu_xfstests.yaml │ ├── singleton │ │ ├── % │ │ ├── all │ │ │ ├── admin_socket.yaml │ │ │ ├── formatted-output.yaml │ │ │ ├── merge_diff.yaml │ │ │ ├── permissions.yaml │ │ │ ├── qemu-iotests-no-cache.yaml │ │ │ ├── qemu-iotests-writeback.yaml │ │ │ ├── qemu-iotests-writethrough.yaml │ │ │ ├── rbd-vs-unmanaged-snaps.yaml │ │ │ ├── rbd_mirror.yaml │ │ │ ├── rbdmap_RBDMAPFILE.yaml │ │ │ ├── read-flags-no-cache.yaml │ │ │ ├── read-flags-writeback.yaml │ │ │ ├── read-flags-writethrough.yaml │ │ │ └── verify_pool.yaml │ │ ├── objectstore │ │ └── openstack.yaml │ ├── thrash │ │ ├── % │ │ ├── base │ │ │ └── install.yaml │ │ ├── clusters │ │ │ ├── + │ │ │ ├── fixed-2.yaml │ │ │ └── openstack.yaml │ │ ├── fs │ │ │ └── xfs.yaml │ │ ├── msgr-failures │ │ │ └── few.yaml │ │ ├── objectstore │ │ ├── thrashers │ │ │ ├── cache.yaml │ │ │ └── default.yaml │ │ └── workloads │ │ │ ├── journal.yaml │ │ │ ├── rbd_api_tests.yaml │ │ │ ├── rbd_api_tests_copy_on_read.yaml │ │ │ ├── rbd_api_tests_journaling.yaml │ │ │ ├── rbd_api_tests_no_locking.yaml │ │ │ ├── rbd_fsx_cache_writeback.yaml │ │ │ ├── rbd_fsx_cache_writethrough.yaml │ │ │ ├── rbd_fsx_copy_on_read.yaml │ │ │ ├── rbd_fsx_journal.yaml │ │ │ └── rbd_fsx_nocache.yaml │ └── valgrind │ │ ├── % │ │ ├── base │ │ └── install.yaml │ │ ├── clusters │ │ ├── fs │ │ ├── objectstore │ │ ├── validator │ │ └── memcheck.yaml │ │ └── workloads │ │ ├── c_api_tests.yaml │ │ ├── c_api_tests_with_defaults.yaml │ │ ├── c_api_tests_with_journaling.yaml │ │ ├── fsx.yaml │ │ ├── python_api_tests.yaml │ │ ├── python_api_tests_with_defaults.yaml │ │ ├── python_api_tests_with_journaling.yaml │ │ └── rbd_mirror.yaml ├── rest │ └── basic │ │ └── tasks │ │ └── rest_test.yaml ├── rgw │ ├── multifs │ │ ├── % │ │ ├── clusters │ │ │ └── fixed-2.yaml │ │ ├── frontend │ │ │ ├── apache.yaml │ │ │ └── civetweb.yaml │ │ ├── fs │ │ │ └── xfs.yaml │ │ ├── objectstore │ │ ├── overrides.yaml │ │ ├── rgw_pool_type │ │ └── tasks │ │ │ ├── rgw_bucket_quota.yaml │ │ │ ├── rgw_multipart_upload.yaml │ │ │ ├── rgw_readwrite.yaml │ │ │ ├── rgw_roundtrip.yaml │ │ │ ├── rgw_s3tests.yaml │ │ │ ├── rgw_swift.yaml │ │ │ └── rgw_user_quota.yaml │ ├── singleton │ │ ├── % │ │ ├── all │ │ │ ├── radosgw-admin-data-sync.yaml │ │ │ ├── radosgw-admin-multi-region.yaml │ │ │ ├── radosgw-admin.yaml │ │ │ └── radosgw-convert-to-region.yaml │ │ ├── frontend │ │ │ ├── apache.yaml │ │ │ └── civetweb.yaml │ │ ├── fs │ │ │ └── xfs.yaml │ │ ├── objectstore │ │ ├── overrides.yaml │ │ ├── rgw_pool_type │ │ └── xfs.yaml │ └── verify │ │ ├── % │ │ ├── clusters │ │ └── fixed-2.yaml │ │ ├── frontend │ │ ├── apache.yaml │ │ └── civetweb.yaml │ │ ├── fs │ │ └── xfs.yaml │ │ ├── msgr-failures │ │ └── few.yaml │ │ ├── objectstore │ │ ├── overrides.yaml │ │ ├── rgw_pool_type │ │ ├── tasks │ │ ├── rgw_s3tests.yaml │ │ ├── rgw_s3tests_multiregion.yaml │ │ └── rgw_swift.yaml │ │ └── validater │ │ ├── lockdep.yaml │ │ └── valgrind.yaml ├── samba │ ├── % │ ├── clusters │ │ └── samba-basic.yaml │ ├── fs │ │ └── xfs.yaml │ ├── install │ │ └── install.yaml │ ├── mount │ │ ├── fuse.yaml │ │ ├── kclient.yaml │ │ ├── native.yaml │ │ └── noceph.yaml │ └── workload │ │ ├── cifs-dbench.yaml │ │ ├── cifs-fsstress.yaml │ │ ├── cifs-kernel-build.yaml.disabled │ │ └── smbtorture.yaml ├── smoke │ ├── 1node │ │ ├── % │ │ ├── clusters │ │ │ ├── + │ │ │ ├── fixed-1.yaml │ │ │ └── openstack.yaml │ │ └── tasks │ │ │ └── ceph-deploy.yaml │ ├── basic │ │ ├── % │ │ ├── clusters │ │ │ └── fixed-3-cephfs.yaml │ │ ├── fs │ │ │ └── btrfs.yaml │ │ └── tasks │ │ │ ├── cfuse_workunit_suites_blogbench.yaml │ │ │ ├── cfuse_workunit_suites_fsstress.yaml │ │ │ ├── cfuse_workunit_suites_iozone.yaml │ │ │ ├── cfuse_workunit_suites_pjd.yaml │ │ │ ├── kclient_workunit_direct_io.yaml │ │ │ ├── kclient_workunit_suites_dbench.yaml │ │ │ ├── kclient_workunit_suites_fsstress.yaml │ │ │ ├── kclient_workunit_suites_pjd.yaml │ │ │ ├── libcephfs_interface_tests.yaml │ │ │ ├── mon_thrash.yaml │ │ │ ├── rados_api_tests.yaml │ │ │ ├── rados_bench.yaml │ │ │ ├── rados_cache_snaps.yaml │ │ │ ├── rados_cls_all.yaml │ │ │ ├── rados_ec_snaps.yaml │ │ │ ├── rados_python.yaml │ │ │ ├── rados_workunit_loadgen_mix.yaml │ │ │ ├── rbd_api_tests.yaml │ │ │ ├── rbd_cli_import_export.yaml │ │ │ ├── rbd_fsx.yaml │ │ │ ├── rbd_python_api_tests.yaml │ │ │ ├── rbd_workunit_suites_iozone.yaml │ │ │ ├── rgw_ec_s3tests.yaml │ │ │ ├── rgw_s3tests.yaml │ │ │ └── rgw_swift.yaml │ └── systemd │ │ ├── % │ │ ├── distro │ │ ├── centos_7.2.yaml │ │ └── ubuntu_16.04.yaml │ │ └── tasks │ │ └── systemd.yaml ├── stress │ ├── bench │ │ ├── % │ │ ├── clusters │ │ │ └── fixed-3-cephfs.yaml │ │ └── tasks │ │ │ ├── cfuse_workunit_snaps.yaml │ │ │ └── kclient_workunit_suites_fsx.yaml │ └── thrash │ │ ├── % │ │ ├── clusters │ │ ├── 16-osd.yaml │ │ ├── 3-osd-1-machine.yaml │ │ └── 8-osd.yaml │ │ ├── fs │ │ ├── btrfs.yaml │ │ ├── none.yaml │ │ └── xfs.yaml │ │ ├── thrashers │ │ ├── default.yaml │ │ ├── fast.yaml │ │ └── more-down.yaml │ │ └── workloads │ │ ├── bonnie_cfuse.yaml │ │ ├── iozone_cfuse.yaml │ │ ├── radosbench.yaml │ │ └── readwrite.yaml ├── teuthology │ ├── buildpackages │ │ ├── % │ │ ├── distros │ │ └── tasks │ │ │ ├── branch.yaml │ │ │ ├── default.yaml │ │ │ └── tag.yaml │ ├── ceph │ │ ├── % │ │ ├── clusters │ │ │ └── single.yaml │ │ ├── distros │ │ └── tasks │ │ │ └── teuthology.yaml │ ├── integration.yaml │ ├── multi-cluster │ │ ├── % │ │ ├── all │ │ │ ├── ceph.yaml │ │ │ ├── thrashosds.yaml │ │ │ ├── upgrade.yaml │ │ │ └── workunit.yaml │ │ └── fs │ │ │ └── xfs.yaml │ ├── no-ceph │ │ ├── % │ │ ├── clusters │ │ │ └── single.yaml │ │ └── tasks │ │ │ └── teuthology.yaml │ ├── nop │ │ ├── % │ │ └── all │ │ │ └── nop.yaml │ ├── rgw │ │ ├── % │ │ ├── distros │ │ └── tasks │ │ │ ├── s3tests-civetweb.yaml │ │ │ ├── s3tests-fastcgi.yaml │ │ │ └── s3tests-fcgi.yaml │ └── workunits │ │ └── yes.yaml ├── tgt │ └── basic │ │ ├── % │ │ ├── clusters │ │ └── fixed-3.yaml │ │ ├── fs │ │ └── btrfs.yaml │ │ ├── msgr-failures │ │ ├── few.yaml │ │ └── many.yaml │ │ └── tasks │ │ ├── blogbench.yaml │ │ ├── bonnie.yaml │ │ ├── dbench-short.yaml │ │ ├── dbench.yaml │ │ ├── ffsb.yaml │ │ ├── fio.yaml │ │ ├── fsstress.yaml │ │ ├── fsx.yaml │ │ ├── fsync-tester.yaml │ │ ├── iogen.yaml │ │ ├── iozone-sync.yaml │ │ ├── iozone.yaml │ │ └── pjd.yaml └── upgrade │ ├── client-upgrade │ ├── hammer-client-x │ │ ├── basic │ │ │ ├── % │ │ │ ├── 0-cluster │ │ │ │ └── start.yaml │ │ │ ├── 1-install │ │ │ │ └── hammer-client-x.yaml │ │ │ └── 2-workload │ │ │ │ ├── rbd_api_tests.yaml │ │ │ │ └── rbd_cli_import_export.yaml │ │ └── rbd │ │ │ ├── % │ │ │ ├── 0-cluster │ │ │ └── start.yaml │ │ │ ├── 1-install │ │ │ └── hammer-client-x.yaml │ │ │ └── 2-workload │ │ │ └── rbd_notification_tests.yaml │ └── jewel-client-x │ │ ├── basic │ │ ├── % │ │ ├── 0-cluster │ │ │ └── start.yaml │ │ ├── 1-install │ │ │ └── jewel-client-x.yaml │ │ └── 2-workload │ │ │ ├── rbd_api_tests.yaml │ │ │ └── rbd_cli_import_export.yaml │ │ └── rbd │ │ ├── % │ │ ├── 0-cluster │ │ └── start.yaml │ │ ├── 1-install │ │ └── jewel-client-x.yaml │ │ └── 2-workload │ │ └── rbd_notification_tests.yaml │ ├── hammer-jewel-x │ ├── parallel │ │ ├── % │ │ ├── 0-cluster │ │ │ └── start.yaml │ │ ├── 1-hammer-jewel-install │ │ │ └── hammer-jewel.yaml │ │ ├── 2-workload │ │ │ ├── + │ │ │ ├── ec-rados-default.yaml │ │ │ ├── rados_api.yaml │ │ │ ├── rados_loadgenbig.yaml │ │ │ ├── test_rbd_api.yaml │ │ │ └── test_rbd_python.yaml │ │ ├── 3-upgrade-sequence │ │ │ ├── upgrade-all.yaml │ │ │ └── upgrade-osd-mds-mon.yaml │ │ ├── 3.5-finish.yaml │ │ ├── 4-jewel.yaml │ │ ├── 5-hammer-jewel-x-upgrade │ │ │ └── hammer-jewel-x.yaml │ │ ├── 6-workload │ │ │ ├── + │ │ │ ├── ec-rados-default.yaml │ │ │ ├── rados_api.yaml │ │ │ ├── rados_loadgenbig.yaml │ │ │ ├── test_rbd_api.yaml │ │ │ └── test_rbd_python.yaml │ │ ├── 7-upgrade-sequence │ │ │ ├── upgrade-all.yaml │ │ │ └── upgrade-by-daemon.yaml │ │ ├── 8-kraken.yaml │ │ ├── 9-final-workload │ │ │ ├── + │ │ │ ├── rados-snaps-few-objects.yaml │ │ │ ├── rados_loadgenmix.yaml │ │ │ ├── rados_mon_thrash.yaml │ │ │ ├── rbd_cls.yaml │ │ │ ├── rbd_import_export.yaml │ │ │ └── rgw_s3tests.yaml │ │ └── distros │ │ │ ├── centos_7.2.yaml │ │ │ └── ubuntu_14.04.yaml │ └── stress-split │ │ ├── % │ │ ├── 0-cluster │ │ ├── 1-hammer-install-and-upgrade-to-jewel │ │ └── hammer-to-jewel.yaml │ │ ├── 2-partial-upgrade │ │ ├── 3-thrash │ │ ├── 4-mon │ │ ├── 5-workload │ │ ├── 6-next-mon │ │ ├── 7-workload │ │ ├── 8-next-mon │ │ ├── 9-workload │ │ └── distros │ │ ├── centos_7.2.yaml │ │ └── ubuntu_14.04.yaml │ └── jewel-x │ ├── parallel │ ├── % │ ├── 0-cluster │ │ ├── + │ │ ├── openstack.yaml │ │ └── start.yaml │ ├── 1-jewel-install │ │ └── jewel.yaml │ ├── 2-workload │ │ ├── + │ │ ├── blogbench.yaml │ │ ├── ec-rados-default.yaml │ │ ├── rados_api.yaml │ │ ├── rados_loadgenbig.yaml │ │ ├── test_rbd_api.yaml │ │ └── test_rbd_python.yaml │ ├── 3-upgrade-sequence │ │ ├── upgrade-all.yaml │ │ └── upgrade-mon-osd-mds.yaml │ ├── 4-kraken.yaml │ ├── 5-final-workload │ │ ├── + │ │ ├── blogbench.yaml │ │ ├── rados-snaps-few-objects.yaml │ │ ├── rados_loadgenmix.yaml │ │ ├── rados_mon_thrash.yaml │ │ ├── rbd_cls.yaml │ │ ├── rbd_import_export.yaml │ │ └── rgw_swift.yaml │ ├── distros │ └── kraken.yaml │ ├── point-to-point-x │ ├── % │ ├── distros │ │ ├── centos_7.2.yaml │ │ └── ubuntu_14.04.yaml │ └── point-to-point-upgrade.yaml │ ├── stress-split-erasure-code-x86_64 │ ├── % │ ├── 0-cluster │ ├── 0-x86_64.yaml │ ├── 1-jewel-install │ ├── 2-partial-upgrade │ ├── 3-thrash │ │ └── default.yaml │ ├── 4-mon │ ├── 5-workload │ │ └── ec-rados-default.yaml │ ├── 6-next-mon │ ├── 8-next-mon │ └── 9-workload │ │ └── ec-rados-plugin=jerasure-k=3-m=1.yaml │ ├── stress-split-erasure-code │ ├── % │ ├── 0-cluster │ ├── 1-jewel-install │ ├── 2-partial-upgrade │ ├── 3-thrash │ │ └── default.yaml │ ├── 4-mon │ ├── 5-workload │ │ └── ec-rados-default.yaml │ ├── 6-next-mon │ ├── 8-next-mon │ ├── 9-workload │ │ └── ec-rados-plugin=jerasure-k=3-m=1.yaml │ └── distros │ └── stress-split │ ├── % │ ├── 0-cluster │ ├── + │ ├── openstack.yaml │ └── start.yaml │ ├── 1-jewel-install │ └── jewel.yaml │ ├── 2-partial-upgrade │ └── firsthalf.yaml │ ├── 3-thrash │ └── default.yaml │ ├── 4-mon │ └── mona.yaml │ ├── 5-workload │ ├── + │ ├── rbd-cls.yaml │ ├── rbd-import-export.yaml │ ├── readwrite.yaml │ └── snaps-few-objects.yaml │ ├── 6-next-mon │ └── monb.yaml │ ├── 7-workload │ ├── + │ ├── radosbench.yaml │ └── rbd_api.yaml │ ├── 8-next-mon │ └── monc.yaml │ ├── 9-workload │ ├── + │ ├── rbd-python.yaml │ ├── rgw-swift.yaml │ └── snaps-many-objects.yaml │ └── distros ├── tasks ├── __init__.py ├── admin_socket.py ├── apache.conf.template ├── autotest.py ├── aver.py ├── blktrace.py ├── boto.cfg.template ├── buildpackages.py ├── buildpackages │ ├── Makefile │ ├── centos-6.5-user-data.txt │ ├── centos-7.0-user-data.txt │ ├── centos-7.1-user-data.txt │ ├── centos-7.2-user-data.txt │ ├── common.sh │ ├── debian-8.0-user-data.txt │ ├── make-deb.sh │ ├── make-rpm.sh │ ├── opensuse-42.1-user-data.txt │ ├── ubuntu-12.04-user-data.txt │ ├── ubuntu-14.04-user-data.txt │ ├── ubuntu-16.04-user-data.txt │ └── user-data.txt ├── calamari_nosetests.py ├── calamari_setup.py ├── ceph.py ├── ceph_client.py ├── ceph_deploy.py ├── ceph_fuse.py ├── ceph_manager.py ├── ceph_objectstore_tool.py ├── ceph_test_case.py ├── cephfs │ ├── __init__.py │ ├── cephfs_test_case.py │ ├── filesystem.py │ ├── fuse_mount.py │ ├── kernel_mount.py │ ├── mount.py │ ├── test_auto_repair.py │ ├── test_backtrace.py │ ├── test_cap_flush.py │ ├── test_client_limits.py │ ├── test_client_recovery.py │ ├── test_config_commands.py │ ├── test_damage.py │ ├── test_data_scan.py │ ├── test_dump_tree.py │ ├── test_failover.py │ ├── test_flush.py │ ├── test_forward_scrub.py │ ├── test_fragment.py │ ├── test_full.py │ ├── test_journal_migration.py │ ├── test_journal_repair.py │ ├── test_mantle.py │ ├── test_misc.py │ ├── test_pool_perm.py │ ├── test_readahead.py │ ├── test_scrub_checks.py │ ├── test_sessionmap.py │ ├── test_strays.py │ └── test_volume_client.py ├── cephfs_test_runner.py ├── cifs_mount.py ├── cram.py ├── create_verify_lfn_objects.py ├── devstack.py ├── die_on_err.py ├── divergent_priors.py ├── divergent_priors2.py ├── dump_stuck.py ├── ec_lost_unfound.py ├── filestore_idempotent.py ├── kclient.py ├── locktest.py ├── logrotate.conf ├── lost_unfound.py ├── manypools.py ├── mds_creation_failure.py ├── mds_thrash.py ├── metadata.yaml ├── mgr │ ├── __init__.py │ ├── mgr_test_case.py │ └── test_failover.py ├── mod_fastcgi.conf.template ├── mod_proxy_fcgi.tcp.conf.template ├── mod_proxy_fcgi.uds.conf.template ├── mon_clock_skew_check.py ├── mon_recovery.py ├── mon_seesaw.py ├── mon_thrash.py ├── multibench.py ├── object_source_down.py ├── omapbench.py ├── osd_backfill.py ├── osd_failsafe_enospc.py ├── osd_recovery.py ├── peer.py ├── peering_speed_test.py ├── populate_rbd_pool.py ├── qemu.py ├── rados.py ├── radosbench.py ├── radosbenchsweep.py ├── radosgw_admin.py ├── radosgw_admin_rest.py ├── radosgw_agent.py ├── rbd.py ├── rbd_fio.py ├── rbd_fsx.py ├── rbd_mirror.py ├── rebuild_mondb.py ├── recovery_bench.py ├── reg11184.py ├── rep_lost_unfound_delete.py ├── repair_test.py ├── resolve_stuck_peering.py ├── rest_api.py ├── restart.py ├── rgw.py ├── rgw_logsocket.py ├── s3readwrite.py ├── s3roundtrip.py ├── s3tests.py ├── samba.py ├── scrub.py ├── scrub_test.py ├── systemd.py ├── tests │ ├── __init__.py │ ├── test_buildpackages.py │ ├── test_devstack.py │ └── test_radosgw_admin.py ├── teuthology_integration.py ├── tgt.py ├── thrash_pool_snaps.py ├── thrashosds.py ├── userdata_setup.yaml ├── userdata_teardown.yaml ├── util │ ├── __init__.py │ ├── rados.py │ ├── rgw.py │ └── test │ │ ├── __init__.py │ │ └── test_rados.py ├── vstart_runner.py ├── watch_notify_same_primary.py ├── watch_notify_stress.py └── workunit.py ├── timezone ├── eastern.yaml ├── pacific.yaml └── random.yaml └── tox.ini /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .*.sw[nmop] 3 | *.pyc 4 | .tox 5 | __pycache__ 6 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/README -------------------------------------------------------------------------------- /archs/aarch64.yaml: -------------------------------------------------------------------------------- 1 | arch: aarch64 2 | -------------------------------------------------------------------------------- /archs/armv7.yaml: -------------------------------------------------------------------------------- 1 | arch: armv7l 2 | -------------------------------------------------------------------------------- /archs/i686.yaml: -------------------------------------------------------------------------------- 1 | arch: i686 2 | -------------------------------------------------------------------------------- /archs/x86_64.yaml: -------------------------------------------------------------------------------- 1 | arch: x86_64 2 | -------------------------------------------------------------------------------- /cephfs/begin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/cephfs/begin.yaml -------------------------------------------------------------------------------- /cephfs/clusters/3-mds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/cephfs/clusters/3-mds.yaml -------------------------------------------------------------------------------- /cephfs/clusters/9-mds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/cephfs/clusters/9-mds.yaml -------------------------------------------------------------------------------- /cephfs/clusters/fixed-2-ucephfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/cephfs/clusters/fixed-2-ucephfs.yaml -------------------------------------------------------------------------------- /cephfs/mount/fuse.yaml: -------------------------------------------------------------------------------- 1 | tasks: 2 | - ceph-fuse: 3 | -------------------------------------------------------------------------------- /cephfs/mount/kclient.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/cephfs/mount/kclient.yaml -------------------------------------------------------------------------------- /cephfs/overrides/debug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/cephfs/overrides/debug.yaml -------------------------------------------------------------------------------- /cephfs/overrides/frag_enable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/cephfs/overrides/frag_enable.yaml -------------------------------------------------------------------------------- /cephfs/overrides/fuse/default-perm/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cephfs/overrides/fuse/default-perm/no.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/cephfs/overrides/fuse/default-perm/no.yaml -------------------------------------------------------------------------------- /cephfs/overrides/fuse/default-perm/yes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/cephfs/overrides/fuse/default-perm/yes.yaml -------------------------------------------------------------------------------- /cephfs/tasks/cfuse_workunit_suites_ffsb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/cephfs/tasks/cfuse_workunit_suites_ffsb.yaml -------------------------------------------------------------------------------- /cephfs/tasks/libcephfs_interface_tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/cephfs/tasks/libcephfs_interface_tests.yaml -------------------------------------------------------------------------------- /clusters/extra-client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/clusters/extra-client.yaml -------------------------------------------------------------------------------- /clusters/fixed-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/clusters/fixed-1.yaml -------------------------------------------------------------------------------- /clusters/fixed-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/clusters/fixed-2.yaml -------------------------------------------------------------------------------- /clusters/fixed-3-cephfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/clusters/fixed-3-cephfs.yaml -------------------------------------------------------------------------------- /clusters/fixed-3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/clusters/fixed-3.yaml -------------------------------------------------------------------------------- /clusters/fixed-4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/clusters/fixed-4.yaml -------------------------------------------------------------------------------- /config/rados.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/config/rados.yaml -------------------------------------------------------------------------------- /config_options/cephdeploy_conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/config_options/cephdeploy_conf.yaml -------------------------------------------------------------------------------- /debug/buildpackages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/debug/buildpackages.yaml -------------------------------------------------------------------------------- /debug/mds_client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/debug/mds_client.yaml -------------------------------------------------------------------------------- /debug/openstack-15G.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/debug/openstack-15G.yaml -------------------------------------------------------------------------------- /debug/openstack-30G.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/debug/openstack-30G.yaml -------------------------------------------------------------------------------- /distros/a-supported-distro.yaml: -------------------------------------------------------------------------------- 1 | all/centos_7.2.yaml -------------------------------------------------------------------------------- /distros/all/centos_6.3.yaml: -------------------------------------------------------------------------------- 1 | os_type: centos 2 | os_version: "6.3" 3 | -------------------------------------------------------------------------------- /distros/all/centos_6.4.yaml: -------------------------------------------------------------------------------- 1 | os_type: centos 2 | os_version: "6.4" 3 | -------------------------------------------------------------------------------- /distros/all/centos_6.5.yaml: -------------------------------------------------------------------------------- 1 | os_type: centos 2 | os_version: "6.5" 3 | -------------------------------------------------------------------------------- /distros/all/centos_7.0.yaml: -------------------------------------------------------------------------------- 1 | os_type: centos 2 | os_version: "7.0" 3 | -------------------------------------------------------------------------------- /distros/all/centos_7.1.yaml: -------------------------------------------------------------------------------- 1 | os_type: centos 2 | os_version: "7.1" 3 | -------------------------------------------------------------------------------- /distros/all/centos_7.2.yaml: -------------------------------------------------------------------------------- 1 | os_type: centos 2 | os_version: "7.2" 3 | -------------------------------------------------------------------------------- /distros/all/debian_6.0.yaml: -------------------------------------------------------------------------------- 1 | os_type: debian 2 | os_version: "6.0" 3 | -------------------------------------------------------------------------------- /distros/all/debian_7.0.yaml: -------------------------------------------------------------------------------- 1 | os_type: debian 2 | os_version: "7.0" 3 | -------------------------------------------------------------------------------- /distros/all/debian_8.0.yaml: -------------------------------------------------------------------------------- 1 | os_type: debian 2 | os_version: "8.0" 3 | -------------------------------------------------------------------------------- /distros/all/fedora_17.yaml: -------------------------------------------------------------------------------- 1 | os_type: fedora 2 | os_version: "17" 3 | -------------------------------------------------------------------------------- /distros/all/fedora_18.yaml: -------------------------------------------------------------------------------- 1 | os_type: fedora 2 | os_version: "18" 3 | -------------------------------------------------------------------------------- /distros/all/fedora_19.yaml: -------------------------------------------------------------------------------- 1 | os_type: fedora 2 | os_version: "19" 3 | -------------------------------------------------------------------------------- /distros/all/opensuse_12.2.yaml: -------------------------------------------------------------------------------- 1 | os_type: opensuse 2 | os_version: "12.2" 3 | -------------------------------------------------------------------------------- /distros/all/opensuse_13.2.yaml: -------------------------------------------------------------------------------- 1 | os_type: opensuse 2 | os_version: "13.2" 3 | -------------------------------------------------------------------------------- /distros/all/opensuse_42.1.yaml: -------------------------------------------------------------------------------- 1 | os_type: opensuse 2 | os_version: "42.1" 3 | -------------------------------------------------------------------------------- /distros/all/rhel_6.3.yaml: -------------------------------------------------------------------------------- 1 | os_type: rhel 2 | os_version: "6.3" 3 | -------------------------------------------------------------------------------- /distros/all/rhel_6.4.yaml: -------------------------------------------------------------------------------- 1 | os_type: rhel 2 | os_version: "6.4" 3 | -------------------------------------------------------------------------------- /distros/all/rhel_6.5.yaml: -------------------------------------------------------------------------------- 1 | os_type: rhel 2 | os_version: "6.5" 3 | -------------------------------------------------------------------------------- /distros/all/rhel_7.0.yaml: -------------------------------------------------------------------------------- 1 | os_type: rhel 2 | os_version: "7.0" 3 | -------------------------------------------------------------------------------- /distros/all/sles_11-sp2.yaml: -------------------------------------------------------------------------------- 1 | os_type: sles 2 | os_version: "11-sp2" 3 | -------------------------------------------------------------------------------- /distros/all/ubuntu_12.04.yaml: -------------------------------------------------------------------------------- 1 | os_type: ubuntu 2 | os_version: "12.04" 3 | -------------------------------------------------------------------------------- /distros/all/ubuntu_12.10.yaml: -------------------------------------------------------------------------------- 1 | os_type: ubuntu 2 | os_version: "12.10" 3 | -------------------------------------------------------------------------------- /distros/all/ubuntu_14.04.yaml: -------------------------------------------------------------------------------- 1 | os_type: ubuntu 2 | os_version: "14.04" 3 | -------------------------------------------------------------------------------- /distros/all/ubuntu_14.04_aarch64.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/distros/all/ubuntu_14.04_aarch64.yaml -------------------------------------------------------------------------------- /distros/all/ubuntu_14.04_i686.yaml: -------------------------------------------------------------------------------- 1 | os_type: ubuntu 2 | os_version: "14.04" 3 | arch: i686 4 | -------------------------------------------------------------------------------- /distros/all/ubuntu_16.04.yaml: -------------------------------------------------------------------------------- 1 | os_type: ubuntu 2 | os_version: "16.04" 3 | -------------------------------------------------------------------------------- /distros/supported/centos_7.2.yaml: -------------------------------------------------------------------------------- 1 | ../all/centos_7.2.yaml -------------------------------------------------------------------------------- /distros/supported/ubuntu_14.04.yaml: -------------------------------------------------------------------------------- 1 | ../all/ubuntu_14.04.yaml -------------------------------------------------------------------------------- /distros/supported/ubuntu_16.04.yaml: -------------------------------------------------------------------------------- 1 | ../all/ubuntu_16.04.yaml -------------------------------------------------------------------------------- /erasure-code/ec-feature-plugins-v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/erasure-code/ec-feature-plugins-v2.yaml -------------------------------------------------------------------------------- /erasure-code/ec-feature-plugins-v3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/erasure-code/ec-feature-plugins-v3.yaml -------------------------------------------------------------------------------- /erasure-code/ec-rados-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/erasure-code/ec-rados-default.yaml -------------------------------------------------------------------------------- /erasure-code/ec-rados-parallel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/erasure-code/ec-rados-parallel.yaml -------------------------------------------------------------------------------- /erasure-code/ec-rados-sequential.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/erasure-code/ec-rados-sequential.yaml -------------------------------------------------------------------------------- /fs/btrfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/fs/btrfs.yaml -------------------------------------------------------------------------------- /fs/ext4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/fs/ext4.yaml -------------------------------------------------------------------------------- /fs/xfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/fs/xfs.yaml -------------------------------------------------------------------------------- /machine_types/schedule_rados.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/machine_types/schedule_rados.sh -------------------------------------------------------------------------------- /machine_types/schedule_rados_ovh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/machine_types/schedule_rados_ovh.sh -------------------------------------------------------------------------------- /machine_types/vps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/machine_types/vps.yaml -------------------------------------------------------------------------------- /mon_kv_backend/leveldb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/mon_kv_backend/leveldb.yaml -------------------------------------------------------------------------------- /mon_kv_backend/rocksdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/mon_kv_backend/rocksdb.yaml -------------------------------------------------------------------------------- /nightlies/cron_wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/nightlies/cron_wrapper -------------------------------------------------------------------------------- /objectstore/bluestore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/objectstore/bluestore.yaml -------------------------------------------------------------------------------- /objectstore/filestore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/objectstore/filestore.yaml -------------------------------------------------------------------------------- /overrides/2-size-1-min-size.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/overrides/2-size-1-min-size.yaml -------------------------------------------------------------------------------- /overrides/2-size-2-min-size.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/overrides/2-size-2-min-size.yaml -------------------------------------------------------------------------------- /overrides/3-size-2-min-size.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/overrides/3-size-2-min-size.yaml -------------------------------------------------------------------------------- /overrides/short_pg_log.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/overrides/short_pg_log.yaml -------------------------------------------------------------------------------- /overrides/whitelist_wrongly_marked_down.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/overrides/whitelist_wrongly_marked_down.yaml -------------------------------------------------------------------------------- /packages/packages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/packages/packages.yaml -------------------------------------------------------------------------------- /releases/infernalis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/releases/infernalis.yaml -------------------------------------------------------------------------------- /releases/jewel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/releases/jewel.yaml -------------------------------------------------------------------------------- /releases/kraken.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/releases/kraken.yaml -------------------------------------------------------------------------------- /rgw_pool_type/ec-cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/rgw_pool_type/ec-cache.yaml -------------------------------------------------------------------------------- /rgw_pool_type/ec-profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/rgw_pool_type/ec-profile.yaml -------------------------------------------------------------------------------- /rgw_pool_type/ec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/rgw_pool_type/ec.yaml -------------------------------------------------------------------------------- /rgw_pool_type/replicated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/rgw_pool_type/replicated.yaml -------------------------------------------------------------------------------- /suites/big/rados-thrash/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/big/rados-thrash/ceph/ceph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/big/rados-thrash/ceph/ceph.yaml -------------------------------------------------------------------------------- /suites/big/rados-thrash/clusters/big.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/big/rados-thrash/clusters/big.yaml -------------------------------------------------------------------------------- /suites/big/rados-thrash/clusters/medium.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/big/rados-thrash/clusters/medium.yaml -------------------------------------------------------------------------------- /suites/big/rados-thrash/clusters/small.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/big/rados-thrash/clusters/small.yaml -------------------------------------------------------------------------------- /suites/big/rados-thrash/fs/btrfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/big/rados-thrash/fs/btrfs.yaml -------------------------------------------------------------------------------- /suites/big/rados-thrash/fs/xfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/big/rados-thrash/fs/xfs.yaml -------------------------------------------------------------------------------- /suites/buildpackages/any/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/buildpackages/any/distros: -------------------------------------------------------------------------------- 1 | ../../../distros/all -------------------------------------------------------------------------------- /suites/buildpackages/any/tasks/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/buildpackages/any/tasks/release.yaml -------------------------------------------------------------------------------- /suites/buildpackages/tests/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/buildpackages/tests/distros: -------------------------------------------------------------------------------- 1 | ../../../distros/all -------------------------------------------------------------------------------- /suites/ceph-ansible/smoke/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/ceph-ansible/smoke/0-clusters/single_mon_osd.yaml: -------------------------------------------------------------------------------- 1 | meta: 2 | - desc: "1-node cluster" 3 | roles: 4 | - [mon.a, osd.0, client.0] 5 | -------------------------------------------------------------------------------- /suites/ceph-ansible/smoke/1-distros: -------------------------------------------------------------------------------- 1 | ../../../distros/supported -------------------------------------------------------------------------------- /suites/ceph-ansible/smoke/3-common/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/ceph-ansible/smoke/4-osd/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/ceph-ansible/smoke/5-tests/cls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/ceph-ansible/smoke/5-tests/cls.yaml -------------------------------------------------------------------------------- /suites/ceph-deploy/basic/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/ceph-deploy/basic/ceph-deploy-overrides: -------------------------------------------------------------------------------- 1 | ../../../ceph-deploy-overrides -------------------------------------------------------------------------------- /suites/ceph-deploy/basic/config_options: -------------------------------------------------------------------------------- 1 | ../../../config_options -------------------------------------------------------------------------------- /suites/ceph-deploy/basic/distros: -------------------------------------------------------------------------------- 1 | ../../../distros/supported -------------------------------------------------------------------------------- /suites/ceph-disk/basic/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/ceph-disk/basic/distros: -------------------------------------------------------------------------------- 1 | ../../../distros/supported -------------------------------------------------------------------------------- /suites/ceph-disk/basic/tasks/ceph-disk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/ceph-disk/basic/tasks/ceph-disk.yaml -------------------------------------------------------------------------------- /suites/dummy/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/dummy/all/nop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/dummy/all/nop.yaml -------------------------------------------------------------------------------- /suites/experimental/multimds/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/fs/32bits/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/fs/32bits/begin.yaml: -------------------------------------------------------------------------------- 1 | ../../../cephfs/begin.yaml -------------------------------------------------------------------------------- /suites/fs/32bits/clusters/fixed-2-ucephfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/clusters/fixed-2-ucephfs.yaml -------------------------------------------------------------------------------- /suites/fs/32bits/fs/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/fs/32bits/mount/fuse.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/mount/fuse.yaml -------------------------------------------------------------------------------- /suites/fs/32bits/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/fs/32bits/overrides/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/fs/32bits/overrides/debug.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/debug.yaml -------------------------------------------------------------------------------- /suites/fs/32bits/overrides/faked-ino.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/fs/32bits/overrides/faked-ino.yaml -------------------------------------------------------------------------------- /suites/fs/32bits/overrides/frag_enable.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/frag_enable.yaml -------------------------------------------------------------------------------- /suites/fs/32bits/overrides/whitelist_wrongly_marked_down.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/whitelist_wrongly_marked_down.yaml -------------------------------------------------------------------------------- /suites/fs/32bits/tasks/cfuse_workunit_suites_fsstress.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/tasks/cfuse_workunit_suites_fsstress.yaml -------------------------------------------------------------------------------- /suites/fs/basic/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/fs/basic/begin.yaml: -------------------------------------------------------------------------------- 1 | ../../../cephfs/begin.yaml -------------------------------------------------------------------------------- /suites/fs/basic/clusters/fixed-2-ucephfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/clusters/fixed-2-ucephfs.yaml -------------------------------------------------------------------------------- /suites/fs/basic/fs/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/fs/basic/inline/no.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/fs/basic/inline/yes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/fs/basic/inline/yes.yaml -------------------------------------------------------------------------------- /suites/fs/basic/mount/fuse.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/mount/fuse.yaml -------------------------------------------------------------------------------- /suites/fs/basic/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/fs/basic/overrides/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/fs/basic/overrides/debug.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/debug.yaml -------------------------------------------------------------------------------- /suites/fs/basic/overrides/frag_enable.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/frag_enable.yaml -------------------------------------------------------------------------------- /suites/fs/basic/overrides/whitelist_wrongly_marked_down.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/whitelist_wrongly_marked_down.yaml -------------------------------------------------------------------------------- /suites/fs/basic/tasks/asok_dump_tree.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/fs/basic/tasks/asok_dump_tree.yaml -------------------------------------------------------------------------------- /suites/fs/basic/tasks/cfuse_workunit_suites_blogbench.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/tasks/cfuse_workunit_suites_blogbench.yaml -------------------------------------------------------------------------------- /suites/fs/basic/tasks/cfuse_workunit_suites_dbench.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/tasks/cfuse_workunit_suites_dbench.yaml -------------------------------------------------------------------------------- /suites/fs/basic/tasks/cfuse_workunit_suites_ffsb.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/tasks/cfuse_workunit_suites_ffsb.yaml -------------------------------------------------------------------------------- /suites/fs/basic/tasks/cfuse_workunit_suites_fsstress.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/tasks/cfuse_workunit_suites_fsstress.yaml -------------------------------------------------------------------------------- /suites/fs/basic/tasks/cfuse_workunit_trivial_sync.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/tasks/cfuse_workunit_trivial_sync.yaml -------------------------------------------------------------------------------- /suites/fs/basic/tasks/libcephfs_interface_tests.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/tasks/libcephfs_interface_tests.yaml -------------------------------------------------------------------------------- /suites/fs/basic/tasks/libcephfs_java.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/fs/basic/tasks/libcephfs_java.yaml -------------------------------------------------------------------------------- /suites/fs/basic/tasks/libcephfs_python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/fs/basic/tasks/libcephfs_python.yaml -------------------------------------------------------------------------------- /suites/fs/multiclient/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/fs/multiclient/begin.yaml: -------------------------------------------------------------------------------- 1 | ../../../cephfs/begin.yaml -------------------------------------------------------------------------------- /suites/fs/multiclient/fs/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/fs/multiclient/mount/fuse.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/mount/fuse.yaml -------------------------------------------------------------------------------- /suites/fs/multiclient/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/fs/multiclient/overrides/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/fs/multiclient/overrides/debug.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/debug.yaml -------------------------------------------------------------------------------- /suites/fs/multiclient/overrides/frag_enable.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/frag_enable.yaml -------------------------------------------------------------------------------- /suites/fs/multiclient/overrides/whitelist_wrongly_marked_down.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/whitelist_wrongly_marked_down.yaml -------------------------------------------------------------------------------- /suites/fs/multiclient/tasks/mdtest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/fs/multiclient/tasks/mdtest.yaml -------------------------------------------------------------------------------- /suites/fs/multifs/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/fs/multifs/begin.yaml: -------------------------------------------------------------------------------- 1 | ../../../cephfs/begin.yaml -------------------------------------------------------------------------------- /suites/fs/multifs/fs/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/fs/multifs/mount/fuse.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/mount/fuse.yaml -------------------------------------------------------------------------------- /suites/fs/multifs/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/fs/multifs/overrides/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/fs/multifs/overrides/debug.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/debug.yaml -------------------------------------------------------------------------------- /suites/fs/multifs/overrides/frag_enable.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/frag_enable.yaml -------------------------------------------------------------------------------- /suites/fs/multifs/overrides/mon-debug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/fs/multifs/overrides/mon-debug.yaml -------------------------------------------------------------------------------- /suites/fs/multifs/overrides/whitelist_wrongly_marked_down.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/whitelist_wrongly_marked_down.yaml -------------------------------------------------------------------------------- /suites/fs/multifs/tasks/failover.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/fs/multifs/tasks/failover.yaml -------------------------------------------------------------------------------- /suites/fs/permission/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/fs/permission/begin.yaml: -------------------------------------------------------------------------------- 1 | ../../../cephfs/begin.yaml -------------------------------------------------------------------------------- /suites/fs/permission/clusters/fixed-2-ucephfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/clusters/fixed-2-ucephfs.yaml -------------------------------------------------------------------------------- /suites/fs/permission/fs/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/fs/permission/mount/fuse.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/mount/fuse.yaml -------------------------------------------------------------------------------- /suites/fs/permission/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/fs/permission/overrides/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/fs/permission/overrides/debug.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/debug.yaml -------------------------------------------------------------------------------- /suites/fs/permission/overrides/frag_enable.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/frag_enable.yaml -------------------------------------------------------------------------------- /suites/fs/permission/overrides/whitelist_wrongly_marked_down.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/whitelist_wrongly_marked_down.yaml -------------------------------------------------------------------------------- /suites/fs/recovery/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/fs/recovery/begin.yaml: -------------------------------------------------------------------------------- 1 | ../../../cephfs/begin.yaml -------------------------------------------------------------------------------- /suites/fs/recovery/fs/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/fs/recovery/mount/fuse.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/mount/fuse.yaml -------------------------------------------------------------------------------- /suites/fs/recovery/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/fs/recovery/overrides/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/fs/recovery/overrides/debug.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/debug.yaml -------------------------------------------------------------------------------- /suites/fs/recovery/overrides/frag_enable.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/frag_enable.yaml -------------------------------------------------------------------------------- /suites/fs/recovery/overrides/whitelist_wrongly_marked_down.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/whitelist_wrongly_marked_down.yaml -------------------------------------------------------------------------------- /suites/fs/recovery/tasks/auto-repair.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/fs/recovery/tasks/auto-repair.yaml -------------------------------------------------------------------------------- /suites/fs/recovery/tasks/backtrace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/fs/recovery/tasks/backtrace.yaml -------------------------------------------------------------------------------- /suites/fs/recovery/tasks/cap-flush.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/fs/recovery/tasks/cap-flush.yaml -------------------------------------------------------------------------------- /suites/fs/recovery/tasks/client-limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/fs/recovery/tasks/client-limits.yaml -------------------------------------------------------------------------------- /suites/fs/recovery/tasks/damage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/fs/recovery/tasks/damage.yaml -------------------------------------------------------------------------------- /suites/fs/recovery/tasks/data-scan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/fs/recovery/tasks/data-scan.yaml -------------------------------------------------------------------------------- /suites/fs/recovery/tasks/forward-scrub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/fs/recovery/tasks/forward-scrub.yaml -------------------------------------------------------------------------------- /suites/fs/recovery/tasks/fragment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/fs/recovery/tasks/fragment.yaml -------------------------------------------------------------------------------- /suites/fs/recovery/tasks/journal-repair.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/fs/recovery/tasks/journal-repair.yaml -------------------------------------------------------------------------------- /suites/fs/recovery/tasks/mds-flush.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/fs/recovery/tasks/mds-flush.yaml -------------------------------------------------------------------------------- /suites/fs/recovery/tasks/mds-full.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/fs/recovery/tasks/mds-full.yaml -------------------------------------------------------------------------------- /suites/fs/recovery/tasks/pool-perm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/fs/recovery/tasks/pool-perm.yaml -------------------------------------------------------------------------------- /suites/fs/recovery/tasks/sessionmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/fs/recovery/tasks/sessionmap.yaml -------------------------------------------------------------------------------- /suites/fs/recovery/tasks/strays.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/fs/recovery/tasks/strays.yaml -------------------------------------------------------------------------------- /suites/fs/recovery/tasks/volume-client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/fs/recovery/tasks/volume-client.yaml -------------------------------------------------------------------------------- /suites/fs/snaps/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/fs/snaps/begin.yaml: -------------------------------------------------------------------------------- 1 | ../../../cephfs/begin.yaml -------------------------------------------------------------------------------- /suites/fs/snaps/clusters/fixed-2-ucephfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/clusters/fixed-2-ucephfs.yaml -------------------------------------------------------------------------------- /suites/fs/snaps/fs/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/fs/snaps/mount/fuse.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/mount/fuse.yaml -------------------------------------------------------------------------------- /suites/fs/snaps/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/fs/snaps/overrides/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/fs/snaps/overrides/debug.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/debug.yaml -------------------------------------------------------------------------------- /suites/fs/snaps/overrides/frag_enable.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/frag_enable.yaml -------------------------------------------------------------------------------- /suites/fs/snaps/overrides/whitelist_wrongly_marked_down.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/whitelist_wrongly_marked_down.yaml -------------------------------------------------------------------------------- /suites/fs/snaps/tasks/snaptests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/fs/snaps/tasks/snaptests.yaml -------------------------------------------------------------------------------- /suites/fs/standbyreplay/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/fs/standbyreplay/begin.yaml: -------------------------------------------------------------------------------- 1 | ../../../cephfs/begin.yaml -------------------------------------------------------------------------------- /suites/fs/standbyreplay/fs/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/fs/standbyreplay/mount/fuse.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/mount/fuse.yaml -------------------------------------------------------------------------------- /suites/fs/standbyreplay/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/fs/standbyreplay/overrides/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/fs/standbyreplay/overrides/debug.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/debug.yaml -------------------------------------------------------------------------------- /suites/fs/standbyreplay/overrides/frag_enable.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/frag_enable.yaml -------------------------------------------------------------------------------- /suites/fs/standbyreplay/overrides/whitelist_wrongly_marked_down.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/whitelist_wrongly_marked_down.yaml -------------------------------------------------------------------------------- /suites/fs/standbyreplay/tasks/migration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/fs/standbyreplay/tasks/migration.yaml -------------------------------------------------------------------------------- /suites/fs/thrash/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/fs/thrash/begin.yaml: -------------------------------------------------------------------------------- 1 | ../../../cephfs/begin.yaml -------------------------------------------------------------------------------- /suites/fs/thrash/ceph-thrash/default.yaml: -------------------------------------------------------------------------------- 1 | tasks: 2 | - mds_thrash: 3 | -------------------------------------------------------------------------------- /suites/fs/thrash/fs/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/fs/thrash/mount/fuse.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/mount/fuse.yaml -------------------------------------------------------------------------------- /suites/fs/thrash/msgr-failures/none.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/fs/thrash/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/fs/thrash/overrides/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/fs/thrash/overrides/debug.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/debug.yaml -------------------------------------------------------------------------------- /suites/fs/thrash/overrides/frag_enable.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/frag_enable.yaml -------------------------------------------------------------------------------- /suites/fs/thrash/overrides/whitelist_wrongly_marked_down.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/whitelist_wrongly_marked_down.yaml -------------------------------------------------------------------------------- /suites/fs/thrash/tasks/cfuse_workunit_suites_fsstress.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/tasks/cfuse_workunit_suites_fsstress.yaml -------------------------------------------------------------------------------- /suites/fs/thrash/tasks/cfuse_workunit_trivial_sync.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/tasks/cfuse_workunit_trivial_sync.yaml -------------------------------------------------------------------------------- /suites/fs/traceless/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/fs/traceless/begin.yaml: -------------------------------------------------------------------------------- 1 | ../../../cephfs/begin.yaml -------------------------------------------------------------------------------- /suites/fs/traceless/clusters/fixed-2-ucephfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/clusters/fixed-2-ucephfs.yaml -------------------------------------------------------------------------------- /suites/fs/traceless/fs/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/fs/traceless/mount/fuse.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/mount/fuse.yaml -------------------------------------------------------------------------------- /suites/fs/traceless/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/fs/traceless/overrides/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/fs/traceless/overrides/debug.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/debug.yaml -------------------------------------------------------------------------------- /suites/fs/traceless/overrides/frag_enable.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/frag_enable.yaml -------------------------------------------------------------------------------- /suites/fs/traceless/overrides/whitelist_wrongly_marked_down.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/whitelist_wrongly_marked_down.yaml -------------------------------------------------------------------------------- /suites/fs/traceless/tasks/cfuse_workunit_suites_blogbench.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/tasks/cfuse_workunit_suites_blogbench.yaml -------------------------------------------------------------------------------- /suites/fs/traceless/tasks/cfuse_workunit_suites_dbench.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/tasks/cfuse_workunit_suites_dbench.yaml -------------------------------------------------------------------------------- /suites/fs/traceless/tasks/cfuse_workunit_suites_ffsb.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/tasks/cfuse_workunit_suites_ffsb.yaml -------------------------------------------------------------------------------- /suites/fs/traceless/tasks/cfuse_workunit_suites_fsstress.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/tasks/cfuse_workunit_suites_fsstress.yaml -------------------------------------------------------------------------------- /suites/fs/traceless/traceless/50pc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/fs/traceless/traceless/50pc.yaml -------------------------------------------------------------------------------- /suites/fs/verify/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/fs/verify/begin.yaml: -------------------------------------------------------------------------------- 1 | ../../../cephfs/begin.yaml -------------------------------------------------------------------------------- /suites/fs/verify/clusters/fixed-2-ucephfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/clusters/fixed-2-ucephfs.yaml -------------------------------------------------------------------------------- /suites/fs/verify/fs/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/fs/verify/mount/fuse.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/mount/fuse.yaml -------------------------------------------------------------------------------- /suites/fs/verify/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/fs/verify/overrides/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/fs/verify/overrides/debug.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/debug.yaml -------------------------------------------------------------------------------- /suites/fs/verify/overrides/frag_enable.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/frag_enable.yaml -------------------------------------------------------------------------------- /suites/fs/verify/overrides/mon-debug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/fs/verify/overrides/mon-debug.yaml -------------------------------------------------------------------------------- /suites/fs/verify/overrides/whitelist_wrongly_marked_down.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/whitelist_wrongly_marked_down.yaml -------------------------------------------------------------------------------- /suites/fs/verify/tasks/cfuse_workunit_suites_dbench.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/tasks/cfuse_workunit_suites_dbench.yaml -------------------------------------------------------------------------------- /suites/fs/verify/tasks/cfuse_workunit_suites_fsstress.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/tasks/cfuse_workunit_suites_fsstress.yaml -------------------------------------------------------------------------------- /suites/fs/verify/tasks/libcephfs_interface_tests.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/tasks/libcephfs_interface_tests.yaml -------------------------------------------------------------------------------- /suites/fs/verify/validater/lockdep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/fs/verify/validater/lockdep.yaml -------------------------------------------------------------------------------- /suites/fs/verify/validater/valgrind.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/fs/verify/validater/valgrind.yaml -------------------------------------------------------------------------------- /suites/hadoop/basic/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/hadoop/basic/clusters/fixed-3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/hadoop/basic/clusters/fixed-3.yaml -------------------------------------------------------------------------------- /suites/hadoop/basic/tasks/repl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/hadoop/basic/tasks/repl.yaml -------------------------------------------------------------------------------- /suites/hadoop/basic/tasks/terasort.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/hadoop/basic/tasks/terasort.yaml -------------------------------------------------------------------------------- /suites/hadoop/basic/tasks/wordcount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/hadoop/basic/tasks/wordcount.yaml -------------------------------------------------------------------------------- /suites/hadoop/basic/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/kcephfs/cephfs/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/kcephfs/cephfs/clusters/fixed-3-cephfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../clusters/fixed-3-cephfs.yaml -------------------------------------------------------------------------------- /suites/kcephfs/cephfs/conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/kcephfs/cephfs/conf.yaml -------------------------------------------------------------------------------- /suites/kcephfs/cephfs/fs/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/kcephfs/cephfs/inline/no.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/kcephfs/cephfs/inline/no.yaml -------------------------------------------------------------------------------- /suites/kcephfs/cephfs/inline/yes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/kcephfs/cephfs/inline/yes.yaml -------------------------------------------------------------------------------- /suites/kcephfs/mixed-clients/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/kcephfs/mixed-clients/conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/kcephfs/mixed-clients/conf.yaml -------------------------------------------------------------------------------- /suites/kcephfs/mixed-clients/fs/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/kcephfs/recovery/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/kcephfs/recovery/mounts/kmounts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/kcephfs/recovery/mounts/kmounts.yaml -------------------------------------------------------------------------------- /suites/kcephfs/recovery/tasks/backtrace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/kcephfs/recovery/tasks/backtrace.yaml -------------------------------------------------------------------------------- /suites/kcephfs/recovery/tasks/damage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/kcephfs/recovery/tasks/damage.yaml -------------------------------------------------------------------------------- /suites/kcephfs/recovery/tasks/data-scan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/kcephfs/recovery/tasks/data-scan.yaml -------------------------------------------------------------------------------- /suites/kcephfs/recovery/tasks/mds-flush.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/kcephfs/recovery/tasks/mds-flush.yaml -------------------------------------------------------------------------------- /suites/kcephfs/recovery/tasks/pool-perm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/kcephfs/recovery/tasks/pool-perm.yaml -------------------------------------------------------------------------------- /suites/kcephfs/recovery/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/kcephfs/thrash/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/kcephfs/thrash/clusters/fixed-3-cephfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../clusters/fixed-3-cephfs.yaml -------------------------------------------------------------------------------- /suites/kcephfs/thrash/conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/kcephfs/thrash/conf.yaml -------------------------------------------------------------------------------- /suites/kcephfs/thrash/fs/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/kcephfs/thrash/thrashers/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/kcephfs/thrash/thrashers/default.yaml -------------------------------------------------------------------------------- /suites/kcephfs/thrash/thrashers/mds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/kcephfs/thrash/thrashers/mds.yaml -------------------------------------------------------------------------------- /suites/kcephfs/thrash/thrashers/mon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/kcephfs/thrash/thrashers/mon.yaml -------------------------------------------------------------------------------- /suites/knfs/basic/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/knfs/basic/ceph/base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/knfs/basic/ceph/base.yaml -------------------------------------------------------------------------------- /suites/knfs/basic/clusters/extra-client.yaml: -------------------------------------------------------------------------------- 1 | ../../../../clusters/extra-client.yaml -------------------------------------------------------------------------------- /suites/knfs/basic/fs/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/knfs/basic/mount/v3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/knfs/basic/mount/v3.yaml -------------------------------------------------------------------------------- /suites/knfs/basic/mount/v4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/knfs/basic/mount/v4.yaml -------------------------------------------------------------------------------- /suites/krbd/rbd-nomount/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/krbd/rbd-nomount/clusters/fixed-3.yaml: -------------------------------------------------------------------------------- 1 | ../../../../clusters/fixed-3.yaml -------------------------------------------------------------------------------- /suites/krbd/rbd-nomount/conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/krbd/rbd-nomount/conf.yaml -------------------------------------------------------------------------------- /suites/krbd/rbd-nomount/fs/btrfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/btrfs.yaml -------------------------------------------------------------------------------- /suites/krbd/rbd-nomount/install/ceph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/krbd/rbd-nomount/install/ceph.yaml -------------------------------------------------------------------------------- /suites/krbd/rbd-nomount/tasks/rbd_kfsx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/krbd/rbd-nomount/tasks/rbd_kfsx.yaml -------------------------------------------------------------------------------- /suites/krbd/rbd/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/krbd/rbd/clusters/fixed-3.yaml: -------------------------------------------------------------------------------- 1 | ../../../../clusters/fixed-3.yaml -------------------------------------------------------------------------------- /suites/krbd/rbd/conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/krbd/rbd/conf.yaml -------------------------------------------------------------------------------- /suites/krbd/rbd/fs/btrfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/btrfs.yaml -------------------------------------------------------------------------------- /suites/krbd/rbd/msgr-failures/few.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/krbd/rbd/msgr-failures/few.yaml -------------------------------------------------------------------------------- /suites/krbd/rbd/msgr-failures/many.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/krbd/rbd/msgr-failures/many.yaml -------------------------------------------------------------------------------- /suites/krbd/rbd/tasks/rbd_fio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/krbd/rbd/tasks/rbd_fio.yaml -------------------------------------------------------------------------------- /suites/krbd/singleton/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/krbd/singleton/conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/krbd/singleton/conf.yaml -------------------------------------------------------------------------------- /suites/krbd/singleton/fs/btrfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/btrfs.yaml -------------------------------------------------------------------------------- /suites/krbd/singleton/msgr-failures/few.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/krbd/singleton/msgr-failures/few.yaml -------------------------------------------------------------------------------- /suites/krbd/thrash/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/krbd/thrash/clusters/fixed-3.yaml: -------------------------------------------------------------------------------- 1 | ../../../../clusters/fixed-3.yaml -------------------------------------------------------------------------------- /suites/krbd/thrash/conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/krbd/thrash/conf.yaml -------------------------------------------------------------------------------- /suites/krbd/thrash/fs/btrfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/btrfs.yaml -------------------------------------------------------------------------------- /suites/krbd/thrash/thrashers/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/krbd/thrash/thrashers/default.yaml -------------------------------------------------------------------------------- /suites/krbd/thrash/workloads/rbd_fio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/krbd/thrash/workloads/rbd_fio.yaml -------------------------------------------------------------------------------- /suites/krbd/unmap/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/krbd/unmap/ceph/ceph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/krbd/unmap/ceph/ceph.yaml -------------------------------------------------------------------------------- /suites/krbd/unmap/conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/krbd/unmap/conf.yaml -------------------------------------------------------------------------------- /suites/krbd/unmap/tasks/unmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/krbd/unmap/tasks/unmap.yaml -------------------------------------------------------------------------------- /suites/krbd/unmap/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/marginal/basic/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/marginal/basic/clusters/fixed-3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/marginal/basic/clusters/fixed-3.yaml -------------------------------------------------------------------------------- /suites/marginal/basic/fs/btrfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/btrfs.yaml -------------------------------------------------------------------------------- /suites/marginal/fs-misc/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/marginal/fs-misc/fs/btrfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/btrfs.yaml -------------------------------------------------------------------------------- /suites/marginal/fs-misc/tasks/locktest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/marginal/fs-misc/tasks/locktest.yaml -------------------------------------------------------------------------------- /suites/marginal/mds_restart/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/marginal/multimds/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/marginal/multimds/fs/btrfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/btrfs.yaml -------------------------------------------------------------------------------- /suites/marginal/multimds/mounts/kclient.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/marginal/multimds/mounts/kclient.yaml -------------------------------------------------------------------------------- /suites/marginal/multimds/thrash/exports.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/marginal/multimds/thrash/exports.yaml -------------------------------------------------------------------------------- /suites/marginal/multimds/thrash/normal.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/mgr/basic/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/mgr/basic/clusters/2-node-mgr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/mgr/basic/clusters/2-node-mgr.yaml -------------------------------------------------------------------------------- /suites/mgr/basic/debug/mgr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/mgr/basic/debug/mgr.yaml -------------------------------------------------------------------------------- /suites/mgr/basic/fs/xfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/mgr/basic/fs/xfs.yaml -------------------------------------------------------------------------------- /suites/mgr/basic/tasks/failover.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/mgr/basic/tasks/failover.yaml -------------------------------------------------------------------------------- /suites/mixed-clients/basic/fs/btrfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/btrfs.yaml -------------------------------------------------------------------------------- /suites/multimds/basic/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/multimds/basic/begin.yaml: -------------------------------------------------------------------------------- 1 | ../../fs/basic/begin.yaml -------------------------------------------------------------------------------- /suites/multimds/basic/clusters/3-mds.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/clusters/3-mds.yaml -------------------------------------------------------------------------------- /suites/multimds/basic/clusters/9-mds.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/clusters/9-mds.yaml -------------------------------------------------------------------------------- /suites/multimds/basic/fs: -------------------------------------------------------------------------------- 1 | ../../fs/basic/fs/ -------------------------------------------------------------------------------- /suites/multimds/basic/inline: -------------------------------------------------------------------------------- 1 | ../../fs/basic/inline/ -------------------------------------------------------------------------------- /suites/multimds/basic/mount/fuse.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/mount/fuse.yaml -------------------------------------------------------------------------------- /suites/multimds/basic/mount/kclient.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/mount/kclient.yaml -------------------------------------------------------------------------------- /suites/multimds/basic/overrides/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/multimds/basic/overrides/basic: -------------------------------------------------------------------------------- 1 | ../../../fs/basic/overrides/ -------------------------------------------------------------------------------- /suites/multimds/basic/overrides/fuse-default-perm-no.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/fuse/default-perm/no.yaml -------------------------------------------------------------------------------- /suites/multimds/basic/tasks: -------------------------------------------------------------------------------- 1 | ../../fs/basic/tasks/ -------------------------------------------------------------------------------- /suites/multimds/verify/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/multimds/verify/begin.yaml: -------------------------------------------------------------------------------- 1 | ../../fs/verify/begin.yaml -------------------------------------------------------------------------------- /suites/multimds/verify/clusters/3-mds.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/clusters/3-mds.yaml -------------------------------------------------------------------------------- /suites/multimds/verify/clusters/9-mds.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/clusters/9-mds.yaml -------------------------------------------------------------------------------- /suites/multimds/verify/fs: -------------------------------------------------------------------------------- 1 | ../../fs/verify/fs/ -------------------------------------------------------------------------------- /suites/multimds/verify/mount/fuse.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/mount/fuse.yaml -------------------------------------------------------------------------------- /suites/multimds/verify/mount/kclient.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/mount/kclient.yaml -------------------------------------------------------------------------------- /suites/multimds/verify/overrides/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/multimds/verify/overrides/fuse-default-perm-no.yaml: -------------------------------------------------------------------------------- 1 | ../../../../cephfs/overrides/fuse/default-perm/no.yaml -------------------------------------------------------------------------------- /suites/multimds/verify/overrides/verify: -------------------------------------------------------------------------------- 1 | ../../../fs/verify/overrides/ -------------------------------------------------------------------------------- /suites/multimds/verify/tasks: -------------------------------------------------------------------------------- 1 | ../../fs/verify/tasks/ -------------------------------------------------------------------------------- /suites/multimds/verify/validater: -------------------------------------------------------------------------------- 1 | ../../fs/verify/validater/ -------------------------------------------------------------------------------- /suites/powercycle/osd/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/powercycle/osd/fs/btrfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/btrfs.yaml -------------------------------------------------------------------------------- /suites/powercycle/osd/fs/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/powercycle/osd/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/powercycle/osd/tasks/radosbench.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/powercycle/osd/tasks/radosbench.yaml -------------------------------------------------------------------------------- /suites/powercycle/osd/tasks/readwrite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/powercycle/osd/tasks/readwrite.yaml -------------------------------------------------------------------------------- /suites/rados/basic/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rados/basic/clusters/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rados/basic/clusters/fixed-2.yaml: -------------------------------------------------------------------------------- 1 | ../../../../clusters/fixed-2.yaml -------------------------------------------------------------------------------- /suites/rados/basic/clusters/openstack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/basic/clusters/openstack.yaml -------------------------------------------------------------------------------- /suites/rados/basic/fs/btrfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/btrfs.yaml -------------------------------------------------------------------------------- /suites/rados/basic/fs/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/rados/basic/mon_kv_backend: -------------------------------------------------------------------------------- 1 | ../../../mon_kv_backend -------------------------------------------------------------------------------- /suites/rados/basic/msgr-failures/few.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/basic/msgr-failures/few.yaml -------------------------------------------------------------------------------- /suites/rados/basic/msgr-failures/many.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/basic/msgr-failures/many.yaml -------------------------------------------------------------------------------- /suites/rados/basic/msgr/async.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/basic/msgr/async.yaml -------------------------------------------------------------------------------- /suites/rados/basic/msgr/random.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/basic/msgr/random.yaml -------------------------------------------------------------------------------- /suites/rados/basic/msgr/simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/basic/msgr/simple.yaml -------------------------------------------------------------------------------- /suites/rados/basic/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/rados/basic/rados.yaml: -------------------------------------------------------------------------------- 1 | ../../../config/rados.yaml -------------------------------------------------------------------------------- /suites/rados/basic/tasks/rados_cls_all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/basic/tasks/rados_cls_all.yaml -------------------------------------------------------------------------------- /suites/rados/basic/tasks/rados_python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/basic/tasks/rados_python.yaml -------------------------------------------------------------------------------- /suites/rados/basic/tasks/rados_striper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/basic/tasks/rados_striper.yaml -------------------------------------------------------------------------------- /suites/rados/basic/tasks/readwrite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/basic/tasks/readwrite.yaml -------------------------------------------------------------------------------- /suites/rados/basic/tasks/repair_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/basic/tasks/repair_test.yaml -------------------------------------------------------------------------------- /suites/rados/basic/tasks/rgw_snaps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/basic/tasks/rgw_snaps.yaml -------------------------------------------------------------------------------- /suites/rados/basic/tasks/scrub_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/basic/tasks/scrub_test.yaml -------------------------------------------------------------------------------- /suites/rados/monthrash/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rados/monthrash/ceph/ceph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/monthrash/ceph/ceph.yaml -------------------------------------------------------------------------------- /suites/rados/monthrash/clusters/3-mons.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/monthrash/clusters/3-mons.yaml -------------------------------------------------------------------------------- /suites/rados/monthrash/clusters/9-mons.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/monthrash/clusters/9-mons.yaml -------------------------------------------------------------------------------- /suites/rados/monthrash/fs/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/rados/monthrash/mon_kv_backend: -------------------------------------------------------------------------------- 1 | ../../../mon_kv_backend -------------------------------------------------------------------------------- /suites/rados/monthrash/msgr: -------------------------------------------------------------------------------- 1 | ../basic/msgr -------------------------------------------------------------------------------- /suites/rados/monthrash/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/rados/monthrash/rados.yaml: -------------------------------------------------------------------------------- 1 | ../../../config/rados.yaml -------------------------------------------------------------------------------- /suites/rados/monthrash/thrashers/many.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/monthrash/thrashers/many.yaml -------------------------------------------------------------------------------- /suites/rados/monthrash/thrashers/one.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/monthrash/thrashers/one.yaml -------------------------------------------------------------------------------- /suites/rados/monthrash/thrashers/sync.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/monthrash/thrashers/sync.yaml -------------------------------------------------------------------------------- /suites/rados/multimon/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rados/multimon/clusters/21.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/multimon/clusters/21.yaml -------------------------------------------------------------------------------- /suites/rados/multimon/clusters/3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/multimon/clusters/3.yaml -------------------------------------------------------------------------------- /suites/rados/multimon/clusters/6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/multimon/clusters/6.yaml -------------------------------------------------------------------------------- /suites/rados/multimon/clusters/9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/multimon/clusters/9.yaml -------------------------------------------------------------------------------- /suites/rados/multimon/fs/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/rados/multimon/mon_kv_backend: -------------------------------------------------------------------------------- 1 | ../../../mon_kv_backend -------------------------------------------------------------------------------- /suites/rados/multimon/msgr: -------------------------------------------------------------------------------- 1 | ../basic/msgr -------------------------------------------------------------------------------- /suites/rados/multimon/msgr-failures/few.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/multimon/msgr-failures/few.yaml -------------------------------------------------------------------------------- /suites/rados/multimon/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/rados/multimon/rados.yaml: -------------------------------------------------------------------------------- 1 | ../../../config/rados.yaml -------------------------------------------------------------------------------- /suites/rados/objectstore/alloc-hint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/objectstore/alloc-hint.yaml -------------------------------------------------------------------------------- /suites/rados/objectstore/filejournal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/objectstore/filejournal.yaml -------------------------------------------------------------------------------- /suites/rados/objectstore/fusestore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/objectstore/fusestore.yaml -------------------------------------------------------------------------------- /suites/rados/objectstore/keyvaluedb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/objectstore/keyvaluedb.yaml -------------------------------------------------------------------------------- /suites/rados/objectstore/objectstore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/objectstore/objectstore.yaml -------------------------------------------------------------------------------- /suites/rados/singleton-nomsgr/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rados/singleton-nomsgr/all/msgr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/singleton-nomsgr/all/msgr.yaml -------------------------------------------------------------------------------- /suites/rados/singleton-nomsgr/rados.yaml: -------------------------------------------------------------------------------- 1 | ../../../config/rados.yaml -------------------------------------------------------------------------------- /suites/rados/singleton/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rados/singleton/all/admin-socket.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/singleton/all/admin-socket.yaml -------------------------------------------------------------------------------- /suites/rados/singleton/all/cephtool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/singleton/all/cephtool.yaml -------------------------------------------------------------------------------- /suites/rados/singleton/all/dump-stuck.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/singleton/all/dump-stuck.yaml -------------------------------------------------------------------------------- /suites/rados/singleton/all/lost-unfound.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/singleton/all/lost-unfound.yaml -------------------------------------------------------------------------------- /suites/rados/singleton/all/mon-seesaw.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/singleton/all/mon-seesaw.yaml -------------------------------------------------------------------------------- /suites/rados/singleton/all/mon-thrasher.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/singleton/all/mon-thrasher.yaml -------------------------------------------------------------------------------- /suites/rados/singleton/all/osd-backfill.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/singleton/all/osd-backfill.yaml -------------------------------------------------------------------------------- /suites/rados/singleton/all/osd-recovery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/singleton/all/osd-recovery.yaml -------------------------------------------------------------------------------- /suites/rados/singleton/all/peer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/singleton/all/peer.yaml -------------------------------------------------------------------------------- /suites/rados/singleton/all/radostool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/singleton/all/radostool.yaml -------------------------------------------------------------------------------- /suites/rados/singleton/all/reg11184.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/singleton/all/reg11184.yaml -------------------------------------------------------------------------------- /suites/rados/singleton/all/rest-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/singleton/all/rest-api.yaml -------------------------------------------------------------------------------- /suites/rados/singleton/all/thrash-rados.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/singleton/all/thrash-rados.yaml -------------------------------------------------------------------------------- /suites/rados/singleton/fs/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/rados/singleton/msgr: -------------------------------------------------------------------------------- 1 | ../basic/msgr -------------------------------------------------------------------------------- /suites/rados/singleton/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/rados/singleton/rados.yaml: -------------------------------------------------------------------------------- 1 | ../../../config/rados.yaml -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code-big/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code-big/cluster/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code-big/fs: -------------------------------------------------------------------------------- 1 | ../thrash/fs -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code-big/leveldb.yaml: -------------------------------------------------------------------------------- 1 | ../../../mon_kv_backend/leveldb.yaml -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code-big/msgr-failures: -------------------------------------------------------------------------------- 1 | ../thrash/msgr-failures -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code-big/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code-big/rados.yaml: -------------------------------------------------------------------------------- 1 | ../../../config/rados.yaml -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code-isa/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code-isa/arch/x86_64.yaml: -------------------------------------------------------------------------------- 1 | arch: x86_64 2 | -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code-isa/clusters: -------------------------------------------------------------------------------- 1 | ../thrash/clusters -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code-isa/fs: -------------------------------------------------------------------------------- 1 | ../thrash/fs -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code-isa/leveldb.yaml: -------------------------------------------------------------------------------- 1 | ../../../mon_kv_backend/leveldb.yaml -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code-isa/msgr-failures: -------------------------------------------------------------------------------- 1 | ../thrash/msgr-failures -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code-isa/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code-isa/rados.yaml: -------------------------------------------------------------------------------- 1 | ../../../config/rados.yaml -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code-isa/supported: -------------------------------------------------------------------------------- 1 | ../../../distros/supported -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code-isa/thrashers: -------------------------------------------------------------------------------- 1 | ../thrash/thrashers -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code-isa/workloads/ec-rados-plugin=isa-k=2-m=1.yaml: -------------------------------------------------------------------------------- 1 | ../../../../erasure-code/ec-rados-plugin=isa-k=2-m=1.yaml -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code-shec/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code-shec/clusters/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code-shec/clusters/fixed-4.yaml: -------------------------------------------------------------------------------- 1 | ../../../../clusters/fixed-4.yaml -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code-shec/fs/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code-shec/leveldb.yaml: -------------------------------------------------------------------------------- 1 | ../../../mon_kv_backend/leveldb.yaml -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code-shec/msgr-failures: -------------------------------------------------------------------------------- 1 | ../thrash/msgr-failures -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code-shec/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code-shec/rados.yaml: -------------------------------------------------------------------------------- 1 | ../../../config/rados.yaml -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code/clusters: -------------------------------------------------------------------------------- 1 | ../thrash/clusters -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code/fast/normal.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code/fs: -------------------------------------------------------------------------------- 1 | ../thrash/fs -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code/leveldb.yaml: -------------------------------------------------------------------------------- 1 | ../../../mon_kv_backend/leveldb.yaml -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code/msgr-failures: -------------------------------------------------------------------------------- 1 | ../thrash/msgr-failures -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code/rados.yaml: -------------------------------------------------------------------------------- 1 | ../../../config/rados.yaml -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code/workloads/ec-rados-plugin=jerasure-k=2-m=1.yaml: -------------------------------------------------------------------------------- 1 | ../../../../erasure-code/ec-rados-plugin=jerasure-k=2-m=1.yaml -------------------------------------------------------------------------------- /suites/rados/thrash-erasure-code/workloads/ec-rados-plugin=jerasure-k=3-m=1.yaml: -------------------------------------------------------------------------------- 1 | ../../../../erasure-code/ec-rados-plugin=jerasure-k=3-m=1.yaml -------------------------------------------------------------------------------- /suites/rados/thrash/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rados/thrash/0-size-min-size-overrides/2-size-1-min-size.yaml: -------------------------------------------------------------------------------- 1 | ../../../../overrides/2-size-1-min-size.yaml -------------------------------------------------------------------------------- /suites/rados/thrash/0-size-min-size-overrides/2-size-2-min-size.yaml: -------------------------------------------------------------------------------- 1 | ../../../../overrides/2-size-2-min-size.yaml -------------------------------------------------------------------------------- /suites/rados/thrash/0-size-min-size-overrides/3-size-2-min-size.yaml: -------------------------------------------------------------------------------- 1 | ../../../../overrides/3-size-2-min-size.yaml -------------------------------------------------------------------------------- /suites/rados/thrash/1-pg-log-overrides/normal_pg_log.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rados/thrash/1-pg-log-overrides/short_pg_log.yaml: -------------------------------------------------------------------------------- 1 | ../../../../overrides/short_pg_log.yaml -------------------------------------------------------------------------------- /suites/rados/thrash/clusters/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rados/thrash/clusters/fixed-2.yaml: -------------------------------------------------------------------------------- 1 | ../../../../clusters/fixed-2.yaml -------------------------------------------------------------------------------- /suites/rados/thrash/clusters/openstack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/thrash/clusters/openstack.yaml -------------------------------------------------------------------------------- /suites/rados/thrash/fs/btrfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/btrfs.yaml -------------------------------------------------------------------------------- /suites/rados/thrash/fs/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/rados/thrash/hobj-sort.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/thrash/hobj-sort.yaml -------------------------------------------------------------------------------- /suites/rados/thrash/msgr: -------------------------------------------------------------------------------- 1 | ../basic/msgr -------------------------------------------------------------------------------- /suites/rados/thrash/msgr-failures/few.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/thrash/msgr-failures/few.yaml -------------------------------------------------------------------------------- /suites/rados/thrash/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/rados/thrash/rados.yaml: -------------------------------------------------------------------------------- 1 | ../../../config/rados.yaml -------------------------------------------------------------------------------- /suites/rados/thrash/rocksdb.yaml: -------------------------------------------------------------------------------- 1 | ../../../mon_kv_backend/rocksdb.yaml -------------------------------------------------------------------------------- /suites/rados/thrash/thrashers/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/thrash/thrashers/default.yaml -------------------------------------------------------------------------------- /suites/rados/thrash/thrashers/mapgap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/thrash/thrashers/mapgap.yaml -------------------------------------------------------------------------------- /suites/rados/thrash/thrashers/pggrow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/thrash/thrashers/pggrow.yaml -------------------------------------------------------------------------------- /suites/rados/thrash/workloads/cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/thrash/workloads/cache.yaml -------------------------------------------------------------------------------- /suites/rados/upgrade/jewel-x-singleton/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rados/upgrade/jewel-x-singleton/0-cluster/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rados/upgrade/jewel-x-singleton/5-workload/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rados/upgrade/jewel-x-singleton/7-workload/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rados/upgrade/jewel-x-singleton/9-workload/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rados/verify/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rados/verify/1thrash/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/verify/1thrash/default.yaml -------------------------------------------------------------------------------- /suites/rados/verify/1thrash/none.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/verify/1thrash/none.yaml -------------------------------------------------------------------------------- /suites/rados/verify/clusters/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rados/verify/clusters/fixed-2.yaml: -------------------------------------------------------------------------------- 1 | ../../../../clusters/fixed-2.yaml -------------------------------------------------------------------------------- /suites/rados/verify/clusters/openstack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/verify/clusters/openstack.yaml -------------------------------------------------------------------------------- /suites/rados/verify/fs/btrfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/btrfs.yaml -------------------------------------------------------------------------------- /suites/rados/verify/mon_kv_backend: -------------------------------------------------------------------------------- 1 | ../../../mon_kv_backend -------------------------------------------------------------------------------- /suites/rados/verify/msgr: -------------------------------------------------------------------------------- 1 | ../basic/msgr -------------------------------------------------------------------------------- /suites/rados/verify/msgr-failures/few.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/verify/msgr-failures/few.yaml -------------------------------------------------------------------------------- /suites/rados/verify/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/rados/verify/rados.yaml: -------------------------------------------------------------------------------- 1 | ../../../config/rados.yaml -------------------------------------------------------------------------------- /suites/rados/verify/tasks/mon_recovery.yaml: -------------------------------------------------------------------------------- 1 | tasks: 2 | - mon_recovery: 3 | -------------------------------------------------------------------------------- /suites/rados/verify/tasks/rados_cls_all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/verify/tasks/rados_cls_all.yaml -------------------------------------------------------------------------------- /suites/rados/verify/validater/lockdep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/verify/validater/lockdep.yaml -------------------------------------------------------------------------------- /suites/rados/verify/validater/valgrind.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rados/verify/validater/valgrind.yaml -------------------------------------------------------------------------------- /suites/rbd/basic/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rbd/basic/base/install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/basic/base/install.yaml -------------------------------------------------------------------------------- /suites/rbd/basic/cachepool/none.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rbd/basic/cachepool/small.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/basic/cachepool/small.yaml -------------------------------------------------------------------------------- /suites/rbd/basic/clusters/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rbd/basic/clusters/fixed-1.yaml: -------------------------------------------------------------------------------- 1 | ../../../../clusters/fixed-1.yaml -------------------------------------------------------------------------------- /suites/rbd/basic/clusters/openstack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/basic/clusters/openstack.yaml -------------------------------------------------------------------------------- /suites/rbd/basic/fs/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/rbd/basic/msgr-failures/few.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/basic/msgr-failures/few.yaml -------------------------------------------------------------------------------- /suites/rbd/basic/msgr-failures/many.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/basic/msgr-failures/many.yaml -------------------------------------------------------------------------------- /suites/rbd/basic/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/rbd/basic/tasks/rbd_cli_tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/basic/tasks/rbd_cli_tests.yaml -------------------------------------------------------------------------------- /suites/rbd/basic/tasks/rbd_cls_tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/basic/tasks/rbd_cls_tests.yaml -------------------------------------------------------------------------------- /suites/rbd/cli/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rbd/cli/base/install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/cli/base/install.yaml -------------------------------------------------------------------------------- /suites/rbd/cli/clusters: -------------------------------------------------------------------------------- 1 | ../basic/clusters -------------------------------------------------------------------------------- /suites/rbd/cli/features/defaults.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/cli/features/defaults.yaml -------------------------------------------------------------------------------- /suites/rbd/cli/features/format-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/cli/features/format-1.yaml -------------------------------------------------------------------------------- /suites/rbd/cli/features/journaling.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/cli/features/journaling.yaml -------------------------------------------------------------------------------- /suites/rbd/cli/features/layering.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/cli/features/layering.yaml -------------------------------------------------------------------------------- /suites/rbd/cli/fs: -------------------------------------------------------------------------------- 1 | ../basic/fs -------------------------------------------------------------------------------- /suites/rbd/cli/msgr-failures/few.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/cli/msgr-failures/few.yaml -------------------------------------------------------------------------------- /suites/rbd/cli/msgr-failures/many.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/cli/msgr-failures/many.yaml -------------------------------------------------------------------------------- /suites/rbd/cli/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/rbd/cli/pool/ec-data-pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/cli/pool/ec-data-pool.yaml -------------------------------------------------------------------------------- /suites/rbd/cli/pool/none.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rbd/cli/pool/small-cache-pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/cli/pool/small-cache-pool.yaml -------------------------------------------------------------------------------- /suites/rbd/cli/workloads/rbd_cli_copy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/cli/workloads/rbd_cli_copy.yaml -------------------------------------------------------------------------------- /suites/rbd/librbd/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rbd/librbd/cache/none.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/librbd/cache/none.yaml -------------------------------------------------------------------------------- /suites/rbd/librbd/cache/writeback.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/librbd/cache/writeback.yaml -------------------------------------------------------------------------------- /suites/rbd/librbd/cache/writethrough.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/librbd/cache/writethrough.yaml -------------------------------------------------------------------------------- /suites/rbd/librbd/clusters/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rbd/librbd/clusters/fixed-3.yaml: -------------------------------------------------------------------------------- 1 | ../../../../clusters/fixed-3.yaml -------------------------------------------------------------------------------- /suites/rbd/librbd/clusters/openstack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/librbd/clusters/openstack.yaml -------------------------------------------------------------------------------- /suites/rbd/librbd/config/copy-on-read.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/librbd/config/copy-on-read.yaml -------------------------------------------------------------------------------- /suites/rbd/librbd/config/none.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rbd/librbd/fs: -------------------------------------------------------------------------------- 1 | ../basic/fs -------------------------------------------------------------------------------- /suites/rbd/librbd/msgr-failures/few.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/librbd/msgr-failures/few.yaml -------------------------------------------------------------------------------- /suites/rbd/librbd/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/rbd/librbd/pool/ec-data-pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/librbd/pool/ec-data-pool.yaml -------------------------------------------------------------------------------- /suites/rbd/librbd/pool/none.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rbd/librbd/pool/small-cache-pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/librbd/pool/small-cache-pool.yaml -------------------------------------------------------------------------------- /suites/rbd/librbd/workloads/c_api_tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/librbd/workloads/c_api_tests.yaml -------------------------------------------------------------------------------- /suites/rbd/librbd/workloads/fsx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/librbd/workloads/fsx.yaml -------------------------------------------------------------------------------- /suites/rbd/librbd/workloads/rbd_fio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/librbd/workloads/rbd_fio.yaml -------------------------------------------------------------------------------- /suites/rbd/maintenance/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rbd/maintenance/base/install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/maintenance/base/install.yaml -------------------------------------------------------------------------------- /suites/rbd/maintenance/clusters/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rbd/maintenance/clusters/fixed-3.yaml: -------------------------------------------------------------------------------- 1 | ../../../../clusters/fixed-3.yaml -------------------------------------------------------------------------------- /suites/rbd/maintenance/clusters/openstack.yaml: -------------------------------------------------------------------------------- 1 | ../../qemu/clusters/openstack.yaml -------------------------------------------------------------------------------- /suites/rbd/maintenance/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/rbd/maintenance/qemu/xfstests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/maintenance/qemu/xfstests.yaml -------------------------------------------------------------------------------- /suites/rbd/maintenance/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/rbd/mirror/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rbd/mirror/base/install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/mirror/base/install.yaml -------------------------------------------------------------------------------- /suites/rbd/mirror/cluster/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rbd/mirror/cluster/2-node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/mirror/cluster/2-node.yaml -------------------------------------------------------------------------------- /suites/rbd/mirror/cluster/openstack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/mirror/cluster/openstack.yaml -------------------------------------------------------------------------------- /suites/rbd/mirror/fs: -------------------------------------------------------------------------------- 1 | ../basic/fs -------------------------------------------------------------------------------- /suites/rbd/mirror/msgr-failures: -------------------------------------------------------------------------------- 1 | ../basic/msgr-failures -------------------------------------------------------------------------------- /suites/rbd/mirror/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/rbd/nbd/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rbd/nbd/base: -------------------------------------------------------------------------------- 1 | ../thrash/base -------------------------------------------------------------------------------- /suites/rbd/nbd/cluster/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rbd/nbd/cluster/fixed-3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/nbd/cluster/fixed-3.yaml -------------------------------------------------------------------------------- /suites/rbd/nbd/cluster/openstack.yaml: -------------------------------------------------------------------------------- 1 | ../../thrash/clusters/openstack.yaml -------------------------------------------------------------------------------- /suites/rbd/nbd/fs: -------------------------------------------------------------------------------- 1 | ../thrash/fs -------------------------------------------------------------------------------- /suites/rbd/nbd/msgr-failures: -------------------------------------------------------------------------------- 1 | ../thrash/msgr-failures -------------------------------------------------------------------------------- /suites/rbd/nbd/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/rbd/nbd/thrashers: -------------------------------------------------------------------------------- 1 | ../thrash/thrashers -------------------------------------------------------------------------------- /suites/rbd/nbd/workloads/rbd_fsx_nbd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/nbd/workloads/rbd_fsx_nbd.yaml -------------------------------------------------------------------------------- /suites/rbd/nbd/workloads/rbd_nbd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/nbd/workloads/rbd_nbd.yaml -------------------------------------------------------------------------------- /suites/rbd/qemu/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rbd/qemu/cache/none.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/qemu/cache/none.yaml -------------------------------------------------------------------------------- /suites/rbd/qemu/cache/writeback.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/qemu/cache/writeback.yaml -------------------------------------------------------------------------------- /suites/rbd/qemu/cache/writethrough.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/qemu/cache/writethrough.yaml -------------------------------------------------------------------------------- /suites/rbd/qemu/clusters/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rbd/qemu/clusters/fixed-3.yaml: -------------------------------------------------------------------------------- 1 | ../../../../clusters/fixed-3.yaml -------------------------------------------------------------------------------- /suites/rbd/qemu/clusters/openstack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/qemu/clusters/openstack.yaml -------------------------------------------------------------------------------- /suites/rbd/qemu/features/defaults.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/qemu/features/defaults.yaml -------------------------------------------------------------------------------- /suites/rbd/qemu/features/journaling.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/qemu/features/journaling.yaml -------------------------------------------------------------------------------- /suites/rbd/qemu/fs: -------------------------------------------------------------------------------- 1 | ../basic/fs -------------------------------------------------------------------------------- /suites/rbd/qemu/msgr-failures/few.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/qemu/msgr-failures/few.yaml -------------------------------------------------------------------------------- /suites/rbd/qemu/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/rbd/qemu/pool/ec-cache-pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/qemu/pool/ec-cache-pool.yaml -------------------------------------------------------------------------------- /suites/rbd/qemu/pool/ec-data-pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/qemu/pool/ec-data-pool.yaml -------------------------------------------------------------------------------- /suites/rbd/qemu/pool/none.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rbd/qemu/pool/small-cache-pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/qemu/pool/small-cache-pool.yaml -------------------------------------------------------------------------------- /suites/rbd/qemu/workloads/qemu_bonnie.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/qemu/workloads/qemu_bonnie.yaml -------------------------------------------------------------------------------- /suites/rbd/qemu/workloads/qemu_fsstress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/qemu/workloads/qemu_fsstress.yaml -------------------------------------------------------------------------------- /suites/rbd/qemu/workloads/qemu_xfstests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/qemu/workloads/qemu_xfstests.yaml -------------------------------------------------------------------------------- /suites/rbd/singleton/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rbd/singleton/all/admin_socket.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/singleton/all/admin_socket.yaml -------------------------------------------------------------------------------- /suites/rbd/singleton/all/merge_diff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/singleton/all/merge_diff.yaml -------------------------------------------------------------------------------- /suites/rbd/singleton/all/permissions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/singleton/all/permissions.yaml -------------------------------------------------------------------------------- /suites/rbd/singleton/all/rbd_mirror.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/singleton/all/rbd_mirror.yaml -------------------------------------------------------------------------------- /suites/rbd/singleton/all/verify_pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/singleton/all/verify_pool.yaml -------------------------------------------------------------------------------- /suites/rbd/singleton/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/rbd/singleton/openstack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/singleton/openstack.yaml -------------------------------------------------------------------------------- /suites/rbd/thrash/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rbd/thrash/base/install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/thrash/base/install.yaml -------------------------------------------------------------------------------- /suites/rbd/thrash/clusters/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rbd/thrash/clusters/fixed-2.yaml: -------------------------------------------------------------------------------- 1 | ../../../../clusters/fixed-2.yaml -------------------------------------------------------------------------------- /suites/rbd/thrash/clusters/openstack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/thrash/clusters/openstack.yaml -------------------------------------------------------------------------------- /suites/rbd/thrash/fs/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/rbd/thrash/msgr-failures/few.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/thrash/msgr-failures/few.yaml -------------------------------------------------------------------------------- /suites/rbd/thrash/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/rbd/thrash/thrashers/cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/thrash/thrashers/cache.yaml -------------------------------------------------------------------------------- /suites/rbd/thrash/thrashers/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/thrash/thrashers/default.yaml -------------------------------------------------------------------------------- /suites/rbd/thrash/workloads/journal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/thrash/workloads/journal.yaml -------------------------------------------------------------------------------- /suites/rbd/valgrind/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rbd/valgrind/base/install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/valgrind/base/install.yaml -------------------------------------------------------------------------------- /suites/rbd/valgrind/clusters: -------------------------------------------------------------------------------- 1 | ../basic/clusters -------------------------------------------------------------------------------- /suites/rbd/valgrind/fs: -------------------------------------------------------------------------------- 1 | ../basic/fs -------------------------------------------------------------------------------- /suites/rbd/valgrind/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/rbd/valgrind/validator/memcheck.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/valgrind/validator/memcheck.yaml -------------------------------------------------------------------------------- /suites/rbd/valgrind/workloads/fsx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rbd/valgrind/workloads/fsx.yaml -------------------------------------------------------------------------------- /suites/rest/basic/tasks/rest_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rest/basic/tasks/rest_test.yaml -------------------------------------------------------------------------------- /suites/rgw/multifs/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rgw/multifs/clusters/fixed-2.yaml: -------------------------------------------------------------------------------- 1 | ../../../../clusters/fixed-2.yaml -------------------------------------------------------------------------------- /suites/rgw/multifs/frontend/apache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rgw/multifs/frontend/apache.yaml -------------------------------------------------------------------------------- /suites/rgw/multifs/frontend/civetweb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rgw/multifs/frontend/civetweb.yaml -------------------------------------------------------------------------------- /suites/rgw/multifs/fs/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/rgw/multifs/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/rgw/multifs/overrides.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rgw/multifs/overrides.yaml -------------------------------------------------------------------------------- /suites/rgw/multifs/rgw_pool_type: -------------------------------------------------------------------------------- 1 | ../../../rgw_pool_type -------------------------------------------------------------------------------- /suites/rgw/multifs/tasks/rgw_s3tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rgw/multifs/tasks/rgw_s3tests.yaml -------------------------------------------------------------------------------- /suites/rgw/multifs/tasks/rgw_swift.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rgw/multifs/tasks/rgw_swift.yaml -------------------------------------------------------------------------------- /suites/rgw/singleton/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rgw/singleton/frontend/apache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rgw/singleton/frontend/apache.yaml -------------------------------------------------------------------------------- /suites/rgw/singleton/fs/xfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rgw/singleton/fs/xfs.yaml -------------------------------------------------------------------------------- /suites/rgw/singleton/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/rgw/singleton/overrides.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rgw/singleton/overrides.yaml -------------------------------------------------------------------------------- /suites/rgw/singleton/rgw_pool_type: -------------------------------------------------------------------------------- 1 | ../../../rgw_pool_type/ -------------------------------------------------------------------------------- /suites/rgw/singleton/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/rgw/verify/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/rgw/verify/clusters/fixed-2.yaml: -------------------------------------------------------------------------------- 1 | ../../../../clusters/fixed-2.yaml -------------------------------------------------------------------------------- /suites/rgw/verify/frontend/apache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rgw/verify/frontend/apache.yaml -------------------------------------------------------------------------------- /suites/rgw/verify/frontend/civetweb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rgw/verify/frontend/civetweb.yaml -------------------------------------------------------------------------------- /suites/rgw/verify/fs/xfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rgw/verify/fs/xfs.yaml -------------------------------------------------------------------------------- /suites/rgw/verify/msgr-failures/few.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rgw/verify/msgr-failures/few.yaml -------------------------------------------------------------------------------- /suites/rgw/verify/objectstore: -------------------------------------------------------------------------------- 1 | ../../../objectstore -------------------------------------------------------------------------------- /suites/rgw/verify/overrides.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rgw/verify/overrides.yaml -------------------------------------------------------------------------------- /suites/rgw/verify/rgw_pool_type: -------------------------------------------------------------------------------- 1 | ../../../rgw_pool_type/ -------------------------------------------------------------------------------- /suites/rgw/verify/tasks/rgw_s3tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rgw/verify/tasks/rgw_s3tests.yaml -------------------------------------------------------------------------------- /suites/rgw/verify/tasks/rgw_swift.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rgw/verify/tasks/rgw_swift.yaml -------------------------------------------------------------------------------- /suites/rgw/verify/validater/lockdep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rgw/verify/validater/lockdep.yaml -------------------------------------------------------------------------------- /suites/rgw/verify/validater/valgrind.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/rgw/verify/validater/valgrind.yaml -------------------------------------------------------------------------------- /suites/samba/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/samba/clusters/samba-basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/samba/clusters/samba-basic.yaml -------------------------------------------------------------------------------- /suites/samba/fs/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/samba/install/install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/samba/install/install.yaml -------------------------------------------------------------------------------- /suites/samba/mount/fuse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/samba/mount/fuse.yaml -------------------------------------------------------------------------------- /suites/samba/mount/kclient.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/samba/mount/kclient.yaml -------------------------------------------------------------------------------- /suites/samba/mount/native.yaml: -------------------------------------------------------------------------------- 1 | tasks: 2 | - samba: 3 | -------------------------------------------------------------------------------- /suites/samba/mount/noceph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/samba/mount/noceph.yaml -------------------------------------------------------------------------------- /suites/samba/workload/cifs-dbench.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/samba/workload/cifs-dbench.yaml -------------------------------------------------------------------------------- /suites/samba/workload/cifs-fsstress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/samba/workload/cifs-fsstress.yaml -------------------------------------------------------------------------------- /suites/samba/workload/smbtorture.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/samba/workload/smbtorture.yaml -------------------------------------------------------------------------------- /suites/smoke/1node/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/smoke/1node/clusters/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/smoke/1node/clusters/fixed-1.yaml: -------------------------------------------------------------------------------- 1 | ../../../../clusters/fixed-1.yaml -------------------------------------------------------------------------------- /suites/smoke/1node/clusters/openstack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/smoke/1node/clusters/openstack.yaml -------------------------------------------------------------------------------- /suites/smoke/1node/tasks/ceph-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/smoke/1node/tasks/ceph-deploy.yaml -------------------------------------------------------------------------------- /suites/smoke/basic/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/smoke/basic/clusters/fixed-3-cephfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../clusters/fixed-3-cephfs.yaml -------------------------------------------------------------------------------- /suites/smoke/basic/fs/btrfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/btrfs.yaml -------------------------------------------------------------------------------- /suites/smoke/basic/tasks/mon_thrash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/smoke/basic/tasks/mon_thrash.yaml -------------------------------------------------------------------------------- /suites/smoke/basic/tasks/rados_bench.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/smoke/basic/tasks/rados_bench.yaml -------------------------------------------------------------------------------- /suites/smoke/basic/tasks/rados_python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/smoke/basic/tasks/rados_python.yaml -------------------------------------------------------------------------------- /suites/smoke/basic/tasks/rbd_fsx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/smoke/basic/tasks/rbd_fsx.yaml -------------------------------------------------------------------------------- /suites/smoke/basic/tasks/rgw_s3tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/smoke/basic/tasks/rgw_s3tests.yaml -------------------------------------------------------------------------------- /suites/smoke/basic/tasks/rgw_swift.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/smoke/basic/tasks/rgw_swift.yaml -------------------------------------------------------------------------------- /suites/smoke/systemd/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/smoke/systemd/distro/centos_7.2.yaml: -------------------------------------------------------------------------------- 1 | ../../../../distros/supported/centos_7.2.yaml -------------------------------------------------------------------------------- /suites/smoke/systemd/distro/ubuntu_16.04.yaml: -------------------------------------------------------------------------------- 1 | os_type: ubuntu 2 | os_version: "16.04" 3 | -------------------------------------------------------------------------------- /suites/smoke/systemd/tasks/systemd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/smoke/systemd/tasks/systemd.yaml -------------------------------------------------------------------------------- /suites/stress/bench/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/stress/bench/clusters/fixed-3-cephfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../clusters/fixed-3-cephfs.yaml -------------------------------------------------------------------------------- /suites/stress/thrash/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/stress/thrash/clusters/16-osd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/stress/thrash/clusters/16-osd.yaml -------------------------------------------------------------------------------- /suites/stress/thrash/clusters/8-osd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/stress/thrash/clusters/8-osd.yaml -------------------------------------------------------------------------------- /suites/stress/thrash/fs/btrfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/btrfs.yaml -------------------------------------------------------------------------------- /suites/stress/thrash/fs/none.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/stress/thrash/fs/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/stress/thrash/thrashers/fast.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/stress/thrash/thrashers/fast.yaml -------------------------------------------------------------------------------- /suites/teuthology/buildpackages/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/teuthology/buildpackages/distros: -------------------------------------------------------------------------------- 1 | ../../../distros/supported/ -------------------------------------------------------------------------------- /suites/teuthology/ceph/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/teuthology/ceph/clusters/single.yaml: -------------------------------------------------------------------------------- 1 | roles: 2 | - [mon.0, client.0] 3 | -------------------------------------------------------------------------------- /suites/teuthology/ceph/distros: -------------------------------------------------------------------------------- 1 | ../../../distros/supported/ -------------------------------------------------------------------------------- /suites/teuthology/integration.yaml: -------------------------------------------------------------------------------- 1 | tasks: 2 | - teuthology_integration: 3 | -------------------------------------------------------------------------------- /suites/teuthology/multi-cluster/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/teuthology/multi-cluster/fs/xfs.yaml: -------------------------------------------------------------------------------- 1 | ../../../../fs/xfs.yaml -------------------------------------------------------------------------------- /suites/teuthology/no-ceph/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/teuthology/no-ceph/clusters/single.yaml: -------------------------------------------------------------------------------- 1 | roles: 2 | - [mon.0, client.0] 3 | -------------------------------------------------------------------------------- /suites/teuthology/nop/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/teuthology/nop/all/nop.yaml: -------------------------------------------------------------------------------- 1 | tasks: 2 | - nop: 3 | 4 | -------------------------------------------------------------------------------- /suites/teuthology/rgw/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/teuthology/rgw/distros: -------------------------------------------------------------------------------- 1 | ../../../distros/supported/ -------------------------------------------------------------------------------- /suites/teuthology/workunits/yes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/teuthology/workunits/yes.yaml -------------------------------------------------------------------------------- /suites/tgt/basic/%: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /suites/tgt/basic/clusters/fixed-3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/tgt/basic/clusters/fixed-3.yaml -------------------------------------------------------------------------------- /suites/tgt/basic/fs/btrfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/tgt/basic/fs/btrfs.yaml -------------------------------------------------------------------------------- /suites/tgt/basic/msgr-failures/few.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/tgt/basic/msgr-failures/few.yaml -------------------------------------------------------------------------------- /suites/tgt/basic/msgr-failures/many.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/tgt/basic/msgr-failures/many.yaml -------------------------------------------------------------------------------- /suites/tgt/basic/tasks/blogbench.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/tgt/basic/tasks/blogbench.yaml -------------------------------------------------------------------------------- /suites/tgt/basic/tasks/bonnie.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/tgt/basic/tasks/bonnie.yaml -------------------------------------------------------------------------------- /suites/tgt/basic/tasks/dbench-short.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/tgt/basic/tasks/dbench-short.yaml -------------------------------------------------------------------------------- /suites/tgt/basic/tasks/dbench.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/tgt/basic/tasks/dbench.yaml -------------------------------------------------------------------------------- /suites/tgt/basic/tasks/ffsb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/tgt/basic/tasks/ffsb.yaml -------------------------------------------------------------------------------- /suites/tgt/basic/tasks/fio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/tgt/basic/tasks/fio.yaml -------------------------------------------------------------------------------- /suites/tgt/basic/tasks/fsstress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/tgt/basic/tasks/fsstress.yaml -------------------------------------------------------------------------------- /suites/tgt/basic/tasks/fsx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/tgt/basic/tasks/fsx.yaml -------------------------------------------------------------------------------- /suites/tgt/basic/tasks/fsync-tester.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/tgt/basic/tasks/fsync-tester.yaml -------------------------------------------------------------------------------- /suites/tgt/basic/tasks/iogen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/tgt/basic/tasks/iogen.yaml -------------------------------------------------------------------------------- /suites/tgt/basic/tasks/iozone-sync.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/tgt/basic/tasks/iozone-sync.yaml -------------------------------------------------------------------------------- /suites/tgt/basic/tasks/iozone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/tgt/basic/tasks/iozone.yaml -------------------------------------------------------------------------------- /suites/tgt/basic/tasks/pjd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/suites/tgt/basic/tasks/pjd.yaml -------------------------------------------------------------------------------- /suites/upgrade/client-upgrade/hammer-client-x/basic/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/upgrade/client-upgrade/hammer-client-x/rbd/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/upgrade/client-upgrade/jewel-client-x/basic/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/upgrade/client-upgrade/jewel-client-x/rbd/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/upgrade/hammer-jewel-x/parallel/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/upgrade/hammer-jewel-x/parallel/2-workload/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/upgrade/hammer-jewel-x/parallel/4-jewel.yaml: -------------------------------------------------------------------------------- 1 | ../../../../releases/jewel.yaml -------------------------------------------------------------------------------- /suites/upgrade/hammer-jewel-x/parallel/6-workload/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/upgrade/hammer-jewel-x/parallel/8-kraken.yaml: -------------------------------------------------------------------------------- 1 | ../../../../releases/kraken.yaml -------------------------------------------------------------------------------- /suites/upgrade/hammer-jewel-x/parallel/9-final-workload/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/upgrade/hammer-jewel-x/parallel/distros/centos_7.2.yaml: -------------------------------------------------------------------------------- 1 | os_type: centos 2 | os_version: "7.2" 3 | -------------------------------------------------------------------------------- /suites/upgrade/hammer-jewel-x/parallel/distros/ubuntu_14.04.yaml: -------------------------------------------------------------------------------- 1 | os_type: ubuntu 2 | os_version: "14.04" 3 | -------------------------------------------------------------------------------- /suites/upgrade/hammer-jewel-x/stress-split/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/upgrade/hammer-jewel-x/stress-split/0-cluster: -------------------------------------------------------------------------------- 1 | ../../jewel-x/stress-split/0-cluster -------------------------------------------------------------------------------- /suites/upgrade/hammer-jewel-x/stress-split/2-partial-upgrade: -------------------------------------------------------------------------------- 1 | ../../jewel-x/stress-split/2-partial-upgrade/ -------------------------------------------------------------------------------- /suites/upgrade/hammer-jewel-x/stress-split/3-thrash: -------------------------------------------------------------------------------- 1 | ../../jewel-x/stress-split/3-thrash/ -------------------------------------------------------------------------------- /suites/upgrade/hammer-jewel-x/stress-split/4-mon: -------------------------------------------------------------------------------- 1 | ../../jewel-x/stress-split/4-mon/ -------------------------------------------------------------------------------- /suites/upgrade/hammer-jewel-x/stress-split/5-workload: -------------------------------------------------------------------------------- 1 | ../../jewel-x/stress-split/5-workload/ -------------------------------------------------------------------------------- /suites/upgrade/hammer-jewel-x/stress-split/6-next-mon: -------------------------------------------------------------------------------- 1 | ../../jewel-x/stress-split/6-next-mon/ -------------------------------------------------------------------------------- /suites/upgrade/hammer-jewel-x/stress-split/7-workload: -------------------------------------------------------------------------------- 1 | ../../jewel-x/stress-split/7-workload/ -------------------------------------------------------------------------------- /suites/upgrade/hammer-jewel-x/stress-split/8-next-mon: -------------------------------------------------------------------------------- 1 | ../../jewel-x/stress-split/8-next-mon/ -------------------------------------------------------------------------------- /suites/upgrade/hammer-jewel-x/stress-split/9-workload: -------------------------------------------------------------------------------- 1 | ../../jewel-x/stress-split/9-workload/ -------------------------------------------------------------------------------- /suites/upgrade/hammer-jewel-x/stress-split/distros/centos_7.2.yaml: -------------------------------------------------------------------------------- 1 | os_type: centos 2 | os_version: "7.2" 3 | -------------------------------------------------------------------------------- /suites/upgrade/hammer-jewel-x/stress-split/distros/ubuntu_14.04.yaml: -------------------------------------------------------------------------------- 1 | os_type: ubuntu 2 | os_version: "14.04" 3 | -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/parallel/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/parallel/0-cluster/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/parallel/2-workload/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/parallel/4-kraken.yaml: -------------------------------------------------------------------------------- 1 | ../../../../releases/kraken.yaml -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/parallel/5-final-workload/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/parallel/distros: -------------------------------------------------------------------------------- 1 | ../../../../distros/supported/ -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/parallel/kraken.yaml: -------------------------------------------------------------------------------- 1 | ../../../../releases/kraken.yaml -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/point-to-point-x/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/point-to-point-x/distros/centos_7.2.yaml: -------------------------------------------------------------------------------- 1 | ../../../../../distros/all/centos_7.2.yaml -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/point-to-point-x/distros/ubuntu_14.04.yaml: -------------------------------------------------------------------------------- 1 | ../../../../../distros/all/ubuntu_14.04.yaml -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/stress-split-erasure-code-x86_64/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/stress-split-erasure-code-x86_64/0-cluster: -------------------------------------------------------------------------------- 1 | ../stress-split/0-cluster/ -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/stress-split-erasure-code-x86_64/0-x86_64.yaml: -------------------------------------------------------------------------------- 1 | arch: x86_64 2 | -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/stress-split-erasure-code-x86_64/1-jewel-install: -------------------------------------------------------------------------------- 1 | ../stress-split/1-jewel-install/ -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/stress-split-erasure-code-x86_64/2-partial-upgrade: -------------------------------------------------------------------------------- 1 | ../stress-split/2-partial-upgrade/ -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/stress-split-erasure-code-x86_64/4-mon: -------------------------------------------------------------------------------- 1 | ../stress-split/4-mon/ -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/stress-split-erasure-code-x86_64/6-next-mon: -------------------------------------------------------------------------------- 1 | ../stress-split/6-next-mon/ -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/stress-split-erasure-code-x86_64/8-next-mon: -------------------------------------------------------------------------------- 1 | ../stress-split/8-next-mon/ -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/stress-split-erasure-code/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/stress-split-erasure-code/0-cluster: -------------------------------------------------------------------------------- 1 | ../stress-split/0-cluster/ -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/stress-split-erasure-code/1-jewel-install: -------------------------------------------------------------------------------- 1 | ../stress-split/1-jewel-install/ -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/stress-split-erasure-code/2-partial-upgrade: -------------------------------------------------------------------------------- 1 | ../stress-split/2-partial-upgrade/ -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/stress-split-erasure-code/4-mon: -------------------------------------------------------------------------------- 1 | ../stress-split/4-mon/ -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/stress-split-erasure-code/6-next-mon: -------------------------------------------------------------------------------- 1 | ../stress-split/6-next-mon/ -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/stress-split-erasure-code/8-next-mon: -------------------------------------------------------------------------------- 1 | ../stress-split/8-next-mon/ -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/stress-split-erasure-code/distros: -------------------------------------------------------------------------------- 1 | ../../../../distros/supported/ -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/stress-split/%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/stress-split/0-cluster/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/stress-split/5-workload/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/stress-split/7-workload/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/stress-split/9-workload/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suites/upgrade/jewel-x/stress-split/distros: -------------------------------------------------------------------------------- 1 | ../../../../distros/supported/ -------------------------------------------------------------------------------- /tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/__init__.py -------------------------------------------------------------------------------- /tasks/admin_socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/admin_socket.py -------------------------------------------------------------------------------- /tasks/apache.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/apache.conf.template -------------------------------------------------------------------------------- /tasks/autotest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/autotest.py -------------------------------------------------------------------------------- /tasks/aver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/aver.py -------------------------------------------------------------------------------- /tasks/blktrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/blktrace.py -------------------------------------------------------------------------------- /tasks/boto.cfg.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/boto.cfg.template -------------------------------------------------------------------------------- /tasks/buildpackages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/buildpackages.py -------------------------------------------------------------------------------- /tasks/buildpackages/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/buildpackages/Makefile -------------------------------------------------------------------------------- /tasks/buildpackages/centos-7.0-user-data.txt: -------------------------------------------------------------------------------- 1 | user-data.txt -------------------------------------------------------------------------------- /tasks/buildpackages/centos-7.1-user-data.txt: -------------------------------------------------------------------------------- 1 | user-data.txt -------------------------------------------------------------------------------- /tasks/buildpackages/centos-7.2-user-data.txt: -------------------------------------------------------------------------------- 1 | user-data.txt -------------------------------------------------------------------------------- /tasks/buildpackages/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/buildpackages/common.sh -------------------------------------------------------------------------------- /tasks/buildpackages/make-deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/buildpackages/make-deb.sh -------------------------------------------------------------------------------- /tasks/buildpackages/make-rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/buildpackages/make-rpm.sh -------------------------------------------------------------------------------- /tasks/buildpackages/ubuntu-12.04-user-data.txt: -------------------------------------------------------------------------------- 1 | user-data.txt -------------------------------------------------------------------------------- /tasks/buildpackages/ubuntu-14.04-user-data.txt: -------------------------------------------------------------------------------- 1 | user-data.txt -------------------------------------------------------------------------------- /tasks/buildpackages/ubuntu-16.04-user-data.txt: -------------------------------------------------------------------------------- 1 | user-data.txt -------------------------------------------------------------------------------- /tasks/buildpackages/user-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/buildpackages/user-data.txt -------------------------------------------------------------------------------- /tasks/calamari_nosetests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/calamari_nosetests.py -------------------------------------------------------------------------------- /tasks/calamari_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/calamari_setup.py -------------------------------------------------------------------------------- /tasks/ceph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/ceph.py -------------------------------------------------------------------------------- /tasks/ceph_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/ceph_client.py -------------------------------------------------------------------------------- /tasks/ceph_deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/ceph_deploy.py -------------------------------------------------------------------------------- /tasks/ceph_fuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/ceph_fuse.py -------------------------------------------------------------------------------- /tasks/ceph_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/ceph_manager.py -------------------------------------------------------------------------------- /tasks/ceph_objectstore_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/ceph_objectstore_tool.py -------------------------------------------------------------------------------- /tasks/ceph_test_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/ceph_test_case.py -------------------------------------------------------------------------------- /tasks/cephfs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tasks/cephfs/cephfs_test_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cephfs/cephfs_test_case.py -------------------------------------------------------------------------------- /tasks/cephfs/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cephfs/filesystem.py -------------------------------------------------------------------------------- /tasks/cephfs/fuse_mount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cephfs/fuse_mount.py -------------------------------------------------------------------------------- /tasks/cephfs/kernel_mount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cephfs/kernel_mount.py -------------------------------------------------------------------------------- /tasks/cephfs/mount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cephfs/mount.py -------------------------------------------------------------------------------- /tasks/cephfs/test_auto_repair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cephfs/test_auto_repair.py -------------------------------------------------------------------------------- /tasks/cephfs/test_backtrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cephfs/test_backtrace.py -------------------------------------------------------------------------------- /tasks/cephfs/test_cap_flush.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cephfs/test_cap_flush.py -------------------------------------------------------------------------------- /tasks/cephfs/test_client_limits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cephfs/test_client_limits.py -------------------------------------------------------------------------------- /tasks/cephfs/test_client_recovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cephfs/test_client_recovery.py -------------------------------------------------------------------------------- /tasks/cephfs/test_config_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cephfs/test_config_commands.py -------------------------------------------------------------------------------- /tasks/cephfs/test_damage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cephfs/test_damage.py -------------------------------------------------------------------------------- /tasks/cephfs/test_data_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cephfs/test_data_scan.py -------------------------------------------------------------------------------- /tasks/cephfs/test_dump_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cephfs/test_dump_tree.py -------------------------------------------------------------------------------- /tasks/cephfs/test_failover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cephfs/test_failover.py -------------------------------------------------------------------------------- /tasks/cephfs/test_flush.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cephfs/test_flush.py -------------------------------------------------------------------------------- /tasks/cephfs/test_forward_scrub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cephfs/test_forward_scrub.py -------------------------------------------------------------------------------- /tasks/cephfs/test_fragment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cephfs/test_fragment.py -------------------------------------------------------------------------------- /tasks/cephfs/test_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cephfs/test_full.py -------------------------------------------------------------------------------- /tasks/cephfs/test_journal_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cephfs/test_journal_migration.py -------------------------------------------------------------------------------- /tasks/cephfs/test_journal_repair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cephfs/test_journal_repair.py -------------------------------------------------------------------------------- /tasks/cephfs/test_mantle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cephfs/test_mantle.py -------------------------------------------------------------------------------- /tasks/cephfs/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cephfs/test_misc.py -------------------------------------------------------------------------------- /tasks/cephfs/test_pool_perm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cephfs/test_pool_perm.py -------------------------------------------------------------------------------- /tasks/cephfs/test_readahead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cephfs/test_readahead.py -------------------------------------------------------------------------------- /tasks/cephfs/test_scrub_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cephfs/test_scrub_checks.py -------------------------------------------------------------------------------- /tasks/cephfs/test_sessionmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cephfs/test_sessionmap.py -------------------------------------------------------------------------------- /tasks/cephfs/test_strays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cephfs/test_strays.py -------------------------------------------------------------------------------- /tasks/cephfs/test_volume_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cephfs/test_volume_client.py -------------------------------------------------------------------------------- /tasks/cephfs_test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cephfs_test_runner.py -------------------------------------------------------------------------------- /tasks/cifs_mount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cifs_mount.py -------------------------------------------------------------------------------- /tasks/cram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/cram.py -------------------------------------------------------------------------------- /tasks/create_verify_lfn_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/create_verify_lfn_objects.py -------------------------------------------------------------------------------- /tasks/devstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/devstack.py -------------------------------------------------------------------------------- /tasks/die_on_err.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/die_on_err.py -------------------------------------------------------------------------------- /tasks/divergent_priors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/divergent_priors.py -------------------------------------------------------------------------------- /tasks/divergent_priors2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/divergent_priors2.py -------------------------------------------------------------------------------- /tasks/dump_stuck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/dump_stuck.py -------------------------------------------------------------------------------- /tasks/ec_lost_unfound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/ec_lost_unfound.py -------------------------------------------------------------------------------- /tasks/filestore_idempotent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/filestore_idempotent.py -------------------------------------------------------------------------------- /tasks/kclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/kclient.py -------------------------------------------------------------------------------- /tasks/locktest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/locktest.py -------------------------------------------------------------------------------- /tasks/logrotate.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/logrotate.conf -------------------------------------------------------------------------------- /tasks/lost_unfound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/lost_unfound.py -------------------------------------------------------------------------------- /tasks/manypools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/manypools.py -------------------------------------------------------------------------------- /tasks/mds_creation_failure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/mds_creation_failure.py -------------------------------------------------------------------------------- /tasks/mds_thrash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/mds_thrash.py -------------------------------------------------------------------------------- /tasks/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/metadata.yaml -------------------------------------------------------------------------------- /tasks/mgr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tasks/mgr/mgr_test_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/mgr/mgr_test_case.py -------------------------------------------------------------------------------- /tasks/mgr/test_failover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/mgr/test_failover.py -------------------------------------------------------------------------------- /tasks/mod_fastcgi.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/mod_fastcgi.conf.template -------------------------------------------------------------------------------- /tasks/mod_proxy_fcgi.tcp.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/mod_proxy_fcgi.tcp.conf.template -------------------------------------------------------------------------------- /tasks/mod_proxy_fcgi.uds.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/mod_proxy_fcgi.uds.conf.template -------------------------------------------------------------------------------- /tasks/mon_clock_skew_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/mon_clock_skew_check.py -------------------------------------------------------------------------------- /tasks/mon_recovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/mon_recovery.py -------------------------------------------------------------------------------- /tasks/mon_seesaw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/mon_seesaw.py -------------------------------------------------------------------------------- /tasks/mon_thrash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/mon_thrash.py -------------------------------------------------------------------------------- /tasks/multibench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/multibench.py -------------------------------------------------------------------------------- /tasks/object_source_down.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/object_source_down.py -------------------------------------------------------------------------------- /tasks/omapbench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/omapbench.py -------------------------------------------------------------------------------- /tasks/osd_backfill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/osd_backfill.py -------------------------------------------------------------------------------- /tasks/osd_failsafe_enospc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/osd_failsafe_enospc.py -------------------------------------------------------------------------------- /tasks/osd_recovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/osd_recovery.py -------------------------------------------------------------------------------- /tasks/peer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/peer.py -------------------------------------------------------------------------------- /tasks/peering_speed_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/peering_speed_test.py -------------------------------------------------------------------------------- /tasks/populate_rbd_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/populate_rbd_pool.py -------------------------------------------------------------------------------- /tasks/qemu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/qemu.py -------------------------------------------------------------------------------- /tasks/rados.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/rados.py -------------------------------------------------------------------------------- /tasks/radosbench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/radosbench.py -------------------------------------------------------------------------------- /tasks/radosbenchsweep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/radosbenchsweep.py -------------------------------------------------------------------------------- /tasks/radosgw_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/radosgw_admin.py -------------------------------------------------------------------------------- /tasks/radosgw_admin_rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/radosgw_admin_rest.py -------------------------------------------------------------------------------- /tasks/radosgw_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/radosgw_agent.py -------------------------------------------------------------------------------- /tasks/rbd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/rbd.py -------------------------------------------------------------------------------- /tasks/rbd_fio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/rbd_fio.py -------------------------------------------------------------------------------- /tasks/rbd_fsx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/rbd_fsx.py -------------------------------------------------------------------------------- /tasks/rbd_mirror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/rbd_mirror.py -------------------------------------------------------------------------------- /tasks/rebuild_mondb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/rebuild_mondb.py -------------------------------------------------------------------------------- /tasks/recovery_bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/recovery_bench.py -------------------------------------------------------------------------------- /tasks/reg11184.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/reg11184.py -------------------------------------------------------------------------------- /tasks/rep_lost_unfound_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/rep_lost_unfound_delete.py -------------------------------------------------------------------------------- /tasks/repair_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/repair_test.py -------------------------------------------------------------------------------- /tasks/resolve_stuck_peering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/resolve_stuck_peering.py -------------------------------------------------------------------------------- /tasks/rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/rest_api.py -------------------------------------------------------------------------------- /tasks/restart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/restart.py -------------------------------------------------------------------------------- /tasks/rgw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/rgw.py -------------------------------------------------------------------------------- /tasks/rgw_logsocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/rgw_logsocket.py -------------------------------------------------------------------------------- /tasks/s3readwrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/s3readwrite.py -------------------------------------------------------------------------------- /tasks/s3roundtrip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/s3roundtrip.py -------------------------------------------------------------------------------- /tasks/s3tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/s3tests.py -------------------------------------------------------------------------------- /tasks/samba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/samba.py -------------------------------------------------------------------------------- /tasks/scrub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/scrub.py -------------------------------------------------------------------------------- /tasks/scrub_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/scrub_test.py -------------------------------------------------------------------------------- /tasks/systemd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/systemd.py -------------------------------------------------------------------------------- /tasks/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tasks/tests/test_buildpackages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/tests/test_buildpackages.py -------------------------------------------------------------------------------- /tasks/tests/test_devstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/tests/test_devstack.py -------------------------------------------------------------------------------- /tasks/tests/test_radosgw_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/tests/test_radosgw_admin.py -------------------------------------------------------------------------------- /tasks/teuthology_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/teuthology_integration.py -------------------------------------------------------------------------------- /tasks/tgt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/tgt.py -------------------------------------------------------------------------------- /tasks/thrash_pool_snaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/thrash_pool_snaps.py -------------------------------------------------------------------------------- /tasks/thrashosds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/thrashosds.py -------------------------------------------------------------------------------- /tasks/userdata_setup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/userdata_setup.yaml -------------------------------------------------------------------------------- /tasks/userdata_teardown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/userdata_teardown.yaml -------------------------------------------------------------------------------- /tasks/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/util/__init__.py -------------------------------------------------------------------------------- /tasks/util/rados.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/util/rados.py -------------------------------------------------------------------------------- /tasks/util/rgw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/util/rgw.py -------------------------------------------------------------------------------- /tasks/util/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tasks/util/test/test_rados.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/util/test/test_rados.py -------------------------------------------------------------------------------- /tasks/vstart_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/vstart_runner.py -------------------------------------------------------------------------------- /tasks/watch_notify_same_primary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/watch_notify_same_primary.py -------------------------------------------------------------------------------- /tasks/watch_notify_stress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/watch_notify_stress.py -------------------------------------------------------------------------------- /tasks/workunit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tasks/workunit.py -------------------------------------------------------------------------------- /timezone/eastern.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/timezone/eastern.yaml -------------------------------------------------------------------------------- /timezone/pacific.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/timezone/pacific.yaml -------------------------------------------------------------------------------- /timezone/random.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/timezone/random.yaml -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/ceph-qa-suite/HEAD/tox.ini --------------------------------------------------------------------------------