Run Kubernetes api server in minikube in verbose mode

我怕爱的太早我们不能终老 提交于 2021-02-11 14:37:50

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!