Giter Site home page Giter Site logo

nerc-ceh / puppet-jira Goto Github PK

View Code? Open in Web Editor NEW

This project forked from voxpupuli/puppet-jira

1.0 4.0 0.0 440 KB

Atlassian JIRA Puppet Module

Home Page: https://forge.puppet.com/puppet/jira

License: Apache License 2.0

Ruby 51.11% Puppet 26.53% Shell 3.07% HTML 19.29%

puppet-jira's Introduction

JIRA module for Puppet

Build Status Code Coverage Puppet Forge Puppet Forge - downloads Puppet Forge - endorsement Puppet Forge - scores

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 JIRA
  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
  8. Testing - How to test the JIRA module
  9. Contributors

Overview

This module allows you to install, upgrade and manage Atlassian JIRA.

Module Description

This module installs/upgrades Atlassian's Enterprise Issue Tracking and project management tool. The JIRA module also manages the JIRA configuration files with Puppet.

Setup

JIRA Prerequisites

  • JIRA requires a Java Developers Kit (JDK) or Java Run-time Environment (JRE) platform to be installed on your server's operating system. Oracle JDK / JRE (formerly Sun JDK / JRE) versions 7 and 8 are currently supported by Atlassian.

  • JIRA requires a relational database to store its issue data. This module currently supports PostgreSQL 8.4 to 9.x and MySQL 5.x and Oracle 11g and Microsoft SQL Server 2008 & 2012. We suggest using puppetlabs-postgresql/puppetlabs-mysql modules to configure/manage the database. The module uses PostgreSQL as a default.

  • Whilst not required, for production use we recommend using nginx/apache as a reverse proxy to JIRA. We suggest using the jfryman/nginx puppet module.

What JIRA affects

If installing to an existing JIRA instance, it is your responsibility to backup your database. We also recommend that you backup your JIRA home directory and that you align your current JIRA version with the version you intend to use with puppet JIRA module.

You must have your database setup with the account user that JIRA will use. This can be done using the puppetlabs-postgresql and puppetlabs-mysql modules.

When using this module to upgrade JIRA, please make sure you have a database/JIRA home backup.

When using MySQL, We call the jira::mysql_connector class to install the MySQL java connector directory from mysql.com as per Atlassian's documented recommendations.

Beginning with JIRA

This puppet module will automatically download the JIRA zip from Atlassian and extracts it into /opt/jira/atlassian-jira-$version. The default JIRA home is /home/jira.

If you would prefer to use Hiera then see jira.yaml file for available options.

Basic example

  class { 'jira':
    javahome    => '/opt/java',
  }

Upgrades

Upgrades to JIRA

Jira can be upgraded by incrementing this version number. This will STOP the running instance of Jira and attempt to upgrade. You should take caution when doing large version upgrades. Always backup your database and your home directory. The jira::facts class is required for upgrades.

  class { 'jira':
    javahome    => '/opt/java',
    version     => '6.3.7',
  }
  class { 'jira::facts': }
Upgrades to the JIRA puppet Module

puppet-archive is the default module for deploying the JIRA binaries.

  class { 'jira':
    javahome      => '/opt/java',
    deploy_module => 'archive',
  }

Reference

Classes

Public Classes

  • jira: Main class, manages the installation and configuration of JIRA
  • jira::facts: Enable external facts for running instance of JIRA. This class is required to handle upgrades of jira. As it is an external fact, we chose not to enable it by default.

Private Classes

  • jira::install: Installs JIRA binaries
  • jira::config: Modifies jira/tomcat configuration files
  • jira::service: Manage the JIRA service.
  • jira::mysql_connector: Install/Manage the MySQL Java connector

Parameters

JIRA parameters

$version

Specifies the version of JIRA to install, defaults to latest available at time of module upload to the forge. It is recommended to pin the version number to avoid unnecessary upgrades of JIRA.

$product

Product name, defaults to jira

$format

The default file format of the JIRA install file, defaults to tar.gz

$installdir

The directory to install to, defaults to '/opt/jira'

$homedir

The default home directory of JIRA, defaults to '/home/jira'

$user

The user to run/install JIRA as, defaults to 'jira'

$group

The group to run/install JIRA as, defaults to 'jira'

$uid

The uid of the JIRA user, defaults to next available (undef)

$gid

The gid of the JIRA user, defaults to next available (undef)

