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.

45 lines
2.5 KiB

9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
  1. {% if ansible_service_mgr in ["sysvinit","upstart"] %}
  2. # Logging directory
  3. KUBE_LOGGING="--log-dir={{ kube_log_dir }} --logtostderr=true"
  4. {% else %}
  5. # logging to stderr means we get it in the systemd journal
  6. KUBE_LOGGING="--logtostderr=true"
  7. {% endif %}
  8. KUBE_LOG_LEVEL="--v={{ kube_log_level | default('2') }}"
  9. KUBE_ALLOW_PRIV="--allow_privileged=true"
  10. {% if inventory_hostname in groups['kube-node'] %}
  11. KUBELET_API_SERVER="--api_servers={% for host in groups['kube-master'] %}https://{{ hostvars[host]['access_ip'] | default(hostvars[host]['ip'] | default(hostvars[host]['ansible_default_ipv4']['address'])) }}:{{ kube_apiserver_port }}{% if not loop.last %},{% endif %}{% endfor %}"
  12. {% endif %}
  13. # The address for the info server to serve on (set to 0.0.0.0 or "" for all interfaces)
  14. KUBELET_ADDRESS="--address={{ ip | default(0.0.0.0) }}"
  15. # The port for the info server to serve on
  16. # KUBELET_PORT="--port=10250"
  17. # You may leave this blank to use the actual hostname
  18. KUBELET_HOSTNAME="--hostname_override={{ inventory_hostname }}"
  19. {% if inventory_hostname in groups['kube-master'] and inventory_hostname not in groups['kube-node'] %}
  20. KUBELET_REGISTER_NODE="--register-node=false"
  21. {% endif %}
  22. # location of the api-server
  23. {% if dns_setup %}
  24. KUBELET_ARGS="--cluster_dns={{ dns_server }} --cluster_domain={{ dns_domain }} --kubeconfig={{ kube_config_dir}}/node-kubeconfig.yaml --config={{ kube_manifest_dir }}"
  25. {% else %}
  26. KUBELET_ARGS="--kubeconfig={{ kube_config_dir}}/kubelet.kubeconfig --config={{ kube_manifest_dir }}"
  27. {% endif %}
  28. {% if kube_network_plugin is defined and kube_network_plugin in ["calico", "weave"] %}
  29. KUBELET_NETWORK_PLUGIN="--network_plugin=cni --network-plugin-dir=/etc/cni/net.d"
  30. {% elif kube_network_plugin is defined and kube_network_plugin == "weave" %}
  31. DOCKER_SOCKET="--docker-endpoint=unix:/var/run/weave/weave.sock"
  32. {% endif %}
  33. # Should this cluster be allowed to run privileged docker containers
  34. KUBE_ALLOW_PRIV="--allow_privileged=true"
  35. {% if cloud_provider is defined and cloud_provider == "openstack" %}
  36. KUBELET_CLOUDPROVIDER="--cloud-provider={{ cloud_provider }} --cloud-config={{ kube_config_dir }}/cloud_config"
  37. {% else %}
  38. {# TODO: gce and aws don't need the cloud provider to be set? #}
  39. KUBELET_CLOUDPROVIDER=""
  40. {% endif %}
  41. {% if ansible_service_mgr in ["sysvinit","upstart"] %}
  42. DAEMON_ARGS="$KUBE_LOGGING $KUBE_LOG_LEVEL $KUBE_ALLOW_PRIV $KUBELET_API_SERVER $KUBELET_ADDRESS \
  43. $KUBELET_HOSTNAME $KUBELET_REGISTER_NODE $KUBELET_ARGS $DOCKER_SOCKET $KUBELET_ARGS $KUBELET_NETWORK_PLUGIN \
  44. $KUBELET_CLOUDPROVIDER"
  45. {% endif %}