
Quick how-to with Ceph Ansible to run multiple Ceph Rados Gateways on the same machine.
For this, we have a dedicated playbook that allows you to allow run the Rados gateway piece. To run simply fill the following variables:
radosgw_civetweb_bind_ip: the IP rgw should be listening onradosgw_civetweb_port: use a different port for each rgwansible_hostname: name of the rgw
And then run:
$ ansible-playbook rgw-standalone.yml \
--extra-vars '{"radosgw_civetweb_bind_ip":"0.0.0.0","radosgw_civetweb_port":"7480","ansible_hostname":"node-test"}'
$ ansible-playbook rgw-standalone.yml \
--extra-vars '{"radosgw_civetweb_bind_ip":"0.0.0.0","radosgw_civetweb_port":"8090","ansible_hostname":"node-test2"}'
I’m mister meeseeks! Look at me!