Forge Home

code_deploy

A Puppet Task for Puppet Code Deployments

9,846 downloads

5,210 latest version

4.6 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

  • 1.0.4 (latest)
  • 1.0.3
  • 1.0.2
  • 1.0.1
  • 1.0.0 (deleted)
released Dec 11th 2018
This version is compatible with:
  • Puppet Enterprise 2018.1.x, 2017.3.x
  • Puppet >= 5.0.0 < 6.0.0
  • RedHat, CentOS, OracleLinux, Scientific, SLES, Ubuntu
Tasks:
  • code_deploy

Start using this module

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

Add this module to your Puppetfile:

mod 'tspy-code_deploy', '1.0.4'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

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

Manually install this module globally with Puppet module tool:

puppet module install tspy-code_deploy --version 1.0.4

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

tspy/code_deploy — version 1.0.4 Dec 11th 2018

Puppet Forge

Puppet Code Deploy

This module adds a Task for running puppet code deploy 'environment'.

Requirements

This module is compatible with Puppet Enterprise.

Usage

Puppet Enterprise Tasks

With Puppet Enterprise 2017.3 or higher, you can run this task from the console or the command line.

Here's a command line example where we deploy the production code enviroment on the Puppetmaster, master.corp.net:

[tommy@workstation]$ puppet task run code_deploy environments=production -n master.corp.net

Starting job ...
New job ID: 66
Nodes: 1

Started on master.inf.puppet.vm ...
Finished on node master.inf.puppet.vm
  production :
    result : Successfully deployed the production environment

Job completed. 1/1 nodes succeeded.
Duration: 15 sec

Here's a command line example where we deploy the production and dev code enviroment on the Puppetmaster, master.corp.net:

puppet task run code_deploy environments=production,dev -n master.inf.puppet.vm
Starting job ...
New job ID: 69
Nodes: 1

Started on master.inf.puppet.vm ...
Finished on node master.inf.puppet.vm
  dev :
    result : Successfully deployed the dev environment

  production :
    result : Successfully deployed the production environment

Job completed. 1/1 nodes succeeded.
Duration: 30 sec

Parameters

  • environments: A comma-separated list of Puppet environments. Note: The --all feature is not allowed.