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

operator.python.undeploy_release.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")

xlr_cr = "Environments/kubernetes-envs/xlr/xlr-cr"
xlr_operator_app = "Environments/kubernetes-envs/xlr/xlr-operator-app"

undeploy(xlr_cr)
undeploy(xlr_operator_app)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy