puppet-artifactory
Table of Contents
Overview
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.
Usage
Basic usage
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.
Archive installation
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.
Commercial editions
To install a commercial version of Artifactory:
class { 'artifactory':
edition => 'pro',
license_key => 'ABCDEFG1234567890',
package_version => '7.90.7',
...
}
Complex example
class { 'artifactory':
binary_provider_type => 'filesystem',
binary_provider_cache_dir => '/var/opt/jfrog/artifactory/',
binary_provider_cache_maxsize => $binary_provider_cache_maxsize,
binary_provider_filesystem_dir => '/var/opt/jfrog/artifactory/data/filestore',
db_type => 'oracle',
db_url => 'jdbc:oracle:thin:@somedomain.com:1521:arti001',
db_username => 'my_username',
db_password => 'efw23gn2j3',
jdbc_driver_url => 'puppet:///modules/my_module/mysql.jar',
package_version => '7.90.7',
pool_max_active => 100,
pool_max_idle => 10,
}
Reference
Classes and parameters are documented in REFERENCE.md.
Development
Contributing
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.
License
This module is a fork of fervidus/artifactory.
Copyright 2024 markt.de GmbH & Co. KG
Copyright 2016-2021 Bryan Belanger