https://github.com/mirantis/ceph-qa-suite
https://github.com/mirantis/ceph-qa-suite
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mirantis/ceph-qa-suite
- Owner: Mirantis
- Created: 2016-06-07T11:22:29.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2020-02-26T12:00:46.000Z (about 5 years ago)
- Last Synced: 2025-01-17T12:17:49.523Z (4 months ago)
- Language: Python
- Size: 4.6 MB
- Stars: 0
- Watchers: 3
- Forks: 4
- Open Issues: 1
-
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