我想在 Azure devops 管道中的 helm uninstall 命令中添加一个条件,如果只有一个版本(infra)已经存在我想卸载它。我该怎么做?
- task: HelmDeploy@0
displayName: Helm uninstall test
inputs:
connectionType: Kubernetes Service Connection
kubernetesServiceEndpoint: dev-test
command: uninstall
chartType: FilePath
chartPath: infra
waitForExecution: true
namespace: test
arguments: infra
continueOnError: true