This message was deleted.
# k3s
a
This message was deleted.
c
Just restart k3s. Certs are automatically renewed on startup if they are within 90 days of expiring
👍 1
p
I did that, alertmanager noticed that as RESOLVED, and then 3 minutes later issued the same alert again
weird
I read about cert caching, maybe this is an issue
well, prometheus was lying about the instance name so I checked all nodes with:
Copy code
for i in `ls /var/lib/rancher/k3s/agent/*.crt`; do echo $i; openssl x509 -enddate -noout -in $i; done
and found another instance with expiring keys - systemctl restart k3s-agent fixed the warning, Thanks @creamy-pencil-82913 for help