All Downloads are FREE. Search and download functionalities are using the official Maven repository.

operator.python.undeploy_deploy.py Maven / Gradle / Ivy

There is a newer version: 23.3.0-1025.941
Show newest version

def undeploy(ci):
    if repository.exists(ci):
        print("Undeploying " + ci)
        ci_undeploy_task = deployment.createUndeployTask(ci)
        deployit.startTaskAndWait(ci_undeploy_task.id)
    else:
        print("Skip undeploy of " + ci + ", CI does not exist")

xld_cr = "Environments/kubernetes-envs/xld/xld-cr"
xld_operator_app = "Environments/kubernetes-envs/xld/xld-operator-app"

undeploy(xld_cr)
undeploy(xld_operator_app)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy