Version information
This version is compatible with:
- Puppet Enterprise 2025.2.x, 2025.1.x, 2023.8.x, 2023.7.x, 2023.6.x, 2023.5.x, 2023.4.x, 2023.3.x, 2023.2.x, 2023.1.x, 2021.7.x
- Puppet >= 7.24 < 9.0.0
- , ,
Start using this module
Add this module to your Puppetfile:
mod 'worldline-prosa', '0.1.0'
Learn more about managing modules with a PuppetfileDocumentation
Puppet ProSA
Table of Contents
Description
ProSA (Protocol Service Adaptor) is a framework designed to provide a simple and lightweight protocol service adaptor for service-oriented architectures. This Puppet module managed with PDK streamlines the process of creating configurations to manage ProSA in your infrastructure. It is capable of configuring and managing a range of processors. For more information on deploying ProSA, please refer to cargo-prosa.
Setup
What the ProSA module affects
- Service and configuration files for ProSA
- ProSA processor configuration files
Setup Requirements
This module does not install dependencies required for your specific ProSA instance, such as OpenSSL. You will need to install these dependencies separately according to your ProSA setup.
Beginning with prosa
To have Puppet install ProSA with the default parameters, declare the [prosa
][https://forge.puppet.com/modules/worldline/prosa/reference#prosa] class:
class { 'prosa': }
When you declare this class with the default options, the module:
- Installs the ProSA instace binary from the configured bin_repo.
- Generate configuration files in the
conf_dir
. - Creates and starts a ProSA service.
Usage
ProSA base
To set up ProSA, you need to use the [prosa
][https://forge.puppet.com/modules/worldline/prosa/reference#prosa] class.
From this class, you should specify the binary repository to retrieve the ProSA binary. Additionally, observability is configured by default, but you may need to specify parameters based on your particular stack.
class { 'prosa':
bin_repo => 'https://user:password@binary.repo.com/repository/prosa-1.0.0.bin',
telemetry_level => 'info',
observability => {
'metrics' => {
'otlp' => {
'endpoint' => 'http://opentelemetry-collector:4317',
'protocol' => 'Grpc'
},
},
'traces' => {
'otlp' => {
'endpoint' => 'http://opentelemetry-collector:4317',
'protocol' => 'Grpc'
},
'stdout' => {
'level' => 'info',
},
},
'logs' => {
'otlp' => {
'endpoint' => 'http://opentelemetry-collector:4317',
'protocol' => 'Grpc'
},
'stdout' => {
'level' => 'info',
},
},
}
}
With this configuration, ProSA will be installed and ready to accept processors. Configuring processors is the next step.
Configuring Processors
Processors are configured using the prosa::proc
defined type.
You can set them up individually or use prosa::processors
for all:
class { 'prosa::processors':
processors => {
'stub' => {
'proc_settings' => {
'service_names' => ['test'],
},
},
'inj' => {
'proc_settings' => {
'service_name' => 'test',
},
},
}
}
Since processors have different configurations, proc_settings
is provided as a Hash
to accommodate all necessary configuration options.
To determine which configurations to specify, refer to the documentation for the corresponding processor.
Reference
For information on classes, types and functions see the REFERENCE.md
Limitations
Limitations are associated with the ProSA binary generated with cargo-prosa. You need to pay attention to the compiled architecture of your binary. Additionally, if you are using external binaries (e.g., OpenSSL), you'll need to install them independently.
Development
For development guidelines, please follow contributing rules.
If you submit a change to this module, be sure to regenerate the reference documentation as follows:
puppet strings generate --format markdown --out REFERENCE.md
Acceptance tests are runs with litmus
Authors
Worldline
Reference
Table of Contents
Classes
Public Classes
prosa
: Guides the basic setup and installation of ProSA on your system.prosa::processors
: Createsprosa::proc
defined types.
Private Classes
prosa::params
: This class manages ProSA parametersprosa::service
: Installs and configures ProSA service.
Defined types
prosa::proc
: Allows specialised configurations for ProSA processors
Data types
ProSA::TelemetryLevel
: A string that conforms to the ProSATelemetryLevel
syntax.
Classes
prosa
A description of what this class does
Examples
class { 'prosa': }
Parameters
The following parameters are available in the prosa
class:
prosa_name
service_name
bin_repo
bin_path
log_dir
conf_dir
service_enable
service_manage
service_ensure
manage_user
manage_group
user
group
telemetry_level
observability
prosa_name
Data type: String
The name of your ProSA. It take this name to advertise himself. This name is sometime very important for some processors.
Default value: $prosa::params::prosa_name
service_name
Data type: String
Sets the name of the ProSA service.
Default value: $prosa::params::service_name
bin_repo
Data type: Optional[String]
Link to the binary repository where the ProSA binary can be find. See Puppet File source attribute to set this parameter
Default value: $prosa::params::bin_repo
bin_path
Data type: Stdlib::Absolutepath
Sets the path where the ProSA binary will be located.
Default value: '/usr/local/bin/prosa'
log_dir
Data type: Stdlib::Absolutepath
Sets the directory where the ProSA logs files are located.
Default value: '/var/log'
conf_dir
Data type: Stdlib::Absolutepath
Sets the directory where the ProSA configuration files are located.
Default value: $prosa::params::conf_dir
service_enable
Data type: Boolean
Determines whether Puppet enables the ProSA service when the system is booted.
Default value: true
service_manage
Data type: Boolean
Determines whether Puppet manages the ProSA service's state.
Default value: true
service_ensure
Data type: Variant[Stdlib::Ensure::Service, Boolean]
Determines whether Puppet should make sure the service is running.
Valid values are: true
(or running
) or false
(or stopped
).
The false
or stopped
values set the ProSA service resource's ensure
parameter
to false
, which is useful when you want to let the service be managed by another
application.
Default value: 'running'
manage_user
Data type: Boolean
When false
, stops Puppet from creating the user resource.
This is for instances when you have a user, created from another Puppet module, you want
to use to run ProSA. Without this parameter, attempting to use a previously established
user would result in a duplicate resource error.
Default value: true
manage_group
Data type: Boolean
When false
, stops Puppet from creating the group resource.
If you have a group created from another Puppet module that you want to use to run ProSA,
set this to false
. Without this parameter, attempting to use a previously established
group results in a duplicate resource error.
Default value: true
user
Data type: String
Change the user that ProSA uses to run.
To prevent Puppet from managing the user, set the manage_user
parameter to false
.
Default value: $prosa::params::user
group
Data type: String
Changes the group ID that ProSA uses to run.
To prevent Puppet from managing the user, set the manage_user
parameter to false
.
Default value: $prosa::params::group
telemetry_level
Data type: ProSA::TelemetryLevel
Configures the ProSA TelemetryLevel directive which adjusts the verbosity of telemetry messages recorded.
Default value: $prosa::params::telemetry_level
observability
Data type: Hash[String, Hash[String, Hash[String, String]]]
Configures the ProSA Observability directive which configure metrics, traces and logs export.
Default value: $prosa::params::observability
prosa::processors
Creates prosa::proc
defined types.
Examples
To create a ProSA processor stub-1
class { 'prosa::processors':
processors => {
'stub-1' => {
'adaptor_config_path' => undef,
'proc_restart_duration_period' => undef,
'proc_max_restart_period' => undef,
'proc_settings' => {
'service_names' => ['test'],
},
},
},
}
Parameters
The following parameters are available in the prosa::processors
class:
processors
Data type: Hash
A hash, where the key represents the processor name and the value represents a hash of
prosa::proc
defined type's parameters.
Default value: {}
Defined types
prosa::proc
Allows specialised configurations for ProSA processors
Examples
class { 'prosa':
default_vhost => false,
default_ssl_vhost => false,
}
Parameters
The following parameters are available in the prosa::proc
defined type:
adaptor_config_path
adaptor_settings
proc_restart_duration_period
proc_max_restart_period
proc_settings
config_file_mode
adaptor_config_path
Data type: Optional[Stdlib::Absolutepath]
For some ProSA adaptor, they need to have a configuration in addition to processor. If needed you need to specify the path of it.
Default value: undef
adaptor_settings
Data type: Optional[Hash]
All settings of the adaptor if needed.
The keys/values are depending of the adaptor.
The adaptor_config_path
should be defined if it's sets.
Default value: undef
proc_restart_duration_period
Data type: Optional[Integer[0, 86400000]]
Period in milliseconds of processors restarts when an error is detected
Default value: undef
proc_max_restart_period
Data type: Optional[Integer[10, 604800]]
Period in seconds of the maximum wait duration for a processor restart
Default value: undef
proc_settings
Data type: Hash
All settings of the processor. The keys/values are depending of the processor.
Default value: {}
config_file_mode
Data type: Optional[String]
Permissions mode for the processor configuration file The file should be read at least by the ProSA process. But can be reduced to avoid any configuration leak. If not set, the permission will be '0644'.
Default value: undef
Data types
ProSA::TelemetryLevel
A string that conforms to the ProSA TelemetryLevel
syntax.
Different levels can be specified for individual metrics, traces, and logs.
The levels are (in order of decreasing significance):
error
warn
info
debug
trace
off
ProSA accept non case sensitive levels (like this type).
Alias of Pattern[/\A(?i:error|warn|info|debug|trace|off)\Z/]
Dependencies
- puppetlabs/stdlib (>= 4.13.1 < 10.0.0)
GNU LESSER GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/> Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below. 0. Additional Definitions. As used herein, "this License" refers to version 3 of the GNU Lesser General Public License, and the "GNU GPL" refers to version 3 of the GNU General Public License. "The Library" refers to a covered work governed by this License, other than an Application or a Combined Work as defined below. An "Application" is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library. A "Combined Work" is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the "Linked Version". The "Minimal Corresponding Source" for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version. The "Corresponding Application Code" for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work. 1. Exception to Section 3 of the GNU GPL. You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL. 2. Conveying Modified Versions. If you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version: a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy. 3. Object Code Incorporating Material from Library Header Files. The object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following: a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the object code with a copy of the GNU GPL and this license document. 4. Combined Works. You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following: a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the Combined Work with a copy of the GNU GPL and this license document. c) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document. d) Do one of the following: 0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source. 1) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version. e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.) 5. Combined Libraries. You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License. b) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 6. Revised Versions of the GNU Lesser General Public License. The Free Software Foundation may publish revised and/or new versions of the GNU Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation. If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library.