Merge pull request #48235 from xiangpengzhao/fix-get-capacity

Implement GetCapacity in container_manager_unsupported
This commit is contained in:
Dawn Chen 2017-06-28 19:31:47 -07:00 committed by GitHub
commit 8bece8ec41

View File

@ -64,6 +64,10 @@ func (cm *unsupportedContainerManager) GetNodeAllocatableReservation() v1.Resour
return nil
}
func (cm *unsupportedContainerManager) GetCapacity() v1.ResourceList {
return nil
}
func (cm *unsupportedContainerManager) NewPodContainerManager() PodContainerManager {
return &unsupportedPodContainerManager{}
}