This module installs and configures JFrog Artifactory. Both the open source and commercial editions are supported.
Artifactory 7+ is recommended, but legacy support for Artifactory 6 is still available.
To setup Artifactory with default options only the desired version needs to be specified:
class { 'artifactory':
package_version => '7.90.7',
}
By default this module will install Artifactory from official RPM/DEB packages.
It is also possible to install Artifactory from the official tar.gz archive, which provides more flexibility and customization options:
class { 'artifactory':
install_method => 'archive',
package_version => '7.90.7',
}
The archive installation allows to customize installation paths, see reference for details.
To install a commercial version of Artifactory:
class { 'artifactory':
edition => 'pro',
license_key => 'ABCDEFG1234567890',
package_version => '7.90.7',
...
}
class { 'artifactory':
binary_provider_type => 'filesystem',
binary_provider_cache_dir => '/var/opt/jfrog/artifactory/',
binary_provider_cache_maxsize => 536870912000,
binary_provider_filesystem_dir => '/var/opt/jfrog/artifactory/data/filestore',
db_type => 'oracle',
db_url => 'jdbc:oracle:thin:@example.com:1521:dbname',
db_username => 'my_username',
db_password => 'pa$$w0rd',
jdbc_driver_url => 'puppet:///modules/my_module/mysql.jar',
package_version => '7.90.7',
pool_max_active => 100,
pool_max_idle => 10,
}
Classes and parameters are documented in REFERENCE.md.
Please use the GitHub issues functionality to report any bugs or requests for new features. Feel free to fork and submit pull requests for potential contributions.
All contributions must pass all existing tests, new features should provide additional unit/acceptance tests.
This module is a fork of fervidus/artifactory.
Copyright 2024 markt.de GmbH & Co. KG
Copyright 2016-2021 Bryan Belanger