Forge Home

bolt

Install puppetlabs bolt with ruby gems and supports a hack that allows to use GSS-API with SSH in bolt.

10,885 downloads

10,679 latest version

5.0 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 0.2.0 (latest)
  • 0.1.0
released Oct 12th 2017
This version is compatible with:
  • Puppet Enterprise 2018.1.x, 2017.3.x, 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
  • Puppet >= 4.0.0 < 6.0.0
  • , , , , , ,

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'ccin2p3-bolt', '0.2.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add ccin2p3-bolt
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install ccin2p3-bolt --version 0.2.0

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

ccin2p3/bolt — version 0.2.0 Oct 12th 2017

PuppetLabs bolt

What this module do

Install puppetlabs bolt with ruby gems, using (by default) the Puppet ruby build.

It also supports a hack that allows to use GSS-API with SSH in bolt.

This is currently required and the bug can be followed in this issue.

Usage

Install bolt without any hack

include bolt

Install bolt and activate the ugly SSH GSS-API hack

class { '::bolt':
  hack_bolt_to_allow_ssh_gssapi => true
}

If you know what you're doing, you can also modify the auth_methods passed to Net::SSH like this:

class { '::bolt':
  hack_bolt_to_allow_ssh_gssapi            => true,
  explicitly_specify_bolt_ssh_auth_methods => true,
  bolt_ssh_auth_methods                    => ['gssapi-with-mic', 'publickey', 'password', 'keyboard-interactive']
}

Hiera works as well.

If you want to use system ruby instead of puppet ruby, you can set bolt::provider: gem. (Default is puppet_gem.)

Support / Limitations

This module is not intended to be supported on a long term. We know that this is an ugly hack and we plan to drop this module as soon as we can.

You can still fill an issue or submit pull requests if you'd like to share !

Contributor

  • Remi Ferrand for IN2P3 Computing Centre, CNRS
  • Tim Skirvin for Fermi National Accelerator Laboratory