问题
Is it possible to run the kubernetes api-server in minikube with maximum log verbosity?
$ minikube start --v 4
didn't work for me. When I exec into the api-server container and do ps, the api-server commandline didn't have --v=4 in it. So, minikube is not passing the --v = 4 down to the api-server.
Thanks.
回答1:
there is an error in the parameters, try this instead
minikube start --v=7
来源:https://stackoverflow.com/questions/55929593/run-kubernetes-api-server-in-minikube-in-verbose-mode