$shell

The shell of the JIRA user, defaults to '/bin/true'

$enable_secure_admin_sessions

Enables or disables JIRA Secure Administrator Sessions, defaults to true

$jira_config_properties = {}

Override default values for advanced configuration. Default values are defined in jpm.xml, see https://confluence.atlassian.com/jira/advanced-jira-configuration-126006.html for details. Specify key/value pairs as a hash. Example:

jira_config_properties => {
      'ops.bar.group.size.opsbar-transitions' => '4',
}
$datacenter

Enables or disables clustering, defaults to false

$shared_homedir

The directory of the shared home directory, defaults to undef. When clustering is enabled, this parameter is required.

Database parameters

$db

Which database to use for JIRA, defaults to 'postgresql'. Can be 'postgresql', 'mysql', 'oracle' or 'sqlserver'.

$dbuser

The default database user for JIRA, defaults to 'jiraadm'

$dbpassword

The password for the database user, defaults to 'mypassword'

$dbserver

The hostname of the database server, defaults to 'localhost'

$dbname

The name of the database, defaults to 'jira'. If using oracle this should be the SID.

$dbport

The port of the database, defaults to '5432'. MySQL runs on '3306'. Oracle runs on '1521'. SQL Server runs on '1433'.

$dbdriver

The database driver to use, defaults to 'org.postgresql.Driver'. Can be 'org.postgresql.Driver', 'com.mysql.jdbc.Driver', 'oracle.jdbc.OracleDriver' or 'net.sourceforge.jtds.jdbc.Driver'.

$dbtype

Database type, defaults to 'postgres72'. Can be 'postgres72', 'mysql', 'oracle10g', or 'mssql'. Atlassian only supports Oracle 11g, even so this value should be as documented here.

$dbschema

Set the schema

The Default value is 'public'

$poolsize

The connection pool size to the database, defaults to 20

$dburl

This parameter is not required nor do we recommend setting it. However it can be used to customize the database connection string.

$enable_connection_pooling

Configure database settings if you are pooling connections, defaults to 'false'

$pool_min_size

defaults to 20

$pool_max_size

defaults to 20

$pool_max_wait

defaults to 30000

$validation_query

defaults to undef

$min_evictable_idle_time

defaults to 60000

$time_between_eviction_runs

defaults to undef

$pool_max_idle

defaults to 20

$pool_remove_abandoned

defaults to true

$pool_remove_abandoned_timeout

defaults to 300

$pool_test_while_idle

defaults to true

$pool_test_on_borrow

defaults to false

MySQL Java Connector parameters

mysql_connector_manage

Manage the MySQL Java Connector with the JIRA module, defaults to 'true'

mysql_connector_version

Specifies the version of MySQL Java Connector you would like installed. Defaults to '5.1.34',

$mysql_connector_product

Product name, defaults to 'mysql-connector-java'

$mysql_connector_format

The default file format of the MySQL Java Connector install file, defaults to tar.gz

$mysql_connector_install

Installation directory of the MySQL connector. Defaults to '/opt/MySQL-connector'

$mysql_connector_url

The URL used to download the MySQL Java Connector installation file. Defaults to http://cdn.mysql.com/Downloads/Connector-J

JVM Java parameters

$javahome

The JAVA_HOME directory, defaults to undef. This is a required parameter

$jvm_xms

The initial memory allocation pool for a Java Virtual Machine. defaults to '256m'

$jvm_xmx

Maximum memory allocation pool for a Java Virtual Machine. defaults to '1024m'

$jvm_permgen

Increase max permgen size for a Java Virtual Machine. defaults to '256m'

$jvm_optional

defaults to '-XX:-HeapDumpOnOutOfMemoryError'

$java_opts

defaults to ''

$catalina_opts

defaults to ''

Miscellaneous parameters

$download_url

The URL used to download the JIRA installation file. Defaults to https://downloads.atlassian.com/software/jira/downloads/

checksum

The md5 checksum of the archive file. Only supported with deploy_module => archive. Defaults to 'undef'

$deploy_module

Module to use for downloading and extracting archive file. Supports puppet-archive and puppet-staging. Defaults to 'archive'. Archive supports md5 hash checking and Staging supports S3 buckets.

$service_manage

Manage the JIRA service, defaults to 'true'

$service_ensure

