Where do Kubernetes components log output?

3/9/2018

Attempting to Debug why AzureDisk won't always mount. Logs for the pod show a timeout, but Kubernetes pkg components have glog calls. Where do these get logged to and how can I see them?

Example: azure_managedDiskController.go

if err != nil {
    glog.V(2).Infof("azureDisk - created new MD Name:%s StorageAccountType:%s Size:%v but was unable to confirm provisioningState in poll process", diskName, storageAccountType, sizeGB)
} else {
    glog.V(2).Infof("azureDisk - created new MD Name:%s StorageAccountType:%s Size:%v", diskName, storageAccountType, sizeGB)
}
-- Highway of Life
glog
kubernetes

0 Answers