Search code examples
kubernetes-helm

a released named ws-dev is in use, cannot re-use a name that is still in use


UPGRADE FAILED: a released named ws-dev is in use, cannot re-use a name that is still in use ERROR: Job failed: exit code 1

Using $ helm version --client Client: &version.Version{SemVer:"v2.11.0", GitTreeState:"clean"}

and kubectl version --client=true Client Version: version.Info{Major:"1", Minor:"13+",...}


Solution

  • The error message is clear.

    You cannot deploy a project repeatedly with the same name.

    You can view the deployed projects through helm list.

    For those who need to update the deployment, you can use the helm update xxx .command.

    Or use the method of deleting (helm uninstall xxx) and then redeploying (helm install xxx .).