K
Q

Run Kubernetes api server in minikube in verbose mode

4/30/2019

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.

-- user674669
kubernetes
minikube

Similar Questions

How to expose an external IP address for a sample Istio application
Error pushing images to docker registry inside kubernetes and ingress
What is the reconciliation time for a controller in kubernetes deployed with operator-sdk or in general? Can you set a custom time to recon?
kube2iam - Invalid role: does not match annotated role
multi master OKD-3.11 setup fails if master-1 nodes is down
Enable App Gateway ingress for Azure Kubernetes on 443 (https)
Changing configuration of net core application running on kubernetes
Why is my k8s Nginx ingress controller serving two certificates (one of which is a Kubernetes Fake Certificate)?
Kubernetes pods metrices through kubernetes-client library
Getting error while creating the NodePort service in EKS cluster
wkhtmltopdf Exit with code 1 due to network error: RemoteHostClosedError (deployed on digitalocean)
Unable to mount volume when pod in other namespace than default

1 Answer

5/3/2019

there is an error in the parameters, try this instead

minikube start --v=7
-- sev7nx
Source: StackOverflow