Forge Home

talend_job_server

This module is used to install Talend Job Server, as well as install a service using supervisord.

7,444 downloads

7,129 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

  • 0.2.1 (latest)
  • 0.2.0
  • 0.1.0
released Nov 24th 2016
This version is compatible with:
  • ,

Start using this module

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

Add this module to your Puppetfile:

mod 'williamtsoi-talend_job_server', '0.2.1'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

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

Manually install this module globally with Puppet module tool:

puppet module install williamtsoi-talend_job_server --version 0.2.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

Documentation

williamtsoi/talend_job_server — version 0.2.1 Nov 24th 2016

Build Status

Overview

This module is used to install Talend Job Server, as well as install a service using supervisord.

Module Description

This module will:

  • Download and extract a copy of Talend Job Server from a given URL
  • Manage and create (if required) a user and group used to run the Talend Job Server service
  • Install supervisord, used to run the Talend Job Server process
  • Configure the Talend Job Server as a program within supervisord
  • Start the Talend Job Server service

Usage

Basic (minimal) setup

class { '::talend_job_server':
  talend_job_server_url => 'http://foo.com/Talend-Job-Server-20160704_1411-V6.2.1.zip',
}

Custom Setup with all parameters

class { '::talend_job_server':
  talend_job_server_url       => undef,
  talend_job_server_home      => '/opt/talend_job_server',
  talend_job_server_subfolder => 'Talend-JobServer-20160704_1411-V6.2.1',
  talend_job_server_user      => 'talenduser',
  talend_job_server_group     => 'talendgroup',
  manage_user                 => true,
  manage_group                => true,
  use_ssl                     => true,
  disabled_cipher_suites      => 'TLS_KRB5_WITH_3DES_EDE_CBC_MD5,TLS_KRB5_WITH_RC4_128_SHA,SSL_DH_anon_WITH_DES,CBC_SHA,TLS_DH_anon_WITH_AES_128_CBC_SHA,SSL_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA,SSL_RSA_EXPORT_WITH_RC4_40_MD5,SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA,TLS_KRB5_WITH_3DES_EDE_CBC_SHA,SSL_RSA_WITH_RC4_128_SHA,TLS_KRB5_WITH_DES_CBC_MD5,TLS_KRB5_EXPORT_WITH_RC4_40_MD5,TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5,SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA,TLS_KRB5_EXPORT_WITH_RC4_40_SHA,SSL_DH_anon_EXPORT_WITH_RC4_40_MD5,SSL_DHE_DSS_WITH_DES_CBC_SHA,TLS_KRB5_WITH_DES_CBC_SHA,SSL_RSA_WITH_NULL_MD5,SSL_DH_anon_WITH_3DES_EDE_CBC_SHA,SSL_DHE_RSA_WITH_DES_CBC_SHA,TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA,SSL_DH_anon_EXPORT_WITH_DES40_CBC_SHA,SSL_RSA_WITH_NULL_SHA,TLS_KRB5_WITH_RC4_128_MD5,SSL_RSA_WITH_DES_CBC_SHA,TLS_EMPTY_RENEGOTIATION_INFO_SCSV,SSL_RSA_EXPORT_WITH_DES40_CBC_SHA,SSL_DH_anon_WITH_RC4_128_MD5,SSL_RSA_WITH_RC4_128_MD5,SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA,SSL_RSA_WITH_3DES_EDE_CBC_SHA',
  username                    => 'talendjobserver',
  password                    => 'password',
}

Limitations

TODO: This is where you list OS compatibility, version compatibility, etc.

Development

TODO: Since your module is awesome, other users will want to play with it. Let them know what the ground rules for contributing are.