mirror of https://github.com/ceph/ceph-ansible.git
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
|
[Unit]
|
||
|
Description=Ceph crash dump collector
|
||
|
{% if container_binary == 'docker' %}
|
||
|
After=docker.service
|
||
|
Requires=docker.service
|
||
|
{% else %}
|
||
|
After=network.target
|
||
|
{% endif %}
|
||
|
|
||
|
[Service]
|
||
|
{% if container_binary == 'podman' %}
|
||
|
ExecStartPre=-/usr/bin/rm -f /%t/%n-pid /%t/%n-cid
|
||
|
ExecStartPre=-/usr/bin/{{ container_binary }} rm -f ceph-crash-%i
|
||
|
{% endif %}
|
||
|
ExecStart=/usr/bin/{{ container_binary }} run --rm --name ceph-crash-%i \
|
||
|
{% if container_binary == 'podman' %}
|
||
|
-d --conmon-pidfile /%t/%n-pid --cidfile /%t/%n-cid \
|
||
|
{% endif %}
|
||
|
--net=host \
|
||
|
-v /var/lib/ceph:/var/lib/ceph:z \
|
||
|
-v /etc/localtime:/etc/localtime:ro \
|
||
|
--entrypoint=/usr/bin/ceph-crash {{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}
|
||
|
{% if container_binary == 'podman' %}
|
||
|
ExecStop=-/usr/bin/sh -c "/usr/bin/{{ container_binary }} rm -f `cat /%t/%n-cid`"
|
||
|
{% else %}
|
||
|
ExecStop=-/usr/bin/{{ container_binary }} stop ceph-crash-%i
|
||
|
{% endif %}
|
||
|
StartLimitInterval=10min
|
||
|
StartLimitBurst=30
|
||
|
{% if container_binary == 'podman' %}
|
||
|
Type=forking
|
||
|
PIDFile=/%t/%n-pid
|
||
|
{% endif %}
|
||
|
KillMode=none
|
||
|
Restart=always
|
||
|
RestartSec=10s
|
||
|
TimeoutStartSec=120
|
||
|
TimeoutStopSec=10
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|