Manage the JIRA service, defaults to 'running'

$service_enable

Defaults to 'true'

$service_subscribe

Restart the jira service in response to this subscription

$service_notify

Notify other puppet resources to refresh after the jira service

$stop_jira

If the jira service is managed outside of puppet the stop_jira parameter can be used to shut down jira for upgrades. Defaults to 'service jira stop && sleep 15'

$proxy = {}

Defaults to {}, See examples on how to use.

$contextpath = ""

Defaults to an empty string (""). Will add a path to the Tomcat Server Context.

$script_check_java_manage

Manages the 'check-java.sh' script provided by JIRA.

Defaults to 'false'.

$script_check_java_template

Alternate location to find the 'check-java.sh' script. Requires $script_check_java_manage = true.

Defaults to 'jira/check-java.sh.erb'.

Tomcat parameters

$tomcat_address

IP address to listen on. Defaults to all addresses.

$tomcat_port

Port to listen on, defaults to '8080'

$tomcat_max_threads

Defaults to '150'

$tomcat_accept_count

Defaults to '100'

$tomcat_native_ssl

Enable https/ssl support. Defaults to 'false'. See https://confluence.atlassian.com/display/JIRA/Running+JIRA+over+SSL+or+HTTPS for additional info. The java keystore can be managed with the puppetlabs-java_ks module or manually with keytool -genkey -alias jira -keyalg RSA -sigalg SHA256withRSA -keystore /home/jira/jira.ks

$tomcat_https_port

https/ssl Port to listen on, defaults to 8443.

$tomcat_redirect_https_port

Specifiy Jira redirect https port when using port redirection 80->8080 and 443->8443 or proxy server in front, defaults to $tomcat_https_port. To be used with tomcat_native_ssl.

$tomcat_key_alias

The alias name of the java keystore entry. Defaults to 'jira'.

$tomcat_keystore_file

Location of java keystore file. Defaults to '/home/jira/jira.jks'

$tomcat_keystore_pass

Password to access java keystore. Defaults to 'changeit'

$tomcat_keystore_type

Defaults to 'JKS'. Valid options are 'JKS', 'PKCS12', 'JCEKS'.

Crowd single sign on parameters

enable_sso

Enable crowd single sign on configuration as described in https://confluence.atlassian.com/display/CROWD/Integrating+Crowd+with+Atlassian+Confluence#IntegratingCrowdwithAtlassianConfluence-2.2EnableSSOintegrationwithCrowd(Optional)

application_name

Set crowd application name

application_password

Set crowd application password

application_login_url

