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)
}