From 812ff6ca9fcd3e629e49d4328905f33eee8ca3f5 Mon Sep 17 00:00:00 2001 From: Qiaowei Ren Date: Thu, 4 Jan 2018 13:43:33 +0800 Subject: initial code repo This patch creates initial code repo. For ceph, luminous stable release will be used for base code, and next changes and optimization for ceph will be added to it. For opensds, currently any changes can be upstreamed into original opensds repo (https://github.com/opensds/opensds), and so stor4nfv will directly clone opensds code to deploy stor4nfv environment. And the scripts for deployment based on ceph and opensds will be put into 'ci' directory. Change-Id: I46a32218884c75dda2936337604ff03c554648e4 Signed-off-by: Qiaowei Ren --- .../jewel-x/ceph-deploy/jewel-luminous.yaml | 82 ++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 src/ceph/qa/suites/upgrade/jewel-x/ceph-deploy/jewel-luminous.yaml (limited to 'src/ceph/qa/suites/upgrade/jewel-x/ceph-deploy/jewel-luminous.yaml') diff --git a/src/ceph/qa/suites/upgrade/jewel-x/ceph-deploy/jewel-luminous.yaml b/src/ceph/qa/suites/upgrade/jewel-x/ceph-deploy/jewel-luminous.yaml new file mode 100644 index 0000000..9adede7 --- /dev/null +++ b/src/ceph/qa/suites/upgrade/jewel-x/ceph-deploy/jewel-luminous.yaml @@ -0,0 +1,82 @@ +meta: +- desc: | + Setup 4 node ceph cluster using ceph-deploy, use latest + stable jewel as initial release, upgrade to luminous and + also setup mgr nodes along after upgrade, check for + cluster to reach healthy state, After upgrade run kernel tar/untar + task and systemd task. This test will detect any + ceph upgrade issue and systemd issues. +overrides: + ceph-deploy: + fs: xfs + conf: + global: + mon pg warn min per osd: 2 + osd: + osd pool default size: 2 + osd objectstore: filestore + osd sloppy crc: true + client: + rbd default features: 5 +openstack: +- machine: + disk: 100 +- volumes: + count: 3 + size: 30 +# reluctantely :( hard-coded machine type +# it will override command line args with teuthology-suite +machine_type: vps +roles: +- - mon.a + - mds.a + - osd.0 + - osd.1 + - osd.2 + - mgr.x +- - mon.b + - mgr.y +- - mon.c + - osd.3 + - osd.4 + - osd.5 +- - osd.6 + - osd.7 + - osd.8 + - client.0 +tasks: +- ssh-keys: +- print: "**** done ssh-keys" +- ceph-deploy: + branch: + stable: jewel + skip-mgr: True +- print: "**** done initial ceph-deploy" +- ceph-deploy.upgrade: + branch: + dev: luminous + setup-mgr-node: True + check-for-healthy: True + roles: + - mon.a + - mon.b + - mon.c + - osd.6 +- print: "**** done ceph-deploy upgrade" +- exec: + osd.0: + - ceph osd require-osd-release luminous + - ceph osd set-require-min-compat-client luminous +- print: "**** done `ceph osd require-osd-release luminous`" +- workunit: + clients: + all: + - kernel_untar_build.sh +- print: "**** done kernel_untar_build.sh" +- systemd: +- print: "**** done systemd" +- workunit: + clients: + all: + - rados/load-gen-mix.sh +- print: "**** done rados/load-gen-mix.sh" -- cgit 1.2.3-korg