I am using Windows OS, and in Minikube we can easily find the server CA cert in .minikube directory with file name as ca.crt so that we can sign the user with the CA certificate for ex like below command-
openssl x509 -req -in DevUser.csr -CA ..\.minikube\ca.crt -CAkey ..\.minikube\ca.key -CAcreateserial -out devuser.crt
but when I use kind, I could not able to find such server CA certificate so that I can sign the user with CA certificate, I have heard that Kubeadm certificate are standard certificate for Kind but, I really can't find any way for windows.
My Goal of the application is - Create a Dynamic Local Application which contains service, Deployments, 2-3 Users, etc.
So what do you think? Should I use minikube only if there is no way to sign the user with Kind CA in Kind Cluster?
Anyone can help? I am stuck in it for almost 4-5 days.
Hope you got my question, let me know.
Thanks