Forge Home

artifactory

Install and configure JFrog Artifactory

68 downloads

68 latest version

5.0 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 4.0.0 (latest)
released Aug 13th 2024
This version is compatible with:
  • Puppet Enterprise 2023.8.x, 2023.7.x, 2023.6.x, 2023.5.x, 2023.4.x, 2023.3.x, 2023.2.x, 2023.1.x, 2023.0.x, 2021.7.x, 2021.6.x, 2021.5.x, 2021.4.x, 2021.3.x, 2021.2.x, 2021.1.x, 2021.0.x
  • Puppet >= 7.0.0 < 9.0.0
  • , , ,

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'markt-artifactory', '4.0.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add markt-artifactory
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install markt-artifactory --version 4.0.0

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

markt/artifactory — version 4.0.0 Aug 13th 2024

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  => $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