2015-01-21 01:43:47 +08:00
|
|
|
---
|
2015-06-24 21:51:54 +08:00
|
|
|
- name: set config and keys paths
|
|
|
|
set_fact:
|
|
|
|
ceph_config_keys:
|
|
|
|
- /etc/ceph/ceph.client.admin.keyring
|
|
|
|
- /etc/ceph/ceph.conf
|
|
|
|
- /etc/ceph/monmap
|
|
|
|
- /etc/ceph/ceph.mon.keyring
|
|
|
|
- /var/lib/ceph/bootstrap-rgw/ceph.keyring
|
|
|
|
|
|
|
|
- name: install docker-py
|
2015-06-26 06:26:03 +08:00
|
|
|
pip: >
|
|
|
|
name=docker-py
|
|
|
|
version=1.1.0 # https://github.com/ansible/ansible-modules-core/issues/1227
|
2015-06-24 21:51:54 +08:00
|
|
|
|
|
|
|
- name: stat for Ceph config and keys
|
|
|
|
stat: >
|
|
|
|
path={{ item }}
|
|
|
|
with_items: ceph_config_keys
|
2015-06-26 06:26:03 +08:00
|
|
|
ignore_errors: true
|
2015-06-24 21:51:54 +08:00
|
|
|
register: statconfig
|
|
|
|
|
|
|
|
- name: try to fetch Ceph config and keys
|
2015-01-21 01:43:47 +08:00
|
|
|
copy: >
|
2015-06-24 21:51:54 +08:00
|
|
|
src=fetch/docker_mon_files/"{{ item }}"
|
2015-01-21 01:43:47 +08:00
|
|
|
dest=/etc/ceph/
|
|
|
|
owner=root
|
|
|
|
group=root
|
|
|
|
mode=600
|
2015-06-24 21:51:54 +08:00
|
|
|
with_together:
|
|
|
|
- ceph_config_keys
|
|
|
|
- statconfig.results
|
|
|
|
when: item.1.stat.exists == False
|
2015-01-21 01:43:47 +08:00
|
|
|
|
2015-06-24 21:51:54 +08:00
|
|
|
- name: run the rados gateway docker image
|
2015-01-21 01:43:47 +08:00
|
|
|
docker: >
|
|
|
|
image="{{ ceph_rgw_docker_username }}/{{ ceph_rgw_docker_imagename }}"
|
2015-06-24 21:51:54 +08:00
|
|
|
name=ceph-{{ ansible_hostname }}-rgw
|
|
|
|
expose={{ ceph_rgw_civetweb_port }}
|
2015-01-21 01:43:47 +08:00
|
|
|
state=running
|
2015-06-24 21:51:54 +08:00
|
|
|
env="RGW_CIVETWEB_PORT={{ ceph_rgw_civetweb_port }},CEPH_DAEMON=RGW"
|
2015-01-21 01:43:47 +08:00
|
|
|
volumes="/var/lib/ceph:/var/lib/ceph,/etc/ceph:/etc/ceph"
|
|
|
|
|
2015-05-16 00:27:41 +08:00
|
|
|
- name: ensure ceph_rgw service is running
|
2015-01-21 01:43:47 +08:00
|
|
|
docker: >
|
|
|
|
image="{{ ceph_rgw_docker_username }}/{{ ceph_rgw_docker_imagename }}"
|
2015-06-24 21:51:54 +08:00
|
|
|
name="ceph-{{ ansible_hostname }}-rgw"
|
2015-01-21 01:43:47 +08:00
|
|
|
detach=yes
|
|
|
|
state=running
|