Forge Home

xldeploy

Puppet module for xldeploy

8,510 downloads

8,510 latest version

3.5 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.0 (latest)
released Aug 1st 2014

Start using this module

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

Add this module to your Puppetfile:

mod 'Xebia-xldeploy', '1.0.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

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

Manually install this module globally with Puppet module tool:

puppet module install Xebia-xldeploy --version 1.0.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

Xebia/xldeploy — version 1.0.0 Aug 1st 2014

puppet-xldeploy

####Table of Contents

  1. Overview

  2. Module Description - What the module does and why it is useful

  3. Setup - The basics of getting started with puppet-xldeploy

  4. Usage - Configuration options and additional functionality

  5. Reference - An under-the-hood peek at what the module is doing and how

  6. Limitations - OS compatibility, etc.

  7. Development - Guide for contributing to the module

overview

The Xldeploy module enables you to install and manage large XlDeploy enabled infrastructures.

module-description

XlDeploy is kick-ass modular platform independant software deployment system. This module enables you to tie this deployment software into your puppet environment. It can take care of installing xldeploy servers as well as integrate middleware components eslewhere in your infrastructure.

setup

what-puppet-xldeploy-affects:

  • installation/service/configuration files for Xldeploy
  • listened-to ports
  • backend storage filesystem/database
  • xldeploy housekeeping
  • xldeploy repository configuration items
  • xldeploy repository roles/permissions
  • xldeploy repository dictionaries
  • xldeploy cli installation
  • installs compatible java version (optional)

setup-requirements

  • This module makes use of exported resources (optional) if you descide to use this functionallity please configure this in your puppet.conf file on the master
  • This module makes use of the puppetdbquery module to distribute sshkeys across the infrastructure (optional). This functionality depends on puppetdb .

beginning-with-puppet-xldeploy

Basic usage when installing a xldeploy server

class{xldeploy:}

For a more comprehensive setup

class{xldeploy:
    install_java                      => true,
    install_license                   => true,
    install_type                      => 'netinstall'
    download_user                     => 'foobar',
    download_password                 => 'notapassword'
    download_proxy_url                => 'http://some:user@companyproxy.evil.empire:8080'
 }

Basic client setup

class{xldeploy:
    server => false
 }