- Home
- All questions
- Question 949
CKA study material · question 949 of 1000
You suspect an expired certificate in a kubeconfig. Which two tools does the guide use to check? Choose two.
Show the answer
Answer: A. base64 to decode the embedded data
C. openssl x509 to read the dates
Certificates in a kubeconfig are base64-encoded, so they are decoded and then read with openssl x509 -noout -dates. kubeadm certs works on a control plane node, not a client.
Source: Troubleshooting kubectl (Kubernetes) — TLS problems