背景
我使用命令helm repo add harbor https://helm.goharbor.io
添加harbor仓库,但是提示:
Error: looks like "https://helm.goharbor.io" is not a valid chart repository or cannot be reached: Get "https://helm.goharbor.io/index.yaml": x509: certificate has expired or is not yet valid: current time 2022-11-27T11:06:25+08:00 is after 2021-09-30T14:01:15Z
我通过命令kubeadm certs check-expiration
查看证书有效期,发现我的证书都是有效的,所以排除证书无效问题。我突然想起来之前安装calico的时候也存在类似问题,所以我猜想应该忽略https安全访问就好了,最终从网上找到了合适答案
解决办法
在helm repo add
后面添加--insecure-skip-tls-verify
,具体命令案例如下所示,然后就添加成功了
helm repo add --insecure-skip-tls-verify harbor https://helm.goharbor.io