2016-01-28 03:50:05 +08:00
|
|
|
[Unit]
|
|
|
|
Description=Ceph Monitor
|
|
|
|
After=docker.service
|
|
|
|
|
|
|
|
[Service]
|
2016-03-16 00:32:17 +08:00
|
|
|
EnvironmentFile=-/etc/environment
|
2016-02-10 01:35:41 +08:00
|
|
|
ExecStartPre=-/usr/bin/docker rm %i
|
2016-01-28 03:50:05 +08:00
|
|
|
ExecStartPre=/usr/bin/mkdir -p /etc/ceph /var/lib/ceph/mon
|
2016-03-16 00:32:17 +08:00
|
|
|
ExecStart=/usr/bin/docker run --rm --name %i --net=host \
|
|
|
|
{% if not mon_containerized_deployment_with_kv -%}
|
2016-01-28 03:50:05 +08:00
|
|
|
-v /var/lib/ceph:/var/lib/ceph \
|
|
|
|
-v /etc/ceph:/etc/ceph \
|
2016-03-16 00:32:17 +08:00
|
|
|
{% else -%}
|
|
|
|
-e KV_TYPE={{kv_type}} \
|
|
|
|
-e KV_IP={{kv_endpoint}}\
|
2016-06-28 20:02:00 +08:00
|
|
|
-e KV_PORT={{kv_port}} \
|
2016-03-16 00:32:17 +08:00
|
|
|
{% endif -%}
|
2016-07-28 22:42:19 +08:00
|
|
|
-v /etc/localtime:/etc/localtime:ro \
|
2016-03-31 22:39:02 +08:00
|
|
|
{% if mon_docker_privileged -%}
|
2016-01-28 03:50:05 +08:00
|
|
|
--privileged \
|
2016-03-31 22:39:02 +08:00
|
|
|
{% endif -%}
|
|
|
|
{% if mon_docker_net_host -%}
|
|
|
|
--net=host \
|
|
|
|
{% endif -%}
|
2016-01-28 03:50:05 +08:00
|
|
|
-e CEPH_DAEMON=MON \
|
|
|
|
-e MON_IP={{ hostvars[inventory_hostname]['ansible_' + ceph_mon_docker_interface]['ipv4']['address'] }} \
|
|
|
|
-e CEPH_PUBLIC_NETWORK={{ ceph_mon_docker_subnet }} \
|
|
|
|
-e MON_NAME={{ ansible_hostname }} \
|
2016-07-09 09:38:13 +08:00
|
|
|
{{ ceph_mon_docker_username }}/{{ ceph_mon_docker_imagename }}:{{ ceph_mon_docker_image_tag }}
|
2016-02-10 01:35:41 +08:00
|
|
|
ExecStopPost=-/usr/bin/docker stop %i
|
2016-01-28 03:50:05 +08:00
|
|
|
Restart=always
|
|
|
|
RestartSec=10s
|
|
|
|
TimeoutStartSec=120
|
|
|
|
TimeoutStopSec=15
|
|
|
|
|
|
|
|
[Install]
|
2016-03-31 22:39:02 +08:00
|
|
|
WantedBy=multi-user.target
|