xldeploy

contributions requested
Puppet module for xldeploy

8,616 downloads

8,616 latest version

3.5 quality score

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