kubectl安装calico:Unable to connect to the server: x509: certificate has expired or is not yet valid

目录

    • 背景
    • 解决办法

背景

在k8s安装的时候需要安装calico,我就执行kubectl apply -f https://docs.projectcalico.org/manifests/calico.yaml命令,但是一直提示:

Unable to connect to the server: x509: certificate has expired or is not yet valid: current time 2022-10-29T14:38:16+08:00 is after 2021-09-30T14:01:15Z

然后我通过在网上找到的命令更新了k8s证书,并且通过kubeadm certs check-expiration命令发现证书都没有过期,所以根本不是这个原因,请看解决办法

kubectl安装calico:Unable to connect to the server: x509: certificate has expired or is not yet valid_第1张图片

解决办法

使用命令下载该yaml文件,如下:

wget 链接 --no-check-certificate

比如我的就是命令就是:

wget https://docs.projectcalico.org/manifests/calico.yaml --no-check-certificate

calico.yaml下载之后,使用以下指令执行即可:

kubectl apply -f calico.yaml

你可能感兴趣的:(云原生,linux,calico)