root / manifests / rules / ceph_mon.pp @ 02d6e88a
Historique | Voir | Annoter | Télécharger (395 octets)
1 | 09cba182 | Steve Traylen | # @summary |
---|---|---|---|
2 | # Ceph is a distributed object store and file system. |
||
3 | # Enable this option to support Ceph's Monitor Daemon. |
||
4 | # @param ports specify ports for ceph service |
||
5 | 11bf7237 | Steve Traylen | class nftables::rules::ceph_mon ( |
6 | 94a80621 | Steve Traylen | Array[Stdlib::Port,1] $ports = [3300, 6789], |
7 | 11bf7237 | Steve Traylen | ) { |
8 | nftables::rule { |
||
9 | bbc93ede | Dan van der Ster | 'default_in-ceph_mon': |
10 | content => "tcp dport {${$ports.join(', ')}} accept comment \"Accept Ceph MON\"", |
||
11 | } |
||
12 | } |