mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-03-15 07:57:31 -02:30
* Add for docker system units:
ExecReload=/bin/kill -s HUP $MAINPID
Delegate=yes
KillMode=process.
* Add missed DOCKER_OPTIONS for calico/weave docker systemd unit.
* Change Requires= to a less strict and non-faily Wants=, add missing
Wants= for After=.
* Align wants/after in a wat if Wants=foo, After= has foo as well.
* Make wants/after docker.service to ask for the docker.socket as well.
* Move "docker rm -f" commands from ExecStartPre= to ExecStopPost=.
hooks to ensure non-destructive start attempts issued by Wants=.
Signed-off-by: Bogdan Dobrelya <bdobrelia@mirantis.com>
29 lines
1.0 KiB
Django/Jinja
29 lines
1.0 KiB
Django/Jinja
[Unit]
|
|
Description=etcd-proxy docker wrapper
|
|
Wants=docker.service docker.socket
|
|
After=docker.service docker.socket
|
|
|
|
[Service]
|
|
User=root
|
|
PermissionsStartOnly=true
|
|
ExecStart={{ docker_bin_dir | default("/usr/bin") }}/docker run --restart=always \
|
|
--env-file=/etc/etcd-proxy.env \
|
|
{# TODO(mattymo): Allow docker IP binding and disable in envfile
|
|
-p 2380:2380 -p 2379:2379 #}
|
|
--net=host \
|
|
--stop-signal=SIGKILL \
|
|
-v /usr/share/ca-certificates/:/etc/ssl/certs:ro \
|
|
--name={{ etcd_proxy_member_name | default("etcd-proxy") }} \
|
|
{{ etcd_image_repo }}:{{ etcd_image_tag }} \
|
|
{% if etcd_after_v3 %}
|
|
{{ etcd_container_bin_dir }}etcd
|
|
{% endif %}
|
|
ExecStopPost=-{{ docker_bin_dir | default("/usr/bin") }}/docker rm -f {{ etcd_proxy_member_name | default("etcd-proxy") }}
|
|
ExecReload={{ docker_bin_dir | default("/usr/bin") }}/docker restart {{ etcd_proxy_member_name | default("etcd-proxy") }}
|
|
ExecStop={{ docker_bin_dir | default("/usr/bin") }}/docker stop {{ etcd_proxy_member_name | default("etcd-proxy") }}
|
|
Restart=always
|
|
RestartSec=15s
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|