コード例 #1
0
ファイル: run_tests.py プロジェクト: Tahler/isotope
def main() -> None:
    args = parse_args()

    log_level = getattr(logging, args.log_level)
    logging.basicConfig(level=log_level, format='%(levelname)s\t> %(message)s')

    config = cfg.from_toml_file(args.config_path)

    cluster.set_up_if_not_exists(
        config.cluster_project_id, config.cluster_name, config.cluster_zone,
        config.cluster_version, config.server_machine_type,
        config.server_disk_size_gb, config.server_num_nodes,
        config.client_machine_type, config.client_disk_size_gb)

    for topology_path in config.topology_paths:
        for env_name in config.environments:
            entrypoint_service_name = entrypoint.extract_name(topology_path)
            mesh_environment = mesh.for_state(env_name,
                                              entrypoint_service_name,
                                              consts.SERVICE_GRAPH_NAMESPACE,
                                              config)
            pipeline.run(topology_path, mesh_environment, config.server_image,
                         config.client_image, config.istio_archive_url,
                         config.client_qps, config.client_duration,
                         config.client_num_conc_conns, config.labels())
コード例 #2
0
ファイル: run_tests.py プロジェクト: saimsalman36/tools
def main(args: argparse.Namespace) -> None:
    log_level = getattr(logging, args.log_level)
    logging.basicConfig(level=log_level, format='%(levelname)s\t> %(message)s')

    config = cfg.from_toml_file(args.config_path)

    if args.clean_up == 'True':
        cluster.clean_up(config.cluster_project_id, config.cluster_name,
                         config.cluster_zones)
        return

    cluster.set_up_if_not_exists(
        config.cluster_project_id, config.cluster_name, config.cluster_zones,
        config.cluster_version, config.server_machine_type,
        config.server_disk_size_gb, config.server_num_nodes,
        config.client_machine_type, config.client_disk_size_gb)

    if args.real_app == 'True':
        for env_name in config.environments:
            for policy in config.policy_files:
                mesh_environment = mesh.for_state(
                    env_name, config.app_svc_name,
                    consts.SERVICE_GRAPH_NAMESPACE, config, args.helm_values,
                    True, policy)

                pipeline.run(None, mesh_environment, None, config.client_image,
                             config.istio_archive_url, [], config.client_qps,
                             config.client_duration,
                             config.client_num_conc_conns,
                             config.client_attempts, config.labels(), policy)
    else:
        for topology_path in config.topology_paths:
            for env_name in config.environments:
                for policy in config.policy_files:
                    entrypoint_service_names = entrypoint.extract_name(
                        topology_path)
                    for entrypoint_service_name in entrypoint_service_names:
                        mesh_environment = mesh.for_state(
                            env_name, entrypoint_service_name,
                            consts.SERVICE_GRAPH_NAMESPACE, config,
                            args.helm_values, False, None)
                        pipeline.run(topology_path, mesh_environment,
                                     config.server_image, config.client_image,
                                     config.istio_archive_url, config.policy_files,
                                     config.client_qps, config.client_duration,
                                     config.client_num_conc_conns,
                                     config.client_attempts, config.labels(), policy)