Files
JFrog-Cloud-Installers/Ansible/ansible_collections/jfrog/platform/roles/artifactory
Ram Mohan Rao Chukka e34e800f84 [ansible] JFrog Platform 10.9.0 release (#242)
* Issue #136 (#230)

- added boolean variable to decide whether to add a redirect directive to the nginx config when the docker subdomain feature is used.

Co-authored-by: Ram Mohan Rao Chukka <1331672+chukka@users.noreply.github.com>

* [ansible] Call "installService.sh" after upgrading Artifactory (#238)

* Issue #207 - added compatibility with Amazon Linux 2 (#231)

Co-authored-by: Ram Mohan Rao Chukka <1331672+chukka@users.noreply.github.com>

* [ansible] JFrog Platform 10.9.0 release

Co-authored-by: Johannes Brunswicker <johannes.brunswicker@gmail.com>
Co-authored-by: Christian Bönning <hexa2k9@users.noreply.github.com>
2022-10-12 15:44:12 +05:30
..
2021-05-10 13:21:22 +05:30

artifactory

The artifactory role installs the Artifactory Pro software onto the host. Per the Vars below, it will configure a node as primary or secondary. This role uses secondary roles artifactory_nginx to install nginx.

Role Variables

  • server_name: mandatory This is the server name. eg. "artifactory.54.175.51.178.xip.io"
  • artifactory_upgrade_only: Perform an software upgrade only. Default is false.

Additional variables can be found in defaults/main.yml.

Example Playbook

---
- hosts: artifactory_servers
  roles:
    - artifactory

Upgrades

The Artifactory role supports software upgrades. To use a role to perform a software upgrade only, use the artifactory_upgrade_only variable and specify the version. See the following example.

- hosts: artifactory_servers
  vars:
    artifactory_version: "{{ lookup('env', 'artifactory_version_upgrade') }}"
    artifactory_upgrade_only: true
  roles:
    - artifactory