在运行 helm uninstall 命令之前检查版本是否存在

问题描述 投票:0回答:0

我想在 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
kubernetes-helm
© www.soinside.com 2019 - 2024. All rights reserved.