Added pods-per-core to kubelet. #25762

This commit is contained in:
Robert Rati
2016-05-18 11:18:10 -04:00
parent 35922bdcbd
commit 2d487f7c06
11 changed files with 599 additions and 531 deletions

View File

@@ -49,7 +49,8 @@ type HollowNodeConfig struct {
}
const (
maxPods = 110
maxPods = 110
podsPerCore = 0
)
var knownMorphs = sets.NewString("kubelet", "proxy")
@@ -115,6 +116,7 @@ func main() {
config.KubeletReadOnlyPort,
containerManager,
maxPods,
podsPerCore,
)
hollowKubelet.Run()
}