Skip to content

Commit 1108b79

Browse files
authored
Merge pull request voxpupuli#360 from oranenj/minor-doc
Minor doc updates to make them more modern.
2 parents d744e32 + ec9f858 commit 1108b79

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed

README.md

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ The jira::facts class is required for upgrades.
9595
```puppet
9696
class { 'jira':
9797
javahome => '/opt/java',
98-
version => '6.3.7',
98+
version => '8.13.5',
9999
}
100100
class { 'jira::facts': }
101101
```
@@ -149,11 +149,13 @@ The default file format of the JIRA install file, defaults to tar.gz
149149

150150
##### `$installdir`
151151

152-
The directory to install to, defaults to '/opt/jira'
152+
The directory to install to, defaults to '/opt/jira'. Note that
153+
any parent directories must exist.
153154

154155
##### `$homedir`
155156

156-
The default home directory of JIRA, defaults to '/home/jira'
157+
The default home directory of JIRA, defaults to '/home/jira'. Note that
158+
any parent directories must exist.
157159

158160
##### `$user`
159161

@@ -574,14 +576,14 @@ Some more crowd.properties for SSO, see atlassian documentation for details
574576

575577
```puppet
576578
class { 'jira':
577-
version => '6.0.1',
579+
version => '8.13.5',
578580
installdir => '/opt/atlassian-jira',
579581
homedir => '/opt/atlassian-jira/jira-home',
580582
user => 'jira',
581583
group => 'jira',
582584
dbpassword => 'secret',
583585
dbserver => 'localhost',
584-
javahome => '/opt/java/jdk1.7.0_21/',
586+
javahome => '/usr/lib/jvm/jre-11-openjdk/',
585587
download_url => 'http://myserver/pub/development-tools/atlassian/',
586588
tomcat_additional_connectors => {
587589
# Define two additional connectors, listening on port 8081 and 8082
@@ -626,12 +628,9 @@ Some more crowd.properties for SSO, see atlassian documentation for details
626628

627629
### Hiera examples
628630

629-
This example is used in production for 2000 users in an traditional enterprise
630-
environment. Your mileage may vary. The dbpassword can be stored using eyaml
631-
hiera extension.
632-
633631
```yaml
634-
jira::version: '6.2.7'
632+
jira::version: '8.13.5'
633+
# parent directories must exist
635634
jira::installdir: '/opt/atlassian/atlassian-jira'
636635
jira::homedir: '/opt/atlassian/application-data/jira-home'
637636
jira::user: 'jira'
@@ -650,7 +649,6 @@ jira::dbport: '5439'
650649
jira::dbuser: 'jira'
651650
jira::jvm_xms: '1G'
652651
jira::jvm_xmx: '3G'
653-
jira::jvm_permgen: '384m'
654652
jira::service_manage: false
655653
jira::env:
656654
- 'http_proxy=proxy.example.co.za:8080'

0 commit comments

Comments
 (0)