diff --git a/testing/wait_for_kubeflow.py b/testing/wait_for_kubeflow.py index 50242d5e7c9..bcba65d4749 100644 --- a/testing/wait_for_kubeflow.py +++ b/testing/wait_for_kubeflow.py @@ -36,11 +36,6 @@ def deploy_kubeflow(_): logging.info("Verifying PyTorchJob controller started.") util.wait_for_deployment(api_client, namespace, pytorch_operator_deployment_name) - # Verify that the Spark Operator actually deployed - spark_operator_deployment_name = "spark-operator" - logging.info("Verifying Spark controller started.") - util.wait_for_deployment(api_client, namespace, spark_operator_deployment_name) - def main(): test_case = test_helper.TestCase( name='deploy_kubeflow', test_func=deploy_kubeflow)