From: Sébastien Han Date: Thu, 30 Jul 2015 09:25:46 +0000 (+0200) Subject: Expose rgw ports X-Git-Tag: v1.0.0~142^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=ecc92768b99d0728e67a57f87193edcaa073b5c7;p=ceph-ansible.git Expose rgw ports The 'ports' option was missing, so in order to expose a port we need "expose" and "ports" options. Signed-off-by: Sébastien Han --- diff --git a/roles/ceph-rgw/tasks/docker/start_docker_rgw.yml b/roles/ceph-rgw/tasks/docker/start_docker_rgw.yml index d39e9f64c..8dcb094b5 100644 --- a/roles/ceph-rgw/tasks/docker/start_docker_rgw.yml +++ b/roles/ceph-rgw/tasks/docker/start_docker_rgw.yml @@ -4,6 +4,7 @@ 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"