Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ceph/ceph-qa-suite
[DEPRECATED; see ceph.git/qa] Suite of Ceph QA tests to run with Teuthology
https://github.com/ceph/ceph-qa-suite
Last synced: 6 days ago
JSON representation
[DEPRECATED; see ceph.git/qa] Suite of Ceph QA tests to run with Teuthology
- Host: GitHub
- URL: https://github.com/ceph/ceph-qa-suite
- Owner: ceph
- Created: 2011-09-13T22:07:30.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2017-10-31T12:36:19.000Z (about 7 years ago)
- Last Synced: 2024-08-04T11:03:10.148Z (3 months ago)
- Language: Python
- Homepage:
- Size: 7.04 MB
- Stars: 33
- Watchers: 56
- Forks: 90
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
ceph-qa-suite
-------------clusters/ - some predefined cluster layouts
suites/ - set suiteThe suites directory has a hierarchical collection of tests. This can be
freeform, but generally follows the convention ofsuites///...
A test is described by a yaml fragment.
A test can exist as a single .yaml file in the directory tree. For example:
suites/foo/one.yaml
suites/foo/two.yamlis a simple group of two tests.
A directory with a magic '+' file represents a test that combines all
other items in the directory into a single yaml fragment. For example:suites/foo/bar/+
suites/foo/bar/a.yaml
suites/foo/bar/b.yaml
suites/foo/bar/c.yamlis a single test consisting of a + b + c.
A directory with a magic '%' file represents a test matrix formed from
all other items in the directory. For example,suites/baz/%
suites/baz/a.yaml
suites/baz/b/b1.yaml
suites/baz/b/b2.yaml
suites/baz/c.yaml
suites/baz/d/d1.yaml
suites/baz/d/d2.yamlis a 4-dimensional test matrix. Two dimensions (a, c) are trivial (1
item), so this is really 2x2 = 4 tests, which area + b1 + c + d1
a + b1 + c + d2
a + b2 + c + d1
a + b2 + c + d2Symlinks are okay.
The teuthology code can be found in https://github.com/ceph/teuthology.git