开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
master
分支 (54)
标签 (330)
master
wip-yuriw-release-15.2.15-master
revert-43485-fix-pr_triage-master
wip-rgw-multisite-reshard
pacific
octopus
feature-48388-cache
wip-github_pr_template-master
mimic
wip-rgw-zipper-standalone
wip-rgw-multisite-reshard-prebase-2021年09月27日
nautilus
wip-yuriw-pacific-16.2.6-RN_2
e2e-script-documentation
wip-sjust-testing
wip-rgw-multisite-resharc-prebase-2021年08月24日
ljflores-patch-2
ses7
wip-s3select-parquet-object-processing-2
ljflores-patch-1
v16.2.6
v15.2.14
v16.2.5
v14.2.22
v15.2.13
v15.2.12
v14.2.21
v16.2.4
v16.2.3
v16.2.2
v14.2.20
v16.2.1
v15.2.11
v16.2.0
v14.2.19
v15.2.10
v14.2.18
v14.2.17
v15.2.9
v16.1.0
master
分支 (54)
标签 (330)
master
wip-yuriw-release-15.2.15-master
revert-43485-fix-pr_triage-master
wip-rgw-multisite-reshard
pacific
octopus
feature-48388-cache
wip-github_pr_template-master
mimic
wip-rgw-zipper-standalone
wip-rgw-multisite-reshard-prebase-2021年09月27日
nautilus
wip-yuriw-pacific-16.2.6-RN_2
e2e-script-documentation
wip-sjust-testing
wip-rgw-multisite-resharc-prebase-2021年08月24日
ljflores-patch-2
ses7
wip-s3select-parquet-object-processing-2
ljflores-patch-1
v16.2.6
v15.2.14
v16.2.5
v14.2.22
v15.2.13
v15.2.12
v14.2.21
v16.2.4
v16.2.3
v16.2.2
v14.2.20
v16.2.1
v15.2.11
v16.2.0
v14.2.19
v15.2.10
v14.2.18
v14.2.17
v15.2.9
v16.1.0
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (54)
标签 (330)
master
wip-yuriw-release-15.2.15-master
revert-43485-fix-pr_triage-master
wip-rgw-multisite-reshard
pacific
octopus
feature-48388-cache
wip-github_pr_template-master
mimic
wip-rgw-zipper-standalone
wip-rgw-multisite-reshard-prebase-2021年09月27日
nautilus
wip-yuriw-pacific-16.2.6-RN_2
e2e-script-documentation
wip-sjust-testing
wip-rgw-multisite-resharc-prebase-2021年08月24日
ljflores-patch-2
ses7
wip-s3select-parquet-object-processing-2
ljflores-patch-1
v16.2.6
v15.2.14
v16.2.5
v14.2.22
v15.2.13
v15.2.12
v14.2.21
v16.2.4
v16.2.3
v16.2.2
v14.2.20
v16.2.1
v15.2.11
v16.2.0
v14.2.19
v15.2.10
v14.2.18
v14.2.17
v15.2.9
v16.1.0
ceph
/
qa
贡献代码
同步代码
对比差异 通过 Pull Request 同步
同步更新到分支
通过 Pull Request 同步
将会在向当前分支创建一个 Pull
Request,合入后将完成同步
File empty ...
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
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, or a directory whose name ends with '$',
represents a test where one of the non-magic items is chosen randomly. For
example, both
 suites/foo/$
 suites/foo/a.yaml
 suites/foo/b.yaml
 suites/foo/c.yaml
and
 suites/foo$/a.yaml
 suites/foo$/b.yaml
 suites/foo$/c.yaml
is a single test, either a, b or c. This can be used in conjunction with the
'%' file in the same (see below) or other directories to run a series of tests
without causing an unwanted increase in the total number of jobs run.
Symlinks are okay.
One particular use of symlinks is to combine '%' and the latter form of '$'
feature. Consider supported_distros directory containing fragments that define
os_type and os_version:
 supported_distros/%
 supported_distros/centos.yaml
 supported_distros/rhel.yaml
 supported_distros/ubuntu.yaml
A test that links supported_distros as distros (a name that doesn't end with
'$') will be run three times: on centos, rhel and ubuntu. A test that links
supported_distros as distros$ will be run just once: either on centos, rhel or
ubuntu, chosen randomly.
The teuthology code can be found in https://github.com/ceph/teuthology.git
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

ceph
暂无标签
README
GPL-2.0
使用 GPL-2.0 开源许可协议
, LGPL-2.1
使用 LGPL-2.1 开源许可协议
, LGPL-3.0
使用 LGPL-3.0 开源许可协议
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/open_source_reference/ceph.git
git@gitee.com:open_source_reference/ceph.git
open_source_reference
ceph
ceph
master
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /