Implement GetCapacity in container_manager_unsupported

pull/6/head
xiangpengzhao 2017-06-29 10:22:57 +08:00
parent b697222103
commit 53c536b59c
No known key found for this signature in database
GPG Key ID: A9FD03A856417C5B
1 changed files with 4 additions and 0 deletions

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