You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
495 B

9 years ago
  1. [Unit]
  2. Description=Kubernetes Kube-Proxy Server
  3. Documentation=https://github.com/GoogleCloudPlatform/kubernetes
  4. {% if overlay_network_plugin|default('') %}
  5. After=docker.service calico-node.service
  6. {% else %}
  7. After=docker.service
  8. {% endif %}
  9. [Service]
  10. EnvironmentFile=/etc/network-environment
  11. ExecStart={{ bin_dir }}/kube-proxy \
  12. $KUBE_LOGTOSTDERR \
  13. $KUBE_LOG_LEVEL \
  14. $KUBE_MASTER \
  15. $KUBE_PROXY_ARGS
  16. Restart=on-failure
  17. LimitNOFILE=65536
  18. [Install]
  19. WantedBy=multi-user.target