2017-03-16 17:17:08 +08:00
|
|
|
[Unit]
|
|
|
|
Description=Ceph Manager
|
2021-08-10 21:21:19 +08:00
|
|
|
PartOf=ceph-mgr.target
|
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
|
2017-03-16 17:17:08 +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
|
2021-03-03 22:43:50 +08:00
|
|
|
ExecStartPre=-/usr/bin/{{ container_binary }} rm --storage ceph-mgr-{{ ansible_facts['hostname'] }}
|
2021-04-14 19:41:59 +08:00
|
|
|
ExecStartPre=-/usr/bin/mkdir -p /var/log/ceph
|
2020-06-23 00:58:56 +08:00
|
|
|
{% else %}
|
2021-03-03 22:43:50 +08:00
|
|
|
ExecStartPre=-/usr/bin/{{ container_binary }} stop ceph-mgr-{{ ansible_facts['hostname'] }}
|
2020-06-23 00:58:56 +08:00
|
|
|
{% endif %}
|
2021-03-03 22:43:50 +08:00
|
|
|
ExecStartPre=-/usr/bin/{{ container_binary }} rm ceph-mgr-{{ ansible_facts['hostname'] }}
|
2018-11-08 17:02:37 +08:00
|
|
|
ExecStart=/usr/bin/{{ container_binary }} run --rm --net=host \
|
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 }} \
|
2023-03-14 19:26:56 +08:00
|
|
|
--security-opt label=disable \
|
2017-09-06 16:53:30 +08:00
|
|
|
--memory={{ ceph_mgr_docker_memory_limit }} \
|
2017-10-16 21:16:48 +08:00
|
|
|
--cpus={{ ceph_mgr_docker_cpu_limit }} \
|
2024-03-03 05:06:14 +08:00
|
|
|
{% for v in ceph_common_container_params['volumes'] + ceph_mgr_container_params['volumes'] | default([]) %}
|
2024-02-18 10:41:41 +08:00
|
|
|
-v {{ v }} \
|
|
|
|
{% endfor %}
|
2024-03-03 05:06:14 +08:00
|
|
|
{% for k, v in (ceph_common_container_params['envs'] | combine(ceph_mgr_container_params['envs'] | default({}))).items() %}
|
2024-02-18 10:41:41 +08:00
|
|
|
-e {{ k }}={{ v }} \
|
|
|
|
{% endfor %}
|
2021-03-03 22:43:50 +08:00
|
|
|
--name=ceph-mgr-{{ ansible_facts['hostname'] }} \
|
2022-09-17 09:48:45 +08:00
|
|
|
--entrypoint=/usr/bin/ceph-mgr \
|
|
|
|
{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }} \
|
2024-03-03 05:06:14 +08:00
|
|
|
{{ (ceph_common_container_params['args'] + ceph_mgr_container_params['args'] | default([])) | join(' ') }}
|
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 %}
|
2021-03-03 22:43:50 +08:00
|
|
|
ExecStopPost=-/usr/bin/{{ container_binary }} stop ceph-mgr-{{ ansible_facts['hostname'] }}
|
2020-06-23 00:58:56 +08:00
|
|
|
{% endif %}
|
2020-02-11 23:09:51 +08:00
|
|
|
KillMode=none
|
2017-03-16 17:17:08 +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 %}
|
2017-03-16 17:17:08 +08:00
|
|
|
|
|
|
|
[Install]
|
2021-08-10 21:21:19 +08:00
|
|
|
WantedBy=ceph.target
|