2016-02-13 18:17:20 +08:00
|
|
|
{% if ansible_service_mgr in ["sysvinit","upstart"] %}
|
2016-01-22 21:25:33 +08:00
|
|
|
# Logging directory
|
|
|
|
KUBE_LOGGING="--log-dir={{ kube_log_dir }} --logtostderr=true"
|
|
|
|
{% else %}
|
|
|
|
# logging to stderr means we get it in the systemd journal
|
|
|
|
KUBE_LOGGING="--logtostderr=true"
|
|
|
|
{% endif %}
|
2015-12-17 06:49:01 +08:00
|
|
|
KUBE_LOG_LEVEL="--v={{ kube_log_level | default('2') }}"
|
2016-03-22 20:25:41 +08:00
|
|
|
{% if inventory_hostname in groups['kube-node'] %}
|
2016-07-13 23:13:47 +08:00
|
|
|
KUBELET_API_SERVER="--api_servers={{ kube_apiserver_endpoint }}"
|
2016-03-22 20:25:41 +08:00
|
|
|
{% endif %}
|
2015-10-04 04:19:50 +08:00
|
|
|
# The address for the info server to serve on (set to 0.0.0.0 or "" for all interfaces)
|
2016-07-06 05:23:08 +08:00
|
|
|
KUBELET_ADDRESS="--address={{ ip | default("0.0.0.0") }}"
|
2015-10-04 04:19:50 +08:00
|
|
|
# The port for the info server to serve on
|
2015-12-17 06:49:01 +08:00
|
|
|
# KUBELET_PORT="--port=10250"
|
2015-10-04 04:19:50 +08:00
|
|
|
# You may leave this blank to use the actual hostname
|
2016-07-08 17:59:21 +08:00
|
|
|
KUBELET_HOSTNAME="--hostname-override={{ inventory_hostname }}"
|
2015-12-11 18:32:13 +08:00
|
|
|
{% if inventory_hostname in groups['kube-master'] and inventory_hostname not in groups['kube-node'] %}
|
2015-12-17 06:49:01 +08:00
|
|
|
KUBELET_REGISTER_NODE="--register-node=false"
|
2015-12-11 18:32:13 +08:00
|
|
|
{% endif %}
|
2015-10-04 04:19:50 +08:00
|
|
|
# location of the api-server
|
|
|
|
{% if dns_setup %}
|
2016-07-20 16:57:47 +08:00
|
|
|
KUBELET_ARGS="--cluster_dns={{ dns_server }} --cluster_domain={{ dns_domain }} --kubeconfig={{ kube_config_dir}}/node-kubeconfig.yaml --config={{ kube_manifest_dir }} --resolv-conf={{ kube_resolv_conf }}"
|
2015-10-04 04:19:50 +08:00
|
|
|
{% else %}
|
2015-12-17 06:49:01 +08:00
|
|
|
KUBELET_ARGS="--kubeconfig={{ kube_config_dir}}/kubelet.kubeconfig --config={{ kube_manifest_dir }}"
|
2015-10-04 04:19:50 +08:00
|
|
|
{% endif %}
|
2016-04-20 23:09:09 +08:00
|
|
|
{% if kube_network_plugin is defined and kube_network_plugin in ["calico", "weave"] %}
|
2016-07-08 17:59:21 +08:00
|
|
|
KUBELET_NETWORK_PLUGIN="--network-plugin=cni --network-plugin-dir=/etc/cni/net.d"
|
2016-02-10 00:16:16 +08:00
|
|
|
{% elif kube_network_plugin is defined and kube_network_plugin == "weave" %}
|
|
|
|
DOCKER_SOCKET="--docker-endpoint=unix:/var/run/weave/weave.sock"
|
2015-10-04 04:19:50 +08:00
|
|
|
{% endif %}
|
2015-12-17 06:49:01 +08:00
|
|
|
# Should this cluster be allowed to run privileged docker containers
|
2016-07-08 17:59:21 +08:00
|
|
|
KUBE_ALLOW_PRIV="--allow-privileged=true"
|
2016-03-29 20:50:22 +08:00
|
|
|
{% if cloud_provider is defined and cloud_provider == "openstack" %}
|
|
|
|
KUBELET_CLOUDPROVIDER="--cloud-provider={{ cloud_provider }} --cloud-config={{ kube_config_dir }}/cloud_config"
|
2016-08-24 21:48:32 +08:00
|
|
|
{% elif cloud_provider is defined and cloud_provider == "aws" %}
|
2016-08-24 00:42:22 +08:00
|
|
|
KUBELET_CLOUDPROVIDER="--cloud-provider={{ cloud_provider }}"
|
2016-03-29 20:50:22 +08:00
|
|
|
{% else %}
|
|
|
|
KUBELET_CLOUDPROVIDER=""
|
|
|
|
{% endif %}
|
2016-02-13 18:17:20 +08:00
|
|
|
{% if ansible_service_mgr in ["sysvinit","upstart"] %}
|
2016-01-22 21:25:33 +08:00
|
|
|
DAEMON_ARGS="$KUBE_LOGGING $KUBE_LOG_LEVEL $KUBE_ALLOW_PRIV $KUBELET_API_SERVER $KUBELET_ADDRESS \
|
2016-03-29 20:50:22 +08:00
|
|
|
$KUBELET_HOSTNAME $KUBELET_REGISTER_NODE $KUBELET_ARGS $DOCKER_SOCKET $KUBELET_ARGS $KUBELET_NETWORK_PLUGIN \
|
|
|
|
$KUBELET_CLOUDPROVIDER"
|
2015-12-31 21:05:55 +08:00
|
|
|
{% endif %}
|