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.

34 lines
1.9 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
9 years ago
  1. {% if init_system == "sysvinit" %}
  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. KUBELET_API_SERVER="--api_servers={% for host in groups['kube-master'] %}https://{{ hostvars[host]['ip'] | default(hostvars[host]['ansible_default_ipv4']['address']) }}:{{ kube_apiserver_port }}{% if not loop.last %},{% endif %}{% endfor %}"
  11. # The address for the info server to serve on (set to 0.0.0.0 or "" for all interfaces)
  12. KUBELET_ADDRESS="--address=0.0.0.0"
  13. # The port for the info server to serve on
  14. # KUBELET_PORT="--port=10250"
  15. # You may leave this blank to use the actual hostname
  16. KUBELET_HOSTNAME="--hostname_override={{ inventory_hostname }}"
  17. {% if inventory_hostname in groups['kube-master'] and inventory_hostname not in groups['kube-node'] %}
  18. KUBELET_REGISTER_NODE="--register-node=false"
  19. {% endif %}
  20. # location of the api-server
  21. {% if dns_setup %}
  22. KUBELET_ARGS="--cluster_dns={{ dns_server }} --cluster_domain={{ dns_domain }} --kubeconfig={{ kube_config_dir}}/node-kubeconfig.yaml --config={{ kube_manifest_dir }}"
  23. {% else %}
  24. KUBELET_ARGS="--kubeconfig={{ kube_config_dir}}/kubelet.kubeconfig --config={{ kube_manifest_dir }}"
  25. {% endif %}
  26. {% if kube_network_plugin is defined and kube_network_plugin == "calico" %}
  27. KUBELET_NETWORK_PLUGIN="--network_plugin={{ kube_network_plugin }}"
  28. {% endif %}
  29. # Should this cluster be allowed to run privileged docker containers
  30. KUBE_ALLOW_PRIV="--allow_privileged=true"
  31. {% if init_system == "sysvinit" %}
  32. DAEMON_ARGS="$KUBE_LOGGING $KUBE_LOG_LEVEL $KUBE_ALLOW_PRIV $KUBELET_API_SERVER $KUBELET_ADDRESS \
  33. $KUBELET_HOSTNAME $KUBELET_REGISTER_NODE $KUBELET_ARGS $KUBELET_ARGS $KUBELET_NETWORK_PLUGIN"
  34. {% endif %}