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
1.2 KiB

9 years ago
  1. [Service]
  2. Environment="KUBE_LOGTOSTDERR=--logtostderr=true"
  3. Environment="KUBE_LOG_LEVEL=--v=0"
  4. Environment="KUBE_ALLOW_PRIV=--allow_privileged=true"
  5. Environment="KUBE_MASTER=--master=https://{{ groups['kube-master'][0] }}:{{ kube_master_port }}"
  6. # The address for the info server to serve on (set to 0.0.0.0 or "" for all interfaces)
  7. Environment="KUBELET_ADDRESS=--address=0.0.0.0"
  8. # The port for the info server to serve on
  9. # Environment="KUBELET_PORT=--port=10250"
  10. # You may leave this blank to use the actual hostname
  11. Environment="KUBELET_HOSTNAME=--hostname_override={{ inventory_hostname }}"
  12. # location of the api-server
  13. Environment="KUBELET_API_SERVER=--api_servers=https://{{ groups['kube-master'][0]}}:{{ kube_master_port }}"
  14. {% if dns_setup %}
  15. Environment="KUBELET_ARGS=--cluster_dns={{ kube_dns_server }} --cluster_domain={{ dns_domain }} --kubeconfig={{ kube_config_dir}}/kubelet.kubeconfig --config={{ kube_manifest_dir }}"
  16. {% else %}
  17. Environment="KUBELET_ARGS=--kubeconfig={{ kube_config_dir}}/kubelet.kubeconfig --config={{ kube_manifest_dir }}"
  18. {% endif %}
  19. {% if overlay_network_plugin|default('') %}
  20. Environment="KUBELET_NETWORK_PLUGIN=--network_plugin={{ overlay_network_plugin }}"
  21. {% endif %}