Increase MaxPods in Kubemark

This commit is contained in:
gmarek
2016-03-02 16:21:16 +01:00
parent 3caa6caa04
commit 89f0699035
2 changed files with 7 additions and 1 deletions

View File

@@ -49,6 +49,10 @@ type HollowNodeConfig struct {
ServerPort int
}
const (
maxPods = 110
)
var knownMorphs = sets.NewString("kubelet", "proxy")
func (c *HollowNodeConfig) addFlags(fs *pflag.FlagSet) {
@@ -110,6 +114,7 @@ func main() {
config.KubeletPort,
config.KubeletReadOnlyPort,
containerManager,
maxPods,
)
hollowKubelet.Run()
}