Verbose logging in Kubernetes deployment file

4/7/2017

Iam new to Kubernetes , i want to know what does 'V' in the following mean ?

 spec:
  containers:
  - args:
    - -v=9

It seems to me it denotes verbose logging , is there any documentation for the same regarding the various levels of logging avbl like what values that arg v can take ?

-- Learner
docker
kubernetes

1 Answer

4/7/2017

Kubernetes uses glog. The available values are 1-4, as denoted in this doc

-- jaxxstorm
Source: StackOverflow