Skip to content

Commit 5dd2004

Browse files
committed
introduce installation of custom plugins and JNDI database connections
- refactoring and code cleanup
1 parent 576bc1c commit 5dd2004

16 files changed

+656
-389
lines changed

.github/workflows/ci.yml

+2
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ jobs:
5454
needs: setup_matrix
5555
runs-on: ubuntu-latest
5656
env:
57+
LANG: en_US
58+
LC_ALL: en_US.UTF-8
5759
BUNDLE_WITHOUT: development:test:release
5860
strategy:
5961
fail-fast: false

.sync.yml

+3
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,6 @@ Gemfile:
33
optional:
44
':test:':
55
- gem: puppet-lint-param-docs
6+
spec/spec_helper.rb:
7+
spec_overrides:
8+
- "require 'support/acceptance/constants.rb'"

manifests/config.pp

+10-6
Original file line numberDiff line numberDiff line change
@@ -151,17 +151,21 @@
151151
# Configuration logic ends, resources begin:
152152

153153
file { "${jira::webappdir}/bin/user.sh":
154-
content => epp('jira/user.sh.epp'),
154+
content => epp("${module_name}/user.sh.epp"),
155155
mode => '0755',
156156
}
157157

158158
file { "${jira::webappdir}/bin/setenv.sh":
159-
content => epp('jira/setenv.sh.epp'),
159+
content => epp("${module_name}/setenv.sh.epp"),
160160
mode => '0755',
161161
}
162162

163+
$dbconfig_template = $jira::use_jndi_ds ? {
164+
true => "${module_name}/dbconfig.jndi.xml.epp",
165+
default => "${module_name}/dbconfig.xml.epp"
166+
}
163167
file { "${jira::homedir}/dbconfig.xml":
164-
content => epp('jira/dbconfig.xml.epp'),
168+
content => epp($dbconfig_template),
165169
mode => '0600',
166170
}
167171

@@ -174,12 +178,12 @@
174178
}
175179

176180
file { "${jira::webappdir}/conf/server.xml":
177-
content => epp('jira/server.xml.epp'),
181+
content => epp("${module_name}/server.xml.epp"),
178182
mode => '0600',
179183
}
180184

181185
file { "${jira::webappdir}/conf/context.xml":
182-
content => epp('jira/context.xml.epp'),
186+
content => epp("${module_name}/context.xml.epp"),
183187
mode => '0600',
184188
}
185189

@@ -195,7 +199,7 @@
195199

196200
if $jira::datacenter {
197201
file { "${jira::homedir}/cluster.properties":
198-
content => epp('jira/cluster.properties.epp'),
202+
content => epp("${module_name}/cluster.properties.epp"),
199203
mode => '0600',
200204
}
201205
}

manifests/init.pp

