Files
JFrog-Cloud-Installers/Ansible/ansible_collections/jfrog/platform/roles/xray
Ram Mohan Rao Chukka 3ca042fd46 [ansible] JFrog Platform 10.9.2 release (#247)
* [ansible/all] Fix Typo in ansible collection: amd -> and (#244)

* fix typo: amd -> and

* fix typo in groupvars amd -> and

* fix typo in readme amd -> and

Co-authored-by: Krisztian Pal Klucsik <krisztianpal.klucsik@varian.com>

* [ansible] JFrog Platform 10.9.2 release

Co-authored-by: Pal K. Klucsik <klucsik.krisztian@gmail.com>
Co-authored-by: Krisztian Pal Klucsik <krisztianpal.klucsik@varian.com>
2022-10-28 11:12:25 +05:30
..
2021-05-10 13:21:22 +05:30

Xray

The xray role will install Xray software onto the host. An Artifactory server and Postgress database is required.

Role Variables

  • xray_upgrade_only: Perform an software upgrade only. Default is false.

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

Example Playbook

---
- hosts: xray_servers
  roles:
    - xray

Upgrades

The Xray role supports software upgrades. To use a role to perform a software upgrade only, use the xray_upgrade_only variables and specify the version. See the following example.

- hosts: xray_servers
  vars:
    xray_version: "{{ lookup('env', 'xray_version_upgrade') }}"
    xray_upgrade_only: true
  roles:
    - xray