microk8s クラスタから Kubelet API にアクセスする方法を教えてください。
このURLを見ると、Kubelet API にはクライアント証明書が必要であると書かれています。だから私はこれを呼んだ(/var/snap/microk8s/current/certsから)
curl -v https://127.0.0.1:10250 --cert ca.crt --cert-type PEM --cacert ca.crt --key ca.key
しかし、次のようなエラーが発生しました:
curl failed to verify the legitimacy of the server and therefore could not
establish a secure connection to it. To learn more about this situation and
how to fix it, please visit the web page mentioned above.
この問題を解決するにはどうすればよいですか? また、microk8s の kubelet.crt、server.crt、および ca.crt の違いは何ですか?
ありがとうございました!