kotlin-dsl/HelmDelete.xml (25 lines of code) (raw):

<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright 2000 - 2017 JetBrains s.r.o. ~ ~ Licensed under the Apache License, Version 2.0 (the "License"). ~ See LICENSE in the project root for license information. --> <dsl-extension kind="buildStep" type="jetbrains.helm" applicable="params['teamcity.helm.command'] == 'helm-delete'" generateDslJar="true"> <class name="HelmDeleteStep"> <description> A [helm build step](https://github.com/JetBrains/teamcity-kubernetes-plugin) to run 'helm delete' command </description> </class> <function name="helmDelete"> <description> Adds a [helm build step](https://github.com/JetBrains/teamcity-kubernetes-plugin) to run 'helm delete' command @see HelmDeleteStep </description> </function> <init> <param name="command" value="helm-delete"/> </init> <params> <param name="helm-deleteteamcity.helm.releaseName" dslName="release"> <description>Release name to delete from Kubernetes. Removes all of the resources associated with the last release of the chart.</description> </param> <param name="helm-deleteteamcity.helm.additionalFlags" dslName="additionalFlags"> <description>Additional options for 'helm delete' command line.</description> </param> </params> </dsl-extension>