New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rgw: support 1+ rgw instance in radosgw_frontend_port
#5613
Conversation
| with_sequence: start=0 end={{ radosgw_num_instances|int - 1 }} | ||
| when: | ||
| - inventory_hostname in groups.get(rgw_group_name, []) | ||
| - rgw_instances is undefined |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this has to be checked in detail but this variable was never arriving undefined at this point of the playbook.
did you manually set rgw_instances in your host_vars ?
you might want to add |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@rmahique could you squash your commit please? thanks!
dd85a09
to
21fbc0c
Compare
Change the radosgw_frontend_port to take in account more than 1 RGW instance, in it's original form `radosgw_frontend_port: radosgw_frontend_port | int`, it configured the 8080 port to all instances, with the following modification `radosgw_frontend_port: radosgw_frontend_port | int + item|int` we increase in 1 the port count. Co-authored-by: Daniel Parkes <dparkes@redhat.com> Signed-off-by: raul <rmahique@redhat.com>
21fbc0c
to
f42d3e9
Compare
radosgw_frontend_port
|
jenkins test centos-non_container-all_daemons |
|
jenkins test centos-container-all_daemons |
|
@rmahique forget about my last comment, i've squashed them for you |
radosgw_frontend_portradosgw_frontend_port
radosgw_frontend_portradosgw_frontend_port
…nstance,
Commit on behalf of Daniel Parkes
Change the radosgw_frontend_port to take in account more than 1 RGW instance, in it’s original form
'radosgw_frontend_port': radosgw_frontend_port | int, it configured the 8080 port to all instances, with the following modification 'radosgw_frontend_port': radosgw_frontend_port | int + item|int we increase in 1 the port count.Signed-off-by: raul rmahique@redhat.com