+50-4
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,10 @@
5858
# EHCache configuration for clustered mode
5959
# @param ehcache_object_port
6060
# EHCache configuration for clustered mode
61+
# @param use_jndi_ds
62+
# If true, the database will be configured as JNDI datasource in server.xml and then referenced in dbconfig.xml
63+
# @param jndi_ds_name
64+
# Configures the JNDI datasource name
6165
# @param db
6266
# The kind of database to use.
6367
# @param dbname
@@ -263,6 +267,15 @@
263267
# undocumented SSO parameter
264268
# @param session_lastvalidation
265269
# undocumented SSO parameter
270+
# @param plugins
271+
# an array of hashes defining custom plugins to install
272+
# a single plugin configuration will has the following form
273+
# installation_name: this name wil be used to install the plugin within jira
274+
# source: url of plugin to be fetched
275+
# username: the username for authentification, if necessary
276+
# password: the password for authentification, if necessary
277+
# checksum: the checksum of the plugin, to determine the need for an upgrade
278+
# checksumtype: the type of checksum used (none|md5|sha1|sha2|sha256|sha384|sha512). (default: none)
266279
# @param jvm_permgen
267280
# Deprecated. Exists to notify users that they're trying to configure a parameter that has no effect
268281
# @param poolsize
@@ -296,6 +309,8 @@
296309
Optional[Stdlib::Port] $ehcache_listener_port = undef,
297310
Optional[Stdlib::Port] $ehcache_object_port = undef,
298311
# Database Settings
312+
Boolean $use_jndi_ds = false,
313+
String[1] $jndi_ds_name = 'JiraDS',
299314
Enum['postgresql','mysql','sqlserver','oracle','h2'] $db = 'postgresql',
300315
String $dbuser = 'jiraadm',
301316
String $dbpassword = 'mypassword',
@@ -352,10 +367,9 @@
352367
$service_notify = undef,
353368
$service_subscribe = undef,
354369
# Command to stop jira in preparation to upgrade. This is configurable
355-
# incase the jira service is managed outside of puppet. eg: using the
370+
# in case the jira service is managed outside of puppet. eg: using the
356371
# puppetlabs-corosync module: 'crm resource stop jira && sleep 15'
357-
# Note: the command should return either 0 or 5
358-
# when the service doesn't exist
372+
# Note: the command should return either 0 or 5 when the service doesn't exist
359373
String $stop_jira = 'systemctl stop jira.service && sleep 15',
360374
# Whether to manage the 'check-java.sh' script, and where to retrieve
361375
# the script from.
@@ -411,8 +425,10 @@
411425
Optional[String] $jvm_permgen = undef,
412426
Optional[Integer[0]] $poolsize = undef,
413427
Optional[Boolean] $enable_connection_pooling = undef,
428+
# plugin installation
429+
Array[Hash] $plugins = [],
414430
) {
415-
# To maintain compatibility with previous behaviour, we check for not-servicedesk instead of specifying the
431+
# To maintain compatibility with previous behaviour, we check for not-servicedesk instead of specifying the
416432
if $product != 'servicedesk' and versioncmp($jira::version, '8.0.0') < 0 {
417433
fail('JIRA versions older than 8.0.0 are no longer supported. Please use an older version of this module to upgrade first.')
418434
}
@@ -476,4 +492,34 @@
476492
if ($enable_sso) {
477493
class { 'jira::sso': }
478494
}
495+
496+
# install any given library or remove them
497+
$plugins.each |Hash $plugin_data| {
498+
$target = "${jira::webappdir}/atlassian-jira/WEB-INF/lib/${$plugin_data['installation_name']}"
499+
if $plugin_data['ensure'] == 'absent' {
500+
archive {
501+
$target:
502+
ensure => 'absent',
503+
}
504+
} else {
505+
$_target_defaults = {
506+
ensure => 'present',
507+
source => $plugin_data['source'],
508+
checksum => $plugin_data['checksum'],
509+
checksum_type => $plugin_data['checksum_type'],
510+
}
511+
$_username = !empty($plugin_data['username']) ? {
512+
default => {},
513+
true => { username => $plugin_data['username'] }
514+
}
515+
$_password = !empty($plugin_data['password']) ? {
516+
default => {},
517+
true => { password => $plugin_data['password'] }
518+
}
519+
$_plugin_archive = {
520+
$target => $_target_defaults + $_username + $_password
521+
}
522+
create_resources(archive, $_plugin_archive)
523+
}
524+
}
479525
}

spec/acceptance/default_parameters_spec.rb

+5-4
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,18 @@ class { 'jira':
4545
EOS
4646

4747
# jira just takes *ages* to start up :-(
48+
WGET_CMD = 'wget -q --tries=24 --retry-connrefused --read-timeout=10 localhost:8080'.freeze
4849
apply_manifest(pp, catch_failures: true)
4950
sleep 60
50-
shell 'wget -q --tries=24 --retry-connrefused --read-timeout=10 localhost:8080', acceptable_exit_codes: [0, 8]
51+
shell WGET_CMD, acceptable_exit_codes: [0, 8]
5152
sleep 60
52-
shell 'wget -q --tries=24 --retry-connrefused --read-timeout=10 localhost:8080', acceptable_exit_codes: [0, 8]
53+
shell WGET_CMD, acceptable_exit_codes: [0, 8]
5354
sleep 60
5455
apply_manifest(pp_upgrade, catch_failures: true)
5556
sleep 60
56-
shell 'wget -q --tries=24 --retry-connrefused --read-timeout=10 localhost:8080', acceptable_exit_codes: [0, 8]
57+
shell WGET_CMD, acceptable_exit_codes: [0, 8]
5758
sleep 60
58-
shell 'wget -q --tries=24 --retry-connrefused --read-timeout=10 localhost:8080', acceptable_exit_codes: [0, 8]
59+
shell WGET_CMD, acceptable_exit_codes: [0, 8]
5960
sleep 60
6061
apply_manifest(pp_upgrade, catch_failures: true)
6162
end

spec/acceptance/mysql_spec.rb

+3-2
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,12 @@ class { 'jira':
6060
}
6161
EOS
6262

63+
WGET_CMD = 'wget -q --tries=24 --retry-connrefused --read-timeout=10 --no-check-certificate localhost:8081'.freeze
6364
apply_manifest(pp, catch_failures: true)
6465
sleep 60
65-
shell 'wget -q --tries=24 --retry-connrefused --read-timeout=10 --no-check-certificate localhost:8081', acceptable_exit_codes: [0, 8]
66+
shell WGET_CMD, acceptable_exit_codes: [0, 8]
6667
sleep 60
67-
shell 'wget -q --tries=24 --retry-connrefused --read-timeout=10 --no-check-certificate localhost:8081', acceptable_exit_codes: [0, 8]
68+
shell WGET_CMD, acceptable_exit_codes: [0, 8]
6869
sleep 60
6970
apply_manifest(pp, catch_changes: true)
7071
end

0 commit comments

Comments
 (0)