mirror of https://github.com/ceph/ceph-ansible.git
11 lines
430 B
YAML
11 lines
430 B
YAML
---
|
|
- name: run the rados gateway docker image
|
|
docker:
|
|
image: "{{ ceph_rgw_docker_username }}/{{ ceph_rgw_docker_imagename }}"
|
|
name: ceph-{{ ansible_hostname }}-rgw
|
|
expose: "{{ ceph_rgw_civetweb_port }}"
|
|
ports: "{{ ceph_rgw_civetweb_port }}:{{ ceph_rgw_civetweb_port }}"
|
|
state: running
|
|
env: "CEPH_DAEMON=RGW,{{ ceph_rgw_docker_extra_env }}"
|
|
volumes: "/var/lib/ceph:/var/lib/ceph,/etc/ceph:/etc/ceph"
|