Overview This tutorial will show you how to configure custom TLS certificatate for ingress addon. mkcert is a simple tool for making locally-trusted development certificates. It requires no configuration. Tutorial Start minikube $ minikube start Create TLS secret which contains custom certificate and private key $ kubectl -n kube-system create secret tls mkcert --key key.pem --cert cert.pem Configure ingress addon $ minikube addons configure ingress -- Enter custom cert(format is "namespace/s...