Skip to content

Commit

Permalink
[ansible] JFrog Platform 10.17.1 release (#375)
Browse files Browse the repository at this point in the history
* #365 Use `fetch` and `lookup('ini')` to get the version (#369)

* [ansible] JFrog Platform 10.17.1 release

---------

Co-authored-by: David Lundgren <[email protected]>
  • Loading branch information
chukka and dlundgren authored Mar 1, 2024
1 parent 3802799 commit 9d8c56b
Show file tree
Hide file tree
Showing 12 changed files with 20 additions and 16 deletions.
4 changes: 4 additions & 0 deletions Ansible/ansible_collections/jfrog/platform/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# JFrog Platform Ansible Collection Changelog
All changes to this collection will be documented in this file.

## [10.17.1] - Feb 29, 2024
* Artifactory - Upgrade fails during the Check artifactory version [GH-369](https://github.com/jfrog/JFrog-Cloud-Installers/pull/369)
* Product Updates/fixes

## [10.17.0] - Jan 24, 2024
* **IMPORTANT**
* From 10.17.x platform collection, Artifactory (7.77.x) is not supported on Ubuntu 18.04, Centos/RHEL 7.x
Expand Down
4 changes: 2 additions & 2 deletions Ansible/ansible_collections/jfrog/platform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,11 +142,11 @@ The JFrog Platform Ansible Collection can be installed on the following operatin
* Ubuntu LTS versions (20.04/22.04)
* Centos/RHEL 8.x/9.x
* Debian 10.x/11.x
* Amazon Linux 2

## Note

From 10.17.x platform collection, Artifactory (7.77.x) is not supported on Ubuntu - 18.04, Centos/RHEL - 7.x
From 10.17.x platform collection, Artifactory (7.77.x) is not supported on Ubuntu - 18.04, Centos/RHEL - 7.x and Amazon Linux 2


## How to avoid IPv6 binding

Expand Down
2 changes: 1 addition & 1 deletion Ansible/ansible_collections/jfrog/platform/galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace: "jfrog"
name: "platform"

# The version of the collection. Must be compatible with semantic versioning
version: "10.17.0"
version: "10.17.1"

# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: "README.md"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Defaults file for artifactory

# The version of artifactory to install
artifactory_version: 7.77.3
artifactory_version: 7.77.6

# Set this to true when SSL is enabled (to use artifactory_nginx_ssl role), default to false (implies artifactory uses artifactory_nginx role )
artifactory_nginx_ssl_enabled: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,15 @@
state: directory

- name: Check artifactory version
ansible.builtin.shell: |
set -o pipefail;
grep artifactory.product.version "{{ artifactory_home }}/app/artifactory.product.version.properties" |cut -d= -f2
register: check_version_cmd
ansible.builtin.fetch:
src: "{{ artifactory_home }}/app/artifactory.product.version.properties"
dest: "/tmp/artifactory.product.version.properties"
flat: true
changed_when: false

- name: Set running_version
ansible.builtin.set_fact:
running_version: "{{ check_version_cmd.stdout }}"
running_version: "{{ lookup('ansible.builtin.ini', 'artifactory.product.version', type='properties', file='/tmp/artifactory.product.version.properties') }}"

- name: Delete artifactory app directory
become: true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# platform collection version
platform_collection_version: 10.17.0
platform_collection_version: 10.17.1

# indicates where this collection was downloaded from (galaxy, automation_hub, standalone)
ansible_marketplace: galaxy
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# defaults file for distribution

# The version of distribution to install
distribution_version: 2.22.1
distribution_version: 2.22.2

# whether to enable HA
distribution_ha_enabled: false
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# platform collection version
platform_collection_version: 10.17.0
platform_collection_version: 10.17.1

# indicates were this collection was downlaoded from (galaxy, automation_hub, standalone)
ansible_marketplace: galaxy
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# defaults file for insight

# The version of insight to install
insight_version: 1.16.6
insight_version: 1.16.7

# whether to enable HA
insight_ha_enabled: false
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# platform collection version
platform_collection_version: 10.17.0
platform_collection_version: 10.17.1

# indicates were this collection was downlaoded from (galaxy, automation_hub, standalone)
ansible_marketplace: galaxy
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Defaults file for xray

# The version of xray to install
xray_version: 3.87.9
xray_version: 3.90.1

# Whether to enable HA
xray_ha_enabled: false
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# platform collection version
platform_collection_version: 10.17.0
platform_collection_version: 10.17.1

# indicates were this collection was downlaoded from (galaxy, automation_hub, standalone)
ansible_marketplace: galaxy

0 comments on commit 9d8c56b

Please sign in to comment.