Skip to content

Commit

Permalink
[ansible] JFrog Platform 10.16.3 release (#352)
Browse files Browse the repository at this point in the history
* IPv6 in README.md

* [ansible] JFrog Platform 10.16.3 release

---------

Co-authored-by: Bas Meijer <[email protected]>
  • Loading branch information
chukka and bbaassssiiee authored Dec 6, 2023
1 parent ada5ab0 commit b25114f
Show file tree
Hide file tree
Showing 10 changed files with 29 additions and 8 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.3] - Dec 6, 2023
* Added How to avoid IPv6 binding in Readme [GH-349](https://github.com/jfrog/JFrog-Cloud-Installers/pull/349)
* Product Updates/fixes

## [10.16.2] - Nov 10, 2023
* Postgres - Change postgres_apt_repository_repo url for ubuntu 18
* Product Updates/fixes
Expand Down
17 changes: 17 additions & 0 deletions Ansible/ansible_collections/jfrog/platform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,23 @@ The JFrog Platform Ansible Collection can be installed on the following operatin
* Debian 10.x/11.x
* Amazon Linux 2

## How to avoid IPv6 binding

Some distributions have two entries for localhost in `/etc/hosts`:

```
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
```

This can cause Java apps trying binding using IPv6, which fails when that's disabled. This causes some tcp ports not listening, like the Artifactory router service.

Solution: add an extra JAVA_OPTION: `-Djava.net.preferIPv4Stack=true` to this variable:

```
artifactory_extra_java_opts: '-server -Xms512m -Xmx4g -Xss256k -XX:+UseG1GC -Djava.net.preferIPv4Stack=true'
```

## Known issues
* Refer [here](https://github.com/jfrog/JFrog-Cloud-Installers/issues?q=is%3Aopen+is%3Aissue+label%3AAnsible)
* By default, ansible_python_interpreter: "/usr/bin/python3" used , For Centos/RHEL-7, Set this to "/usr/bin/python" . For example
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.2"
version: "10.16.3"

# 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.4
artifactory_version: 7.71.5

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

# 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.2
platform_collection_version: 10.16.3

# 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.15.4
insight_version: 1.16.2

# 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.16.2
platform_collection_version: 10.16.3

# 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.85.5
xray_version: 3.86.4

# 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.2
platform_collection_version: 10.16.3

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

0 comments on commit b25114f

Please sign in to comment.