一、根据证书文件查看

#echo 证书有效期:$(( $(( $(date -d "`cat zhengshu.pem| openssl x509 -noout -dates|grep notAfter|awk -F "=" '{print $2}'`" +%s ) - $(date +%s) ))/86400 ))  天
证书有效期:141 天

二、根据k8s的secert查看

# echo 证书有效期:$(( $(( $(date -d "`kubectl get secrets zhengshu -n test -o jsonpath='{.data.tls\.crt}'|base64 -d | openssl x509 -noout -dates|grep notAfter|awk -F "=" '{print $2}'`" +%s ) - $(date +%s) ))/86400 )) 天
证书有效期:374 天

三、根据网址查看

# echo 证书剩余有效期:$(( $(( $(date -d "`echo | openssl s_client -servername www.baidu.com -connect www.baidu.com:443 2>/dev/null| openssl x509 -noout -enddate 2>/dev/null|awk -F '=' '{print $2}'`" +%s ) - $(date +%s) ))/86400 )) 天
证书剩余有效期:353 天

Logo

K8S/Kubernetes社区为您提供最前沿的新闻资讯和知识内容

更多推荐