2018-03-23 11:24:56 +08:00
|
|
|
[Unit]
|
|
|
|
Description=RBD Target API Service
|
2019-03-08 01:31:39 +08:00
|
|
|
{% if container_binary == 'docker' %}
|
2021-12-09 00:37:14 +08:00
|
|
|
After=docker.service network-online.target local-fs.target time-sync.target
|
2020-06-23 01:58:10 +08:00
|
|
|
Requires=docker.service
|
2019-06-07 03:41:35 +08:00
|
|
|
{% else %}
|
2021-12-09 00:37:14 +08:00
|
|
|
After=network-online.target local-fs.target time-sync.target
|
2019-03-08 01:31:39 +08:00
|
|
|
{% endif %}
|
2021-12-09 00:37:14 +08:00
|
|
|
Wants=network-online.target local-fs.target time-sync.target
|
2018-03-23 11:24:56 +08:00
|
|
|
|
|
|
|
[Service]
|
|
|
|
EnvironmentFile=-/etc/environment
|
2020-06-23 00:58:56 +08:00
|
|
|
{% if container_binary == 'podman' %}
|
|
|
|
ExecStartPre=-/usr/bin/rm -f /%t/%n-pid /%t/%n-cid
|
2020-11-30 21:52:47 +08:00
|
|
|
ExecStartPre=-/usr/bin/{{ container_binary }} rm --storage rbd-target-api
|
2021-04-14 19:41:59 +08:00
|
|
|
ExecStartPre=-/usr/bin/mkdir -p /var/log/rbd-target-api
|
2020-06-23 00:58:56 +08:00
|
|
|
{% else %}
|
2018-11-08 17:02:37 +08:00
|
|
|
ExecStartPre=-/usr/bin/{{ container_binary }} stop rbd-target-api
|
2020-06-23 00:58:56 +08:00
|
|
|
{% endif %}
|
2020-07-21 21:32:50 +08:00
|
|
|
ExecStartPre=-/usr/bin/{{ container_binary }} rm rbd-target-api
|
2018-11-08 17:02:37 +08:00
|
|
|
ExecStart=/usr/bin/{{ container_binary }} run --rm \
|
2020-06-23 00:58:56 +08:00
|
|
|
{% if container_binary == 'podman' %}
|
2020-10-22 22:59:15 +08:00
|
|
|
-d --log-driver journald --conmon-pidfile /%t/%n-pid --cidfile /%t/%n-cid \
|
2020-06-23 00:58:56 +08:00
|
|
|
{% endif %}
|
2021-08-03 22:06:53 +08:00
|
|
|
--pids-limit={{ 0 if container_binary == 'podman' else -1 }} \
|
2018-03-23 11:24:56 +08:00
|
|
|
--memory={{ ceph_rbd_target_api_docker_memory_limit }} \
|
|
|
|
--cpus={{ ceph_rbd_target_api_docker_cpu_limit }} \
|
|
|
|
-v /etc/localtime:/etc/localtime:ro \
|
|
|
|
--privileged \
|
2018-10-19 04:29:02 +08:00
|
|
|
--net=host \
|
2018-03-23 11:24:56 +08:00
|
|
|
-v /dev:/dev \
|
2018-11-19 21:12:43 +08:00
|
|
|
-v /dev/log:/dev/log \
|
2018-03-23 11:24:56 +08:00
|
|
|
-v /lib/modules:/lib/modules \
|
|
|
|
-v /etc/ceph:/etc/ceph \
|
2019-07-04 22:10:00 +08:00
|
|
|
-v /var/log/rbd-target-api:/var/log/rbd-target-api:z \
|
2018-03-23 11:24:56 +08:00
|
|
|
-e CLUSTER={{ cluster }} \
|
|
|
|
-e CEPH_DAEMON=RBD_TARGET_API \
|
2019-03-05 22:28:14 +08:00
|
|
|
-e CONTAINER_IMAGE={{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }} \
|
2018-03-23 11:24:56 +08:00
|
|
|
--name=rbd-target-api \
|
|
|
|
{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}
|
2020-06-23 00:58:56 +08:00
|
|
|
{% if container_binary == 'podman' %}
|
|
|
|
ExecStop=-/usr/bin/sh -c "/usr/bin/{{ container_binary }} rm -f `cat /%t/%n-cid`"
|
|
|
|
{% else %}
|
2018-11-08 17:02:37 +08:00
|
|
|
ExecStopPost=-/usr/bin/{{ container_binary }} stop rbd-target-api
|
2020-06-23 00:58:56 +08:00
|
|
|
{% endif %}
|
2020-02-11 23:09:51 +08:00
|
|
|
KillMode=none
|
2018-03-23 11:24:56 +08:00
|
|
|
Restart=always
|
|
|
|
RestartSec=10s
|
|
|
|
TimeoutStartSec=120
|
|
|
|
TimeoutStopSec=15
|
2020-06-23 00:58:56 +08:00
|
|
|
{% if container_binary == 'podman' %}
|
|
|
|
Type=forking
|
|
|
|
PIDFile=/%t/%n-pid
|
|
|
|
{% endif %}
|
2018-03-23 11:24:56 +08:00
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|