mirror of https://github.com/ceph/ceph-ansible.git
55 lines
1.9 KiB
Django/Jinja
55 lines
1.9 KiB
Django/Jinja
[Unit]
|
|
Description=Ceph Manager
|
|
{% if container_binary == 'docker' %}
|
|
After=docker.service
|
|
Requires=docker.service
|
|
{% else %}
|
|
After=network.target
|
|
{% endif %}
|
|
|
|
[Service]
|
|
EnvironmentFile=-/etc/environment
|
|
{% if container_binary == 'podman' %}
|
|
ExecStartPre=-/usr/bin/rm -f /%t/%n-pid /%t/%n-cid
|
|
ExecStartPre=-/usr/bin/{{ container_binary }} rm --storage ceph-mgr-{{ ansible_facts['hostname'] }}
|
|
ExecStartPre=-/usr/bin/mkdir -p /var/log/ceph
|
|
{% else %}
|
|
ExecStartPre=-/usr/bin/{{ container_binary }} stop ceph-mgr-{{ ansible_facts['hostname'] }}
|
|
{% endif %}
|
|
ExecStartPre=-/usr/bin/{{ container_binary }} rm ceph-mgr-{{ ansible_facts['hostname'] }}
|
|
ExecStart=/usr/bin/{{ container_binary }} run --rm --net=host \
|
|
{% if container_binary == 'podman' %}
|
|
-d --log-driver journald --conmon-pidfile /%t/%n-pid --cidfile /%t/%n-cid \
|
|
{% endif %}
|
|
--memory={{ ceph_mgr_docker_memory_limit }} \
|
|
--cpus={{ ceph_mgr_docker_cpu_limit }} \
|
|
-v /var/lib/ceph:/var/lib/ceph:z,rshared \
|
|
-v /etc/ceph:/etc/ceph:z \
|
|
-v /var/run/ceph:/var/run/ceph:z \
|
|
-v /etc/localtime:/etc/localtime:ro \
|
|
-v /var/log/ceph:/var/log/ceph:z \
|
|
-e CLUSTER={{ cluster }} \
|
|
-e CEPH_DAEMON=MGR \
|
|
-e CONTAINER_IMAGE={{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }} \
|
|
-e TCMALLOC_MAX_TOTAL_THREAD_CACHE_BYTES={{ ceph_tcmalloc_max_total_thread_cache }} \
|
|
{{ ceph_mgr_docker_extra_env }} \
|
|
--name=ceph-mgr-{{ ansible_facts['hostname'] }} \
|
|
{{ 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 %}
|
|
ExecStopPost=-/usr/bin/{{ container_binary }} stop ceph-mgr-{{ ansible_facts['hostname'] }}
|
|
{% endif %}
|
|
KillMode=none
|
|
Restart=always
|
|
RestartSec=10s
|
|
TimeoutStartSec=120
|
|
TimeoutStopSec=15
|
|
{% if container_binary == 'podman' %}
|
|
Type=forking
|
|
PIDFile=/%t/%n-pid
|
|
{% endif %}
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|