Puppet Class: cloud::storage::rbd::monitor

Defined in:
manifests/storage/rbd/monitor.pp

Overview

Parameters:

  • id (Any) (defaults to: $::uniqueid)
  • mon_addr (Any) (defaults to: $os_params::internal_netif_ip)
  • monitor_secret (Any) (defaults to: $os_params::ceph_mon_secret)


17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# File 'manifests/storage/rbd/monitor.pp', line 17

class cloud::storage::rbd::monitor (
  $id             = $::uniqueid,
  $mon_addr       = $os_params::internal_netif_ip,
  $monitor_secret = $os_params::ceph_mon_secret
) {

  include 'cloud::storage::rbd'

  ceph::mon { $id:
    monitor_secret => $monitor_secret,
    mon_port       => 6789,
    mon_addr       => $mon_addr,
  }

}