2016-12-20 23:00:46 +00:00
|
|
|
[Unit]
|
|
|
|
Description=Kubernetes Kubelet Server
|
|
|
|
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
|
|
|
|
Wants=network.target
|
|
|
|
|
|
|
|
[Service]
|
|
|
|
Restart=on-failure
|
|
|
|
RestartSec=10s
|
|
|
|
TimeoutStartSec=0
|
|
|
|
LimitNOFILE=40000
|
|
|
|
|
|
|
|
ExecStartPre=-/usr/bin/rkt rm --uuid-file=/var/run/kubelet.uuid
|
|
|
|
ExecStartPre=-/bin/mkdir -p /var/lib/kubelet
|
|
|
|
|
|
|
|
EnvironmentFile={{kube_config_dir}}/kubelet.env
|
|
|
|
# stage1-fly mounts /proc /sys /dev so no need to duplicate the mounts
|
|
|
|
ExecStart=/usr/bin/rkt run \
|
2017-11-13 14:04:13 +00:00
|
|
|
{% if kubelet_load_modules == true %}
|
|
|
|
--volume modprobe,kind=host,source=/usr/sbin/modprobe \
|
|
|
|
--volume lib-modules,kind=host,source=/lib/modules \
|
|
|
|
{% endif %}
|
2017-05-01 18:51:40 +00:00
|
|
|
--volume os-release,kind=host,source=/etc/os-release,readOnly=true \
|
2017-10-06 15:17:34 +00:00
|
|
|
--volume hosts,kind=host,source=/etc/hosts,readOnly=true \
|
2016-12-20 23:00:46 +00:00
|
|
|
--volume dns,kind=host,source=/etc/resolv.conf \
|
|
|
|
--volume etc-kubernetes,kind=host,source={{ kube_config_dir }},readOnly=false \
|
|
|
|
--volume etc-ssl-certs,kind=host,source=/etc/ssl/certs,readOnly=true \
|
2017-01-10 04:54:01 +00:00
|
|
|
--volume etcd-ssl,kind=host,source={{ etcd_config_dir }},readOnly=true \
|
|
|
|
--volume run,kind=host,source=/run,readOnly=false \
|
2017-02-10 11:50:26 +00:00
|
|
|
{% for dir in ssl_ca_dirs -%}
|
|
|
|
--volume {{ dir | regex_replace('^/(.*)$', '\\1' ) | regex_replace('/', '-') }},kind=host,source={{ dir }},readOnly=true \
|
|
|
|
{% endfor -%}
|
2016-12-20 23:00:46 +00:00
|
|
|
--volume var-lib-docker,kind=host,source={{ docker_daemon_graph }},readOnly=false \
|
2017-07-12 14:28:54 +00:00
|
|
|
--volume var-lib-kubelet,kind=host,source=/var/lib/kubelet,readOnly=false,recursive=true \
|
2017-01-10 04:54:01 +00:00
|
|
|
--volume var-log,kind=host,source=/var/log \
|
2017-11-03 07:10:37 +00:00
|
|
|
{% if local_volumes_enabled == true %}
|
|
|
|
--volume local-volume-base-dir,kind=host,source={{ local_volume_base_dir }},readOnly=false,recursive=true \
|
|
|
|
{% endif %}
|
2017-08-28 18:11:01 +00:00
|
|
|
{% if kube_network_plugin in ["calico", "weave", "canal", "flannel"] %}
|
2017-02-10 05:34:43 +00:00
|
|
|
--volume etc-cni,kind=host,source=/etc/cni,readOnly=true \
|
|
|
|
--volume opt-cni,kind=host,source=/opt/cni,readOnly=true \
|
2017-04-03 13:50:17 +00:00
|
|
|
--volume var-lib-cni,kind=host,source=/var/lib/cni,readOnly=false \
|
2017-11-13 14:04:13 +00:00
|
|
|
{% if kubelet_load_modules == true %}
|
|
|
|
--mount volume=modprobe,target=/usr/sbin/modprobe \
|
|
|
|
--mount volume=lib-modules,target=/lib/modules \
|
|
|
|
{% endif %}
|
2017-01-10 04:54:01 +00:00
|
|
|
--mount volume=etc-cni,target=/etc/cni \
|
2017-02-10 05:34:43 +00:00
|
|
|
--mount volume=opt-cni,target=/opt/cni \
|
2017-04-03 13:50:17 +00:00
|
|
|
--mount volume=var-lib-cni,target=/var/lib/cni \
|
2017-02-10 05:34:43 +00:00
|
|
|
{% endif %}
|
2017-04-28 21:45:10 +00:00
|
|
|
--mount volume=os-release,target=/etc/os-release \
|
2017-02-10 05:34:43 +00:00
|
|
|
--mount volume=dns,target=/etc/resolv.conf \
|
2016-12-20 23:00:46 +00:00
|
|
|
--mount volume=etc-kubernetes,target={{ kube_config_dir }} \
|
|
|
|
--mount volume=etc-ssl-certs,target=/etc/ssl/certs \
|
2017-01-10 04:54:01 +00:00
|
|
|
--mount volume=etcd-ssl,target={{ etcd_config_dir }} \
|
|
|
|
--mount volume=run,target=/run \
|
2017-02-10 11:50:26 +00:00
|
|
|
{% for dir in ssl_ca_dirs -%}
|
|
|
|
--mount volume={{ dir | regex_replace('^/(.*)$', '\\1' ) | regex_replace('/', '-') }},target={{ dir }} \
|
|
|
|
{% endfor -%}
|
2016-12-20 23:00:46 +00:00
|
|
|
--mount volume=var-lib-docker,target=/var/lib/docker \
|
|
|
|
--mount volume=var-lib-kubelet,target=/var/lib/kubelet \
|
2017-01-10 04:54:01 +00:00
|
|
|
--mount volume=var-log,target=/var/log \
|
2017-10-06 15:17:34 +00:00
|
|
|
--mount volume=hosts,target=/etc/hosts \
|
2017-11-03 07:10:37 +00:00
|
|
|
{% if local_volumes_enabled == true %}
|
2017-11-01 14:25:35 +00:00
|
|
|
--mount volume=local-volume-base-dir,target={{ local_volume_base_dir }} \
|
2017-11-03 07:10:37 +00:00
|
|
|
{% endif %}
|
2016-12-20 23:00:46 +00:00
|
|
|
--stage1-from-dir=stage1-fly.aci \
|
2017-02-22 20:14:21 +00:00
|
|
|
{% if kube_hyperkube_image_repo == "docker" %}
|
|
|
|
--insecure-options=image \
|
|
|
|
docker://{{ hyperkube_image_repo }}:{{ hyperkube_image_tag }} \
|
|
|
|
{% else %}
|
2016-12-20 23:00:46 +00:00
|
|
|
{{ hyperkube_image_repo }}:{{ hyperkube_image_tag }} \
|
2017-02-22 20:14:21 +00:00
|
|
|
{% endif %}
|
2016-12-20 23:00:46 +00:00
|
|
|
--uuid-file-save=/var/run/kubelet.uuid \
|
|
|
|
--debug --exec=/kubelet -- \
|
|
|
|
$KUBE_LOGTOSTDERR \
|
|
|
|
$KUBE_LOG_LEVEL \
|
|
|
|
$KUBELET_API_SERVER \
|
|
|
|
$KUBELET_ADDRESS \
|
|
|
|
$KUBELET_PORT \
|
|
|
|
$KUBELET_HOSTNAME \
|
|
|
|
$KUBE_ALLOW_PRIV \
|
|
|
|
$KUBELET_ARGS \
|
|
|
|
$DOCKER_SOCKET \
|
|
|
|
$KUBELET_REGISTER_NODE \
|
2017-02-23 19:32:48 +00:00
|
|
|
$KUBELET_NETWORK_PLUGIN \
|
|
|
|
$KUBELET_CLOUDPROVIDER
|
2016-12-20 23:00:46 +00:00
|
|
|
|
|
|
|
ExecStop=-/usr/bin/rkt stop --uuid-file=/var/run/kubelet.uuid
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|