def wait( ctx: click.core.Context, cluster_id: str, superuser_username: str, superuser_password: str, transport: Transport, skip_http_checks: bool, enable_spinner: bool, ) -> None: """ Wait for DC/OS to start. """ check_cluster_id_exists( new_cluster_id=cluster_id, existing_cluster_ids=existing_cluster_ids(), ) cluster_containers = ClusterContainers( cluster_id=cluster_id, transport=transport, ) http_checks = not skip_http_checks doctor_command_name = command_path(sibling_ctx=ctx, command=doctor) wait_for_dcos( cluster=cluster_containers.cluster, superuser_username=superuser_username, superuser_password=superuser_password, http_checks=http_checks, doctor_command_name=doctor_command_name, enable_spinner=enable_spinner, )
def wait( ctx: click.core.Context, cluster_id: str, superuser_username: str, superuser_password: str, verbose: int, ) -> None: """ Wait for DC/OS to start. """ check_cluster_id_exists( new_cluster_id=cluster_id, existing_cluster_ids=existing_cluster_ids(), ) set_logging(verbosity_level=verbose) cluster_vms = ClusterVMs(cluster_id=cluster_id) wait_for_dcos( dcos_variant=cluster_vms.dcos_variant, cluster=cluster_vms.cluster, superuser_username=superuser_username, superuser_password=superuser_password, http_checks=True, doctor_command=doctor, sibling_ctx=ctx, )
def wait( ctx: click.core.Context, cluster_id: str, superuser_username: str, superuser_password: str, transport: Transport, skip_http_checks: bool, verbose: int, ) -> None: """ Wait for DC/OS to start. """ check_cluster_id_exists( new_cluster_id=cluster_id, existing_cluster_ids=existing_cluster_ids(), ) set_logging(verbosity_level=verbose) cluster_containers = ClusterContainers( cluster_id=cluster_id, transport=transport, ) http_checks = not skip_http_checks wait_for_dcos( dcos_variant=cluster_containers.dcos_variant, cluster=cluster_containers.cluster, superuser_username=superuser_username, superuser_password=superuser_password, http_checks=http_checks, doctor_command=doctor, sibling_ctx=ctx, )
def wait( ctx: click.core.Context, cluster_id: str, superuser_username: str, superuser_password: str, enable_spinner: bool, ) -> None: """ Wait for DC/OS to start. """ check_cluster_id_exists( new_cluster_id=cluster_id, existing_cluster_ids=existing_cluster_ids(), ) cluster_vms = ClusterVMs(cluster_id=cluster_id) doctor_command_name = command_path(sibling_ctx=ctx, command=doctor) wait_for_dcos( cluster=cluster_vms.cluster, superuser_username=superuser_username, superuser_password=superuser_password, http_checks=True, doctor_command_name=doctor_command_name, enable_spinner=enable_spinner, )
def wait( ctx: click.core.Context, cluster_id: str, superuser_username: str, superuser_password: str, aws_region: str, ) -> None: """ Wait for DC/OS to start. """ check_cluster_id_exists( new_cluster_id=cluster_id, existing_cluster_ids=existing_cluster_ids(aws_region=aws_region), ) cluster_instances = ClusterInstances( cluster_id=cluster_id, aws_region=aws_region, ) doctor_command_name = command_path(sibling_ctx=ctx, command=doctor) wait_for_dcos( cluster=cluster_instances.cluster, superuser_username=superuser_username, superuser_password=superuser_password, http_checks=True, doctor_command_name=doctor_command_name, )