Skip to content

Latest commit

 

History

History
103 lines (73 loc) · 3.1 KB

README.md

File metadata and controls

103 lines (73 loc) · 3.1 KB

puppet-artifactory

Build Status Puppet Forge Puppet Forge - downloads

Table of Contents

  1. Overview
  2. Usage
  3. Reference
  4. Development
  5. License

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  => 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,
}

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