c12s-kubespray/roles/kubernetes/master/templates/systemd-init/kube-proxy.service.j2

23 lines
566 B
Plaintext
Raw Normal View History

2015-10-03 20:19:50 +00:00
[Unit]
Description=Kubernetes Kube-Proxy Server
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
2015-10-27 14:42:46 +00:00
{% if kube_network_plugin is defined and kube_network_plugin == "calico" %}
2015-10-03 20:19:50 +00:00
After=docker.service calico-node.service
{% else %}
After=docker.service
{% endif %}
[Service]
2015-11-18 21:36:56 +00:00
EnvironmentFile=/etc/kubernetes/config
2015-10-03 20:19:50 +00:00
EnvironmentFile=/etc/network-environment
ExecStart={{ bin_dir }}/kube-proxy \
$KUBE_LOGTOSTDERR \
$KUBE_LOG_LEVEL \
$KUBE_MASTER \
$KUBE_PROXY_ARGS
Restart=on-failure
LimitNOFILE=65536
[Install]
WantedBy=multi-user.target