Skip to content

Commit

Permalink
Update REFERENCE
Browse files Browse the repository at this point in the history
  • Loading branch information
ssm committed Feb 11, 2020
1 parent c76d923 commit b91c2f8
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 8 deletions.
34 changes: 26 additions & 8 deletions REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ include nifi

```puppet
class { 'nifi':
version => 'x.y.z',
download_url => 'https://my.local.repo.example.com/apache/nifi/nifi-x.y.z.tar.gz',
download_checksum => 'abcde...',
version => 'x.y.z',
download_url => 'https://my.local.repo.example.com/apache/nifi/nifi-x.y.z.tar.gz',
download_checksum => 'abcde...',
}
```

Expand All @@ -51,7 +51,7 @@ The version of Apache NiFi. This must match the version in the
tarball. This is used for managing files, directories and paths in
the service.

Default value: '1.10.0'
Default value: '1.11.1'

##### `user`

Expand All @@ -77,7 +77,7 @@ Data type: `String`

Where to download the binary installation tarball from.

Default value: 'http://mirrors.ibiblio.org/apache/nifi/1.10.0/nifi-1.10.0-bin.tar.gz'
Default value: 'http://mirrors.ibiblio.org/apache/nifi/1.11.1/nifi-1.11.1-bin.tar.gz'

##### `download_checksum`

Expand All @@ -86,7 +86,7 @@ Data type: `String`
The expected checksum of the downloaded tarball. This is used for
verifying the integrity of the downloaded tarball.

Default value: 'fd4f0750d18137bb1c21cd0fd5ab8951ccd450e6f673b8988db93ea2ff408288'
Default value: 'b0b35a9db0e6c8c299ca174e668acf8389488976b1674f08771f9361d884c5f3'

##### `download_checksum_type`

Expand All @@ -97,6 +97,14 @@ verifying the integrity of the downloaded tarball.

Default value: 'sha256'

##### `download_tmp_dir`

Data type: `Stdlib::Absolutepath`

Temporary directory for downloading the tarball.

Default value: '/var/tmp'

##### `service_limit_nofile`

Data type: `Integer`
Expand All @@ -123,11 +131,21 @@ The root directory of the nifi installation.

Default value: '/opt/nifi'

##### `download_tmp_dir`
##### `var_directory`

Data type: `Stdlib::Absolutepath`

The root of the writable paths used by NiFi. Nifi will create
directories beneath this path. This will implicitly add nifi
properties for working directories and repositories.

Default value: '/var/opt/nifi'

Default value: '/var/tmp'
##### `nifi_properties`

Data type: `Hash`

Hash of parameter key/values to be added to conf/nifi.properties.

Default value: {}

3 changes: 3 additions & 0 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@
# The checksum type of the downloaded tarball. This is used for
# verifying the integrity of the downloaded tarball.
#
# @param download_tmp_dir
# Temporary directory for downloading the tarball.
#
# @param service_limit_nofile
# The limit on number of open files permitted for the service. Used
# for LimitNOFILE= in nifi.service.
Expand Down

0 comments on commit b91c2f8

Please sign in to comment.