Skip to content

Commit cfed7c0

Browse files
committed
Merge PR ceph#59029 into main
* refs/pull/59029/head: qa: simplify postmerge construction Reviewed-by: Samuel Just <[email protected]> Reviewed-by: Brad Hubbard <[email protected]>
2 parents d5a061e + 382357d commit cfed7c0

File tree

9 files changed

+6
-11
lines changed

9 files changed

+6
-11
lines changed

qa/clusters/2-node-mgr.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
clusternodes: 2
21
roles:
32
- [mgr.x, mon.a, mon.c, mds.a, mds.c, osd.0, client.0]
43
- [mgr.y, mgr.z, mon.b, mds.b, osd.1, osd.2, osd.3, client.1]

qa/clusters/extra-client.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
clusternodes: 2
21
roles:
32
- [mon.a, mon.c, osd.0, osd.1, osd.2]
43
- [mon.b, mgr.x, mds.a, osd.3, osd.4, osd.5]

qa/clusters/fixed-1.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
clusternodes: 1
21
overrides:
32
ceph-deploy:
43
conf:

qa/clusters/fixed-2.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
clusternodes: 2
21
roles:
32
- [mon.a, mon.c, mgr.y, osd.0, osd.1, osd.2, osd.3, client.0, node-exporter.a]
43
- [mon.b, mgr.x, osd.4, osd.5, osd.6, osd.7, client.1, prometheus.a, node-exporter.b]

qa/clusters/fixed-3-cephfs.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
clusternodes: 2
21
roles:
32
- [mon.a, mds.a, mgr.x, osd.0, osd.1]
43
- [mon.b, mds.b, mon.c, mgr.y, osd.2, osd.3]

qa/clusters/fixed-3.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
clusternodes: 2
21
roles:
32
- [mon.a, mon.c, mgr.x, osd.0, osd.1, osd.2, osd.3]
43
- [mon.b, mgr.y, osd.4, osd.5, osd.6, osd.7]

qa/clusters/fixed-4.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
clusternodes: 4
21
roles:
32
- [mon.a, mgr.y, osd.0, osd.4, osd.8, osd.12]
43
- [mon.b, osd.1, osd.5, osd.9, osd.13]

qa/suites/rados/thrash/workloads/rados_api_tests.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
teuthology:
22
postmerge:
3-
# Don't run this test on tiny clusters
4-
- if yaml.clusternodes < 4 then reject() end
3+
- |
4+
-- Don't run this test on tiny clusters
5+
if py_len(yaml.roles) < 4 then reject() end
56
overrides:
67
ceph:
78
log-ignorelist:

qa/suites/rados/verify/tasks/rados_api_tests.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
teuthology:
22
postmerge:
3-
# Don't run this test on tiny clusters
4-
- if yaml.clusternodes < 4 then reject() end
3+
- |
4+
-- Don't run this test on tiny clusters
5+
if py_len(yaml.roles) < 4 then reject() end
56
overrides:
67
ceph:
78
log-ignorelist:

0 commit comments

Comments
 (0)