Skip to content

Commit

Permalink
[ansible] JFrog Platform 10.16.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
chukka committed Nov 10, 2023
1 parent 857b6b7 commit a6d14cb
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 11 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.16.2] - Nov 10, 2023
* Postgres - Change postgres_apt_repository_repo url for ubuntu 18
* Product Updates/fixes

## [10.16.1] - Nov 3, 2023
* Artifactory - Fix bootstrap template issue [GH-340](https://github.com/jfrog/JFrog-Cloud-Installers/pull/340)

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 @@ -43,7 +43,7 @@ ansible-galaxy collection install community.postgresql community.general ansible
5. Then execute with the following command to provision the JFrog Platform with Ansible.
```bash
ansible-playbook -vv platform.yml -i hosts.ini"
ansible-playbook -vv platform.yml -i hosts.ini
```

## Generating Master and Join Keys
Expand Down Expand Up @@ -139,7 +139,7 @@ ansible-galaxy collection build
## OS support
The JFrog Platform Ansible Collection can be installed on the following operating systems:

* Ubuntu LTS versions (18.04/20.4/22.04)
* Ubuntu LTS versions (18.04/20.04/22.04)
* Centos/RHEL 7.x/8.x/9.x
* Debian 10.x/11.x
* Amazon Linux 2
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.16.1"
version: "10.16.2"

# 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.71.3
artifactory_version: 7.71.4

# 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 @@ -235,4 +235,4 @@
delay: 5
when:
- not ansible_check_mode
- artifactory_start_service | bool
- artifactory_start_service | bool
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# platform collection version
platform_collection_version: 10.16.0
platform_collection_version: 10.16.2

# 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,5 +1,5 @@
# platform collection version
platform_collection_version: 10.16.0
platform_collection_version: 10.16.2

# 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,5 +1,5 @@
# platform collection version
platform_collection_version: 10.16.0
platform_collection_version: 10.16.2

# indicates were this collection was downlaoded from (galaxy, automation_hub, standalone)
ansible_marketplace: galaxy
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,9 @@ default_postgresql_external_pid_file: /var/run/postgresql/{{ postgres_version }}

default_postgres_apt_key_id: '0x7FCC7D46ACCC4CF8'
default_postgres_apt_key_url: https://www.postgresql.org/media/keys/ACCC4CF8.asc
default_postgres_apt_repository_repo: deb https://apt.postgresql.org/pub/repos/apt/ {{ ansible_distribution_release }}-pgdg main
default_postgres_apt_repository_repo: >-
{%- if ansible_distribution_release == 'bionic' -%}
deb https://apt-archive.postgresql.org/pub/repos/apt {{ ansible_distribution_release }}-pgdg main
{%- else -%}
deb https://apt.postgresql.org/pub/repos/apt/ {{ ansible_distribution_release }}-pgdg main
{%- endif -%}
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.83.10
xray_version: 3.85.5

# 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.16.0
platform_collection_version: 10.16.2

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

0 comments on commit a6d14cb

Please sign in to comment.