File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed
etc/kayobe/inventory/group_vars/all Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -344,6 +344,8 @@ should be used in the Kolla Manila configuration e.g.:
344
344
345
345
manila_cephfs_filesystem_name : manila-cephfs
346
346
347
+ .. _RGWs-Ceph :
348
+
347
349
RADOS Gateways
348
350
--------------
349
351
Original file line number Diff line number Diff line change @@ -108,6 +108,9 @@ Storage firewalld Configuration
108
108
# - state: enabled
109
109
storage_firewalld_rules : " {{ stackhpc_firewalld_rules }}"
110
110
111
+ If using RADOS Gateway, you can customise ``stackhpc_ceph_firewalld_radosgw_port `` to match
112
+ the ``rgw_frontend_port `` as documented in :ref: `RGWs-with-Ceph `.
113
+
111
114
Monitoring firewalld Configuration
112
115
----------------------------------
113
116
@@ -234,6 +237,7 @@ The following workaround is needed to prevent VM network traffic from being bloc
234
237
235
238
.. code-block :: yaml
236
239
:caption : ` ` seed_hypervisor.yml``
240
+
237
241
seed_hypervisor_sysctl_parameters :
238
242
# By default this is 1, which causes layer 2 traffic flowing through Linux
239
243
# bridges to pass through iptables. This blocks traffic from VMs (seed, wazuh) to
Original file line number Diff line number Diff line change @@ -211,6 +211,10 @@ stackhpc_compute_firewalld_rules_template:
211
211
###############################################################################
212
212
# Ceph firewalld rules
213
213
214
+ # Port on which radosgw is exposed.
215
+ # See: https://stackhpc-kayobe-config.readthedocs.io/en/stackhpc-2024.1/configuration/cephadm.html#rados-gateways
216
+ stackhpc_ceph_firewalld_radosgw_port: 8100
217
+
214
218
stackhpc_ceph_firewalld_rules_template:
215
219
# Ceph Prometheus exporter
216
220
- rules:
@@ -229,7 +233,7 @@ stackhpc_ceph_firewalld_rules_template:
229
233
- service: ceph-mon
230
234
network: "{{ storage_net_name }}"
231
235
state: "{{ 'enabled' if 'mons' in group_names else 'disabled' }}"
232
- - port: 8100 /tcp
236
+ - port: "{{ stackhpc_ceph_firewalld_radosgw_port }} /tcp"
233
237
network: "{{ storage_net_name }}"
234
238
state: "{{ 'enabled' if 'rgws' in group_names else 'disabled' }}"
235
239
enabled: "{{ 'ceph' in group_names }}"
You can’t perform that action at this time.
0 commit comments