Forge Home

udeploy

Module installs UrbanCode uDeploy agent based on provided parameters.

11,177 downloads

10,797 latest version

1.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.

Support the Puppet Community by contributing to this module

You are welcome to contribute to this module by suggesting new features, currency updates, or fixes. Every contribution is valuable to help ensure that the module remains compatible with the latest Puppet versions and continues to meet community needs. Complete the following steps:

  1. Review the module’s contribution guidelines and any licenses. Ensure that your planned contribution aligns with the author’s standards and any legal requirements.
  2. Fork the repository on GitHub, make changes on a branch of your fork, and submit a pull request. The pull request must clearly document your proposed change.

For questions about updating the module, contact the module’s author.

Version information

  • 1.0.1 (latest)
  • 1.0.0
released Oct 26th 2012

Start using this module

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

Add this module to your Puppetfile:

mod 'urbancode-udeploy', '1.0.1'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

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

Manually install this module globally with Puppet module tool:

puppet module install urbancode-udeploy --version 1.0.1

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
Tags: agent, udeploy

Documentation

urbancode/udeploy — version 1.0.1 Oct 26th 2012

uDeploy agent module for Puppet

This module manages a uDeploy agent. uDeploy agents are needed on uDeploy target boxes.

Description

The uDeploy installation requires Java 1.6.

Usage

udeploy::agent::install

Installs the uDeploy agent.

class { 'udeploy::agent::install': }

udeploy::agent::install::with_java

Installs a JDK and the uDeploy agent. Here is the minimum set of information that needs to be specified:

class { 'udeploy::agent::install':
    jdk_artifact_filename: ""
}

Parameters

udeploy::agent::install: [ud_artifact_filename] - udeploy zip to be installed [destination_dir] - destination directory where uDeploy will be installed [server_host] - uDeploy server hostname [agent_port] - port to which uDeploy agent will connect [agent_user] - user name under uDeploy agent will be running in operation system [agent_group] - group name under uDeploy agent will be running in operation system [start_service] - true if we need uDeploy agent is running as daemon and started [agent_name] - agent name

udeploy::agent::install::with_java: [java_artifact_filename] - java binary name (JRE or JDK) to be installed (should be rpm.bin from Oracle) [ud_artifact_filename] - udeploy zip to be installed [destination_dir] - destination directory where uDeploy will be installed [server_host] - uDeploy server hostname [agent_port] - port to which uDeploy agent will connect [agent_user] - user name under uDeploy agent will be running in operation system [agent_group] - group name under uDeploy agent will be running in operation system [start_service] - true if we need uDeploy agent is running as daemon and started [agent_name] - agent name

Other examples

class { 'udeploy::agent::install::with_java':
    java_artifact_filename => 'jre-6u37-linux-i586-rpm.bin',
    ud_artifact_filename => 'udeploy-agent-4.7.2.290425.zip',
    start_service => true
}

class { 'udeploy::agent::install':
    server_host => 'udeploy2.demo.urbancode.com',
    start_service => true,
    agent_name => 'my-agent-name'
}