- Description
- Requirements
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the task is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
- Getting help - Some Helpful commands
This module provides the bootstrap task. This allows you to install Puppet agents on un-puppeted hosts via the ssh or winrm transports.
This module is not supported or maintained by Puppet and does not qualify for Puppet Support plans. It's provided without guarantee or warranty and you can use it at your own risk. All bugfixes, updates, and new feature development will come from community contributions.
[tier:community]
This module requires both the bolt
gem on the machine from which you are running bolt commands (the controller node), and a Puppet Enterprise 2017.3 or later master hosting agent repositories.
Linux machines receiving task requests must have bash for now. Windows machines must have PowerShell. (See Limitations for more info.)
To run the bootstrap task, use the bolt command, specifying the PE master from which the Puppet agent package should be installed and to which the agent should submit its certificate for signing.
On the command line:
- For Linux, run
bolt task run bootstrap::linux master=<master's fqdn> --nodes x,y,z --modulepath /path/to/modules
- For Windows, run
bolt task run bootstrap::windows master=<master's fqdn> --nodes x,y,z --modulepath /path/to/modules
For all advanced examples below, simply replacebootstrap::linux
bybootstrap::windows
to perform the action on Windows
Optionally to validate the connection during the bootstrap process, specify the puppet master's CA cert by adding the cacert_content option:
bolt task run bootstrap::linux master=<master's fqdn> cacert_content="$(cat /etc/puppetlabs/puppet/ssl/certs/ca.pem)" --nodes x,y,z --modulepath /path/to/modules
Optionally to install the Puppet agent with a certname other than the fqdn of the target node, specify the custom certname:
bolt task run bootstrap::linux master=<master's fqdn> certname=<custom certname> --nodes x,y,z --modulepath /path/to/modules
Optionally to install the puppet-agent with a specific environment other than the default environment production
, specify the custom environment:
bolt task run bootstrap::linux master=<master's fqdn> environment=<custom environment> --nodes x,y,z --modulepath /path/to/modules
Optionally to install the puppet-agent with noop:
bolt task run bootstrap::linux master=<master's fqdn> set_noop=true--nodes x,y,z --modulepath /path/to/modules
Optionally to install the Puppet agent with custom dns alt names, specify the custom dns alt names:
bolt task run bootstrap::linux master=<master's fqdn> dns_alt_names=<comma-separated list of alt names for the node> --nodes x,y,z --modulepath /path/to/modules
(see Compile master installation documentation for more info).
You can also run tasks in the PE console. See PE task documentation for complete information.
Optionally to install the Puppet agent and adding a setting to puppet.conf and including it in the custom_attributes section of csr_attributes.yaml: bolt task run bootstrap master=<master's fqdn> custom_attribute='["<key>=<value>"]' --nodes x,y,z --modulepath /path/to/modules
Optionally to install the Puppet agent and adding a setting to puppet.conf and including it in the extension_requests section of csr_attributes.yaml: bolt task run bootstrap master=<master's fqdn> extension_request=key='["<extension>=<value>"]' --nodes x,y,z --modulepath /path/to/modules
For detailed reference information, see the REFERENCE.md
The bootstrap task currently installs the agent via the Puppet Enterprise package management tools, and FOSS repository support will be added later. See the Puppet Enterprise documentation for more information.
For an extensive list of supported operating systems, see metadata.json
The bootstrap task is tested to work with Windows Management Framework >= v3.0+ and .NET >= v4.6 on the supported Windows operating systems.
Acceptance tests for this module leverage puppet_litmus. To run the acceptance tests follow the instructions here. You can also find a tutorial and walkthrough of using Litmus and the PDK on YouTube.
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
To display help for the bootstrap task, run puppet task show bootstrap::linux
or puppet task show bootstrap::windows
To show help for the task CLI, run puppet task run --help
or bolt task run --help