Set crowd application login url, where to login into crowd (e.g. https://crowd.example.com/console/)

crowd_server_url

Set crowd application services url, e.g. https://crowd.example.com/services/

crowd_base_url

Set crowd base url, e.g. https://crowd.example.com/

session_isauthenticated

Some more crowd.properties for SSO, see atlassian documentation for details

session_tokenkey

Some more crowd.properties for SSO, see atlassian documentation for details

session_validationinterval

Some more crowd.properties for SSO, see atlassian documentation for details

session_lastvalidation

Some more crowd.properties for SSO, see atlassian documentation for details

Usage

A more complex example

    class { 'jira':
      version      => '6.0.1',
      installdir   => '/opt/atlassian-jira',
      homedir      => '/opt/atlassian-jira/jira-home',
      user         => 'jira',
      group        => 'jira',
      dbpassword   => 'secret',
      dbserver     => 'localhost',
      javahome     => '/opt/java/jdk1.7.0_21/',
      download_url => 'http://myserver/pub/development-tools/atlassian/',
    }

Hiera examples

This example is used in production for 2000 users in an traditional enterprise environment. Your mileage may vary. The dbpassword can be stored using eyaml hiera extension.

jira::version:       '6.2.7'
jira::installdir:    '/opt/atlassian/atlassian-jira'
jira::homedir:       '/opt/atlassian/application-data/jira-home'
jira::user:          'jira'
jira::group:         'jira'
jira::shell:         '/bin/bash'
jira::dbserver:      'dbvip.example.co.za'
jira::javahome:      '/opt/java'
jira::java_opts: >
  -Dhttp.proxyHost=proxy.example.co.za
  -Dhttp.proxyPort=8080
  -Dhttps.proxyHost=proxy.example.co.za
  -Dhttps.proxyPort=8080
  -Dhttp.nonProxyHosts=localhost\|127.0.0.1\|172.*.*.*\|10.*.*.*
  -XX:+UseLargePages'
jira::dbport:        '5439'
jira::dbuser:        'jira'
jira::jvm_xms:       '1G'
jira::jvm_xmx:       '3G'
jira::jvm_permgen:   '384m'
jira::service_manage: false
jira::enable_connection_pooling: 'true'
jira::env:
  - 'http_proxy=proxy.example.co.za:8080'
  - 'https_proxy=proxy.example.co.za:8080'
jira::proxy:
  scheme:    'https'
  proxyName: 'jira.example.co.za'
  proxyPort: '443'
jira::contextpath: '/jira'

These additional and substituted parameters are used in production in an traditional enterprise environment with an Oracle 11g remote database and Oracle 8 JDK. Your mileage may vary.

jira::db:            'oracle'
jira::dbname:        '<dbname>'
jira::dbport:        '1526'
jira::dbdriver:      'oracle.jdbc.OracleDriver'
jira::dbtype:        'oracle10g'
jira::dburl:         'jdbc:oracle:thin:@//dbvip.example.co.za:1526/<dbname>'
jira::javahome:      '/usr/lib/jvm/jdk-8-oracle-x64'

Reverse proxy can be configured as a hash as part of the JIRA resource

   proxy          => {
     scheme       => 'https',
     proxyName    => 'www.example.com',
     proxyPort    => '443',
   },

Enable external facts for puppet version. These facts are required to be enabled in order to upgrade to new JIRA versions smoothly.

  class { 'jira::facts': }

Limitations

  • Puppet 3.8.7+
  • Puppet Enterprise

The puppetlabs repositories can be found at: http://yum.puppetlabs.com/ and http://apt.puppetlabs.com/

  • RedHat 6/7

  • CentOS 6/7

  • Scientific 6/7

  • Oracle Linux 6/7

  • Ubuntu 12.04/14.04

  • Debian 7

  • PostgreSQL

  • MySQL 5.x

  • Oracle 11G with Oracle 11.2.x drivers

  • Microsoft SQL Server 2005/2008/2012 with JTDS driver (included in non-WAR version)

We plan to support other Linux distributions and possibly Windows in the near future.

Development

Please feel free to raise any issues here for bug fixes. We also welcome feature requests. Feel free to make a pull request for anything and we make the effort to review and merge. We prefer with tests if possible.

Testing - How to test the JIRA module

Using puppetlabs_spec_helper. Simply run:

bundle install && bundle exec rake spec

to get results.

ruby-1.9.3-p484/bin/ruby -S rspec spec/classes/jira_install_spec.rb --color
.

Finished in 0.38159 seconds
1 example, 0 failures

Using Beaker - Puppet Labs cloud enabled acceptance testing tool..

The beaker tests will install oracle Java to /opt/java. When running the beaker tests you agree that you accept the oracle java license.

bundle install
BEAKER_set=ubuntu-server-12042-x64 bundle exec rake beaker
BEAKER_set=ubuntu-server-1404-x64 bundle exec rake beaker
BEAKER_set=debian-73-x64 bundle exec rake beaker
BEAKER_set=centos-64-x64 bundle exec rake beaker
BEAKER_set=centos-70-x64 bundle exec rake beaker
BEAKER_set=centos-64-x64-pe bundle exec rake beaker

To save build time it is useful to host the installation files locally on a web server. You can use the download_url environment variable to overwrite the default.

export download_url="'http://my.local.server/'"

Contributors

The list of contributors can be found here

puppet-jira's People

Contributors

mkrakowitzer avatar bastelfreak avatar dhoppe avatar sacres avatar brycejohnson avatar jyaworski avatar bramwelt avatar alexjfisher avatar igalic avatar poikilotherm avatar smsearcy avatar juniorsysadmin avatar masonm avatar dougneal avatar bbriggs avatar o2a avatar paulgeringer avatar ryandb avatar oysteing avatar nibalizer avatar rnelson0 avatar gabrielbull avatar eshamow avatar adamcrews avatar jaxer avatar alexandernz avatar smithtrevor avatar grigarr avatar pelleqelle avatar ltangaf avatar

Stargazers

 avatar

Watchers

James Cloos avatar Jonathan Cooper avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.