def healthy(ctx, config): """ Wait for all osd's to be up, and for the ceph health monitor to return HEALTH_OK. :param ctx: Context :param config: Configuration """ config = config if isinstance(config, dict) else dict() cluster_name = config.get('cluster', 'ceph') log.info('Waiting until ceph cluster %s is healthy...', cluster_name) firstmon = teuthology.get_first_mon(ctx, config, cluster_name) (mon0_remote, ) = ctx.cluster.only(firstmon).remotes.keys() teuthology.wait_until_osds_up( ctx, cluster=ctx.cluster, remote=mon0_remote, ceph_cluster=cluster_name, ) teuthology.wait_until_healthy( ctx, remote=mon0_remote, ceph_cluster=cluster_name, ) if ctx.cluster.only(teuthology.is_type('mds', cluster_name)).remotes: # Some MDSs exist, wait for them to be healthy ceph_fs = Filesystem(ctx) # TODO: make Filesystem cluster-aware ceph_fs.wait_for_daemons(timeout=300)
def create_rbd_pool(ctx, config): if config.get('create_rbd_pool', False): cluster_name = config['cluster'] log.info('Waiting for OSDs to come up') teuthology.wait_until_osds_up( ctx, cluster=ctx.cluster, remote=ctx.ceph[cluster_name].bootstrap_remote, ceph_cluster=cluster_name, ) log.info('Creating RBD pool') _shell(ctx, cluster_name, ctx.ceph[cluster_name].bootstrap_remote, args=[ 'sudo', 'ceph', '--cluster', cluster_name, 'osd', 'pool', 'create', 'rbd', '8' ]) _shell(ctx, cluster_name, ctx.ceph[cluster_name].bootstrap_remote, args=[ 'sudo', 'ceph', '--cluster', cluster_name, 'osd', 'pool', 'application', 'enable', 'rbd', 'rbd', '--yes-i-really-mean-it' ]) yield
def healthy(ctx, config): """ Wait for all osd's to be up, and for the ceph health monitor to return HEALTH_OK. :param ctx: Context :param config: Configuration """ config = config if isinstance(config, dict) else dict() cluster_name = config.get('cluster', 'ceph') log.info('Waiting until ceph cluster %s is healthy...', cluster_name) firstmon = teuthology.get_first_mon(ctx, config, cluster_name) (mon0_remote,) = ctx.cluster.only(firstmon).remotes.keys() teuthology.wait_until_osds_up( ctx, cluster=ctx.cluster, remote=mon0_remote, ceph_cluster=cluster_name, ) teuthology.wait_until_healthy( ctx, remote=mon0_remote, ceph_cluster=cluster_name, ) if ctx.cluster.only(teuthology.is_type('mds', cluster_name)).remotes: # Some MDSs exist, wait for them to be healthy ceph_fs = Filesystem(ctx) # TODO: make Filesystem cluster-aware ceph_fs.wait_for_daemons(timeout=300)
def wait_for_osds_up(ctx, config): log.info('Waiting until ceph osds are all up...') firstmon = teuthology.get_first_mon(ctx, config) (mon0_remote,) = ctx.cluster.only(firstmon).remotes.keys() teuthology.wait_until_osds_up( ctx, cluster=ctx.cluster, remote=mon0_remote )
def healthy(ctx, config): log.info('Waiting until ceph is healthy...') firstmon = teuthology.get_first_mon(ctx, config) (mon0_remote,) = ctx.cluster.only(firstmon).remotes.keys() teuthology.wait_until_osds_up( cluster=ctx.cluster, remote=mon0_remote ) teuthology.wait_until_healthy( remote=mon0_remote, )
def wait_for_osds_up(ctx, config): """ Wait for all osd's to come up. :param ctx: Context :param config: Configuration """ log.info('Waiting until ceph osds are all up...') firstmon = teuthology.get_first_mon(ctx, config) (mon0_remote, ) = ctx.cluster.only(firstmon).remotes.keys() teuthology.wait_until_osds_up(ctx, cluster=ctx.cluster, remote=mon0_remote)
def wait_for_osds_up(ctx, config): """ Wait for all osd's to come up. :param ctx: Context :param config: Configuration """ log.info("Waiting until ceph osds are all up...") cluster_name = config.get("cluster", "ceph") firstmon = teuthology.get_first_mon(ctx, config, cluster_name) (mon0_remote,) = ctx.cluster.only(firstmon).remotes.keys() teuthology.wait_until_osds_up(ctx, cluster=ctx.cluster, remote=mon0_remote)
def healthy(ctx, config): """ Wait for all osd's to be up, and for the ceph health monitor to return HEALTH_OK. :param ctx: Context :param config: Configuration """ log.info('Waiting until ceph is healthy...') firstmon = teuthology.get_first_mon(ctx, config) (mon0_remote, ) = ctx.cluster.only(firstmon).remotes.keys() teuthology.wait_until_osds_up(ctx, cluster=ctx.cluster, remote=mon0_remote) teuthology.wait_until_healthy( ctx, remote=mon0_remote, )
def test_wait_until_osds_up(): ctx = argparse.Namespace() ctx.daemons = Mock() ctx.daemons.iter_daemons_of_role.return_value = list() remote = FakeRemote() def s(self, **kwargs): return 'IGNORED\n{"osds":[{"state":["up"]}]}' remote.sh = s ctx.cluster = cluster.Cluster(remotes=[(remote, ['osd.0', 'client.1'])], ) with patch.multiple( misc, get_testdir=lambda ctx: "TESTDIR", ): misc.wait_until_osds_up(ctx, ctx.cluster, remote)
def healthy(ctx, config): """ Wait for all osd's to be up, and for the ceph health monitor to return HEALTH_OK. :param ctx: Context :param config: Configuration """ log.info('Waiting until ceph is healthy...') firstmon = teuthology.get_first_mon(ctx, config) (mon0_remote,) = ctx.cluster.only(firstmon).remotes.keys() teuthology.wait_until_osds_up( ctx, cluster=ctx.cluster, remote=mon0_remote ) teuthology.wait_until_healthy( ctx, remote=mon0_remote, )
def healthy(ctx, config): """ Wait for all osd's to be up, and for the ceph health monitor to return HEALTH_OK. :param ctx: Context :param config: Configuration """ log.info('Waiting until ceph is healthy...') firstmon = teuthology.get_first_mon(ctx, config) (mon0_remote, ) = ctx.cluster.only(firstmon).remotes.keys() teuthology.wait_until_osds_up(ctx, cluster=ctx.cluster, remote=mon0_remote) teuthology.wait_until_healthy( ctx, remote=mon0_remote, ) if ctx.cluster.only(teuthology.is_type('mds')).remotes: # Some MDSs exist, wait for them to be healthy ceph_fs = Filesystem(ctx) ceph_fs.wait_for_daemons(timeout=300)
def healthy(ctx, config): """ Wait for all osd's to be up, and for the ceph health monitor to return HEALTH_OK. :param ctx: Context :param config: Configuration """ log.info('Waiting until ceph is healthy...') firstmon = teuthology.get_first_mon(ctx, config) (mon0_remote,) = ctx.cluster.only(firstmon).remotes.keys() teuthology.wait_until_osds_up( ctx, cluster=ctx.cluster, remote=mon0_remote ) teuthology.wait_until_healthy( ctx, remote=mon0_remote, ) if ctx.cluster.only(teuthology.is_type('mds')).remotes: # Some MDSs exist, wait for them to be healthy ceph_fs = Filesystem(ctx) ceph_fs.wait_for_daemons(timeout=300)