Skip to content

Commit

Permalink
feat: add ceph-mon service to osds hosts firewall
Browse files Browse the repository at this point in the history
  • Loading branch information
jackhodgkiss committed Dec 10, 2024
1 parent 1c5d937 commit c11d1f6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion etc/kayobe/inventory/group_vars/all/firewall
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ stackhpc_ceph_firewalld_rules_template:
state: enabled
- service: ceph-mon
network: "{{ storage_net_name }}"
state: "{{ 'enabled' if 'mons' in group_names else 'disabled' }}"
state: "{{ 'enabled' if ('mons' in group_names or 'osds' in group_names) else 'disabled' }}"
- port: "{{ stackhpc_ceph_firewalld_radosgw_port }}/tcp"
network: "{{ storage_net_name }}"
state: "{{ 'enabled' if 'rgws' in group_names else 'disabled' }}"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
features:
- |
Add `ceph-mon` as a `firewalld` service rule to hosts of `osds`.

0 comments on commit c11d1f6

Please sign in to comment.