helm Error: INSTALLATION FAILED: cannot re-use a name that is still in use
这里安装cert-manager因为网络原因取消掉了,后边重新执行,出现报错
root@package:~# helm install cert-manager jetstack/cert-manager --namespace cert-manager --create-namespace --version v1.7.1
Error: INSTALLATION FAILED: cannot re-use a name that is still in use
换用helm upgrade --install cert-manager jetstack/cert-manager --namespace cert-manager --create-namespace --version v1.7.1
成功执行
root@package:~# helm upgrade --install cert-manager jetstack/cert-manager --namespace cert-manager --create-namespace --version v1.7.1
Release "cert-manager" has been upgraded. Happy Helming!
NAME: cert-manager
LAST DEPLOYED: Tue Dec 6 02:21:10 2022
NAMESPACE: cert-manager
STATUS: deployed
REVISION: 2
TEST SUITE: None
NOTES:
cert-manager v1.7.1 has been deployed successfully!
In order to begin issuing certificates, you will need to set up a ClusterIssuer
or Issuer resource (for example, by creating a 'letsencrypt-staging' issuer).
More information on the different types of issuers and how to configure them
can be found in our documentation:
https://cert-manager.io/docs/configuration/
For information on how to configure cert-manager to automatically provision
Certificates for Ingress resources, take a look at the `ingress-shim`
documentation:
https://cert-manager.io/docs/usage/ingress/