mirror of https://github.com/ceph/ceph-ansible.git
67 lines
2.4 KiB
Django/Jinja
67 lines
2.4 KiB
Django/Jinja
[Unit]
|
|
Description=Ceph Monitor
|
|
PartOf=ceph-mon.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-mon-%i
|
|
ExecStartPre=-/usr/bin/mkdir -p /var/log/ceph
|
|
{% else %}
|
|
ExecStartPre=-/usr/bin/{{ container_binary }} stop ceph-mon-%i
|
|
{% endif %}
|
|
ExecStartPre=-/usr/bin/{{ container_binary }} rm ceph-mon-%i
|
|
ExecStartPre=/bin/sh -c '"$(command -v mkdir)" -p /etc/ceph /var/lib/ceph/mon'
|
|
ExecStart=/usr/bin/{{ container_binary }} run --rm --name ceph-mon-%i \
|
|
{% 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 }} \
|
|
--memory={{ ceph_mon_docker_memory_limit }} \
|
|
--cpus={{ ceph_mon_docker_cpu_limit }} \
|
|
--security-opt label=disable \
|
|
{% for v in ceph_common_container_params['volumes'] + ceph_mon_container_params['volumes'] | default([]) %}
|
|
-v {{ v }} \
|
|
{% endfor %}
|
|
{% if ansible_facts['os_family'] == 'RedHat' -%}
|
|
-v /etc/pki/ca-trust/extracted:/etc/pki/ca-trust/extracted \
|
|
{% endif -%}
|
|
{% if mon_docker_privileged | bool -%}
|
|
--privileged \
|
|
{% endif -%}
|
|
{% if mon_docker_net_host | bool -%}
|
|
--net=host \
|
|
{% endif -%}
|
|
{% for k, v in (ceph_common_container_params['envs'] | combine(ceph_mon_container_params['envs'] | default({}))).items() %}
|
|
-e {{ k }}={{ v }} \
|
|
{% endfor %}
|
|
--entrypoint=/usr/bin/ceph-mon \
|
|
{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }} \
|
|
{{ (ceph_common_container_params['args'] + ceph_mon_container_params['args'] | default([])) | join(' ') }}
|
|
{% 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-mon-%i
|
|
{% endif %}
|
|
ExecStopPost=-/bin/rm -f /var/run/ceph/{{ cluster }}-mon.{{ monitor_name }}.asok
|
|
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
|