mirror of
https://github.com/ceph/ceph
synced 2025-02-22 10:37:15 +00:00
* refs/pull/34105/head: Merge PR #34042 into octopus Merge PR #33959 into octopus Merge PR #34067 into octopus mgr/DaemonServer: add explicit check that acting matches for merge Merge pull request #34040 from dillaman/wip-44396-partial-fix Merge PR #34098 into octopus mgr/rook: list rgw services mgr/rook: tolerate timestamps that are None mgr/orch: add 'subcluster' property to RGWSpec mgr/rook: do not create radosgw pools mgr/rook: refactor apply/add for rgw Merge PR #34082 into octopus Merge PR #34068 into octopus cephadm: relabel /etc/ganesha mount Merge PR #34046 into octopus Merge PR #34092 into octopus Merge pull request #33719 from ukernel/wip-44416 rbd-mirror: leader watcher should not cancel get locker if locker is invalid rbd-mirror: snapshot sync request needs to check for interruption librbd: request exclusive lock when moving to trash rbd-mirror: basic integration with sync throttling rbd-mirror: don't prematurely finish snapshot replay loop rbd-mirror: pass InstanceWatcher to snapshot Replayer doc/releases/octopus.rst: add note about ec recovery below min_size mgr/cephadm: configure rgw_frontends for rgw service cephadm: switch grafana image to the ceph repo Merge PR #34034 into octopus qa/suites/rados/cephadm/upgrade: update starting version Merge PR #33540 into octopus Merge PR #34023 into octopus Merge PR #34044 into octopus Merge PR #34030 into octopus doc/orchestrator: update rgw creation mgr/cephadm: clean up client.crash.* container_image settings after upgrade cephadm: make add-repo --release and --version independent cephadm: env over last used mgr/orch: accept port and ssl flags to 'apply rgw' mgr/orch: 'ceph upgrade ...' -> 'ceph orch upgrade ...' cephadm: fall back to default for infer_image cephadm: remove outdated check cephadm: consolidate default image logic remove ceph_test_rados_watch_notify python-common/ceph/deployment/service_spec: add ssl to RGWSpec cephadm: only infer image for shell, run, inspect-image, pull, ceph-volume mgr/test_orchestrator: fix service filtering when using dummy data mgr/dashboard: fix adding/removing host errors mgr/rook: fix 'orch ps' for osds qa: fix all the fsx.sh-invoking yaml files to install dependencies mds: pass proper MutationImpl::LockOp to Locker::wrlock_start() Reviewed-by: Kiefer Chang <kiefer.chang@suse.com> Reviewed-by: Laura Paduano <lpaduano@suse.com> |
||
---|---|---|
.. | ||
archs | ||
btrfs | ||
cephfs | ||
client | ||
clusters | ||
config | ||
crontab | ||
debug | ||
distros | ||
erasure-code | ||
libceph | ||
machine_types | ||
mds | ||
mon/bootstrap | ||
msgr | ||
nightlies | ||
objectstore | ||
objectstore_cephfs | ||
overrides | ||
packages | ||
qa_scripts | ||
rbd | ||
releases | ||
rgw_bucket_sharding | ||
rgw_frontend | ||
rgw_pool_type | ||
standalone | ||
suites | ||
tasks | ||
timezone | ||
workunits | ||
.gitignore | ||
CMakeLists.txt | ||
find-used-ports.sh | ||
loopall.sh | ||
Makefile | ||
mypy.ini | ||
README | ||
run_xfstests_qemu.sh | ||
run_xfstests-obsolete.sh | ||
run_xfstests.sh | ||
run-standalone.sh | ||
runallonce.sh | ||
runoncfuse.sh | ||
runonkclient.sh | ||
setup-chroot.sh | ||
tox.ini | ||
valgrind.supp |
ceph-qa-suite ------------- clusters/ - some predefined cluster layouts suites/ - set suite The suites directory has a hierarchical collection of tests. This can be freeform, but generally follows the convention of suites/<test suite name>/<test group>/... 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.yaml is 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.yaml is 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.yaml is a 4-dimensional test matrix. Two dimensions (a, c) are trivial (1 item), so this is really 2x2 = 4 tests, which are a + b1 + c + d1 a + b1 + c + d2 a + b2 + c + d1 a + b2 + c + d2 A directory with a magic '$' file represents a test where one of the other items is chosen randomly. For example, suites/foo/$ suites/foo/a.yaml suites/foo/b.yaml suites/foo/c.yaml is a single test. It will be either a.yaml, b.yaml or c.yaml. This can be used in conjunction with the '%' file in other directories to run a series of tests without causing an unwanted increase in the total number of jobs run. Symlinks are okay. The teuthology code can be found in https://github.com/ceph/teuthology.git