Version information
This module has been deprecated by its author since Apr 4th 2023.
Start using this module
Documentation
Boundary module
This is the Boundary module.
To use it:
class { 'boundary':
id => 'organisation_id',
apikey => 'apikey',
tags => [ 'these', 'are', 'tags' ]
}
To remove a meter change your include to:
class { 'boundary::delete':
id => 'organisation_id',
apikey => 'apikey',
}
To specify a stand-alone probe you can use the boundary_meter
resource:
boundary_meter { "nameofprobe":
ensure => present,
id => '1234556789',
apikey => 'abcdef123456',
tags => [ "production", "web", "cluster" ],
}
You can also use the proxy_addr
and proxy_port
options to specify a
proxy server if required.
Dashboard Support
It is possible to use this module from Puppet Dashboard (aka Console). To use
the module add boundary
to the list of classes. Then add the boundary
class directly to a node or a group. The following dashboard parameters are
supported:
apikey
id
collector
collector_port
tags
The tags
parameter is an array of tag names to apply to this bprobe
(e.g., [ 'a', 'list', 'of', 'tags' ] ).
Report processor
The module also contains a report processor that can send the results of Puppet runs as Boundary annotations. Reports will only be created for Puppet runs that had changes or failed. To use it:
-
Install puppet-boundary as a module in your Puppet master's module path.
-
Update the
boundary_orgid
andboundary_apikey
variables in theboundary.yaml
file with your Boundary connection details. -
Enable pluginsync and reports on your master and clients in
puppet.conf
[master] report = true reports = boundary pluginsync = true [agent] report = true pluginsync = true
-
Run the Puppet client and sync the report as a plugin
Author
James Turnbull james@puppetlabs.com
The boundary_meter
type and provider is heavily based on work by Joe Williams and Ben Black from Boundary.
Copyright
Puppet Labs 2011-2013
License
Apache 2.0