[Unit] Description=Ceph Manager PartOf=ceph-mgr.target {% if container_binary == 'docker' %} After=docker.service network-online.target local-fs.target time-sync.target Requires=docker.service {% else %} After=network-online.target local-fs.target time-sync.target {% endif %} Wants=network-online.target local-fs.target time-sync.target [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 %} --pids-limit={{ 0 if container_binary == 'podman' else -1 }} \ --security-opt label=disable \ --memory={{ ceph_mgr_docker_memory_limit }} \ --cpus={{ ceph_mgr_docker_cpu_limit }} \ {% for v in ceph_common_container_params['volumes'] %} -v {{ v }} \ {% endfor %} -v /var/lib/ceph/mgr:/var/lib/ceph/mgr:z,rshared \ -v /var/lib/ceph/bootstrap-mgr:/var/lib/ceph/bootstrap-mgr:z \ {% for k, v in ceph_common_container_params['envs'].items() %} -e {{ k }}={{ v }} \ {% endfor %} {{ ceph_mgr_docker_extra_env }} \ --name=ceph-mgr-{{ ansible_facts['hostname'] }} \ --entrypoint=/usr/bin/ceph-mgr \ {{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }} \ {% for arg in ceph_common_container_params['args'] %} {{ arg }} \ {% endfor %} -f \ -i {{ ansible_facts['hostname'] }} {% 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=ceph.target