# Eg. If you want to specify for each radosgw node which address the radosgw will bind to you can set it in your **inventory host file** by using 'radosgw_address' variable.
# Preference will go to radosgw_address if both radosgw_address and radosgw_interface are defined.
#radosgw_interface: interface
-#radosgw_address: address
+#radosgw_address: 0.0.0.0
#radosgw_address_block: subnet
#radosgw_keystone_ssl: false # activate this when using keystone PKI keys
# Rados Gateway options
# Eg. If you want to specify for each radosgw node which address the radosgw will bind to you can set it in your **inventory host file** by using 'radosgw_address' variable.
# Preference will go to radosgw_address if both radosgw_address and radosgw_interface are defined.
#radosgw_interface: interface
-#radosgw_address: address
+#radosgw_address: 0.0.0.0
#radosgw_address_block: subnet
#radosgw_keystone_ssl: false # activate this when using keystone PKI keys
# Rados Gateway options
Either radosgw_interface, radosgw_address or radosgw_address_block must
be defined.
"""
- radosgw_address_given = notario_store["radosgw_address"] != "address"
+ radosgw_address_given = notario_store["radosgw_address"] != "0.0.0.0"
radosgw_address_block_given = notario_store["radosgw_address_block"] != "subnet"
radosgw_interface_given = notario_store["radosgw_interface"] != "interface"
# Eg. If you want to specify for each radosgw node which address the radosgw will bind to you can set it in your **inventory host file** by using 'radosgw_address' variable.
# Preference will go to radosgw_address if both radosgw_address and radosgw_interface are defined.
radosgw_interface: interface
-radosgw_address: address
+radosgw_address: 0.0.0.0
radosgw_address_block: subnet
radosgw_keystone_ssl: false # activate this when using keystone PKI keys
# Rados Gateway options
_radosgw_address: "{{ radosgw_address | ipwrap }}"
when:
- radosgw_address is defined
- - radosgw_address != 'address'
+ - radosgw_address != '0.0.0.0'
- block:
- name: set_fact _interface
- ip_version == 'ipv6'
when:
- radosgw_address_block == 'subnet'
- - radosgw_address == 'address'
+ - radosgw_address == '0.0.0.0'
- radosgw_interface != 'interface'