Skip to content
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

feat: add ceph-mon service to osds hosts firewall #1419

Draft
wants to merge 1 commit into
base: stackhpc/2024.1
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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``.