Esempio n. 1
0
def test_rgw(ceph_cluster):
    assert not _service_exist('rgw')
    _orch_exec("rgw add myrgw")
    _wait_for_condition(lambda: len(get_pods(labels='app=rook-ceph-rgw')) >= 1,
                        timeout=60)
    _wait_for_condition(lambda: pods_started(labels='app=rook-ceph-rgw'))
    _wait_for_condition(lambda: _service_exist('rgw'))

    _orch_exec("rgw rm myrgw")
    _wait_for_condition(lambda: not _service_exist('rgw'))
    _wait_for_condition(lambda: not get_pods(labels='app=rook-ceph-rgw'))
Esempio n. 2
0
def test_osd_create(ceph_cluster):
    assert 'osd' not in _orch_exec('service ls')
    #_orch_exec('osd create kubic-1:vdb --encrypted=true')
    #_orch_exec('osd create kubic-2:vdb --osds-per-device=2')
    _orch_exec('osd create kubic-1:vdb')
    _orch_exec('osd create kubic-2:vdb')
    # Two checkpoints in order to keep the timeouts reasonable:
    _wait_for_condition(lambda: len(get_pods(labels='app=rook-ceph-osd')) >= 1,
                        timeout=180)
    _wait_for_condition(lambda: len(get_pods(labels='app=rook-ceph-osd')) >= 2,
                        timeout=120)
    #_wait_for_condition(lambda: len(get_pods(labels='app=rook-ceph-osd')) >= 3, timeout=120)
    _wait_for_condition(lambda: _service_exist('osd'))
    _wait_for_condition(lambda: pods_started(labels='app=rook-ceph-osd'))
Esempio n. 3
0
def test_nfs(ceph_cluster):
    assert _service_exist('osd')
    if not 'nfs-ganesha' in _ceph_exec('osd pool ls'):
        _ceph_exec("osd pool create nfs-ganesha 64")
    assert not _service_exist('nfs')

    # TODO: test update_nfs_count

    _orch_exec("nfs add mynfs nfs-ganesha mynfs")
    _wait_for_condition(lambda: len(get_pods(labels='app=rook-ceph-nfs')) >= 1,
                        timeout=120)
    _wait_for_condition(lambda: pods_started(labels='app=rook-ceph-nfs'),
                        timeout=60)
    _wait_for_condition(lambda: _service_exist('nfs'))

    _orch_exec("nfs rm mynfs")
    _wait_for_condition(lambda: not _service_exist('nfs'))
    _wait_for_condition(lambda: not get_pods(labels='app=rook-ceph-nfs'))
Esempio n. 4
0
def test_status(ceph_cluster):
    _orch_exec('status')
Esempio n. 5
0
def test_mon_update(ceph_cluster):
    assert len(get_pods(labels='app=rook-ceph-mon')) < 3
    _orch_exec('mon update 3')
    # Two checkpoints in order to keep the timeouts low:
    _wait_for_condition(lambda: len(get_pods(labels='app=rook-ceph-mon')) >= 2)
    _wait_for_condition(lambda: len(get_pods(labels='app=rook-ceph-mon')) == 3)
Esempio n. 6
0
def test_device_ls(ceph_cluster):
    svs = json.loads(_orch_exec('device ls --format=json'))
    assert len(svs) >= 2