Fix to address issue #5461 kube-proxy too many files open

https://github.com/GoogleCloudPlatform/kubernetes/issues/5461
This commit is contained in:
Timothy St. Clair 2015-03-17 10:13:25 -05:00
parent 668e2dbcd8
commit 140330fca8
2 changed files with 2 additions and 0 deletions

View File

@ -6,6 +6,7 @@ Documentation=https://github.com/GoogleCloudPlatform/kubernetes
EnvironmentFile=/etc/sysconfig/kube-proxy
ExecStart=/usr/local/bin/kube-proxy "$DAEMON_ARGS"
Restart=on-failure
LimitNOFILE=65536
[Install]
WantedBy=multi-user.target

View File

@ -12,6 +12,7 @@ ExecStart=/usr/bin/kube-proxy \
$KUBE_ETCD_SERVERS \
$KUBE_PROXY_ARGS
Restart=on-failure
LimitNOFILE=65536
[Install]
WantedBy=multi-user.target