mirror of
https://github.com/ZwareBear/JFrog-Cloud-Installers.git
synced 2026-01-21 08:06:57 -06:00
[ansible] JFrog Platform 7.19.8 (#130)
This commit is contained in:
committed by
GitHub
parent
0a88f1675a
commit
4ac8b06ce2
@@ -1,16 +1,19 @@
|
|||||||
# JFrog Platform Ansible Collection Changelog
|
# JFrog Platform Ansible Collection Changelog
|
||||||
All changes to this collection will be documented in this file.
|
All changes to this collection will be documented in this file.
|
||||||
|
|
||||||
## [7.9.4] - May 31, 2021
|
## [7.19.8] - June 10, 2021
|
||||||
|
* Fix Missioncontrol ES start issue
|
||||||
|
|
||||||
|
## [7.19.4] - May 31, 2021
|
||||||
* Moved product versions from `groups_vars/all/package_version.yml` to roles/<product>/defaults
|
* Moved product versions from `groups_vars/all/package_version.yml` to roles/<product>/defaults
|
||||||
* Added variable to configure postgres apt key (`postgres_apt_key_url`) and id (`postgres_apt_key_id`)
|
* Added variable to configure postgres apt key (`postgres_apt_key_url`) and id (`postgres_apt_key_id`)
|
||||||
* Squashed bugs from previous release
|
* Squashed bugs from previous release
|
||||||
|
|
||||||
## [7.8.6] - May 10, 2021
|
## [7.18.6] - May 10, 2021
|
||||||
* Fixed broken URLs in ansible galaxy - [108](https://github.com/jfrog/JFrog-Cloud-Installers/issues/108)
|
* Fixed broken URLs in ansible galaxy - [108](https://github.com/jfrog/JFrog-Cloud-Installers/issues/108)
|
||||||
* Added variable to configure system.yaml (using `<product>_systemyaml`) and binarystore.xml (using `artifactory_binarystore`)
|
* Added variable to configure system.yaml (using `<product>_systemyaml`) and binarystore.xml (using `artifactory_binarystore`)
|
||||||
|
|
||||||
## [7.8.5] - May 3, 2021
|
## [7.18.5] - May 3, 2021
|
||||||
* Added new `jfrog.platform` collection with Artifactory, Distribution, Missioncontrol and Xray roles
|
* Added new `jfrog.platform` collection with Artifactory, Distribution, Missioncontrol and Xray roles
|
||||||
* Published `jfrog.platform` galaxy [collection](https://galaxy.ansible.com/jfrog/platform) release
|
* Published `jfrog.platform` galaxy [collection](https://galaxy.ansible.com/jfrog/platform) release
|
||||||
* Added new `groups_vars/all/package_version.yml` file to define product versions
|
* Added new `groups_vars/all/package_version.yml` file to define product versions
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ namespace: "jfrog"
|
|||||||
name: "platform"
|
name: "platform"
|
||||||
|
|
||||||
# The version of the collection. Must be compatible with semantic versioning
|
# The version of the collection. Must be compatible with semantic versioning
|
||||||
version: "7.19.4"
|
version: "7.19.8"
|
||||||
|
|
||||||
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
|
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
|
||||||
readme: "README.md"
|
readme: "README.md"
|
||||||
|
|||||||
Binary file not shown.
@@ -2,7 +2,7 @@
|
|||||||
# defaults file for artifactory
|
# defaults file for artifactory
|
||||||
|
|
||||||
# The version of artifactory to install
|
# The version of artifactory to install
|
||||||
artifactory_version: 7.19.4
|
artifactory_version: 7.19.8
|
||||||
|
|
||||||
# Set this to true when SSL is enabled (to use artifactory_nginx_ssl role), default to false (implies artifactory uses artifactory_nginx role )
|
# 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
|
artifactory_nginx_ssl_enabled: false
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
# platform collection version
|
# platform collection version
|
||||||
platform_collection_version: 7.19.4
|
platform_collection_version: 7.19.8
|
||||||
|
|
||||||
# indicates where this collection was downloaded from (galaxy, automation_hub, standalone)
|
# indicates where this collection was downloaded from (galaxy, automation_hub, standalone)
|
||||||
ansible_marketplace: galaxy
|
ansible_marketplace: galaxy
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
# platform collection version
|
# platform collection version
|
||||||
platform_collection_version: 7.19.4
|
platform_collection_version: 7.19.8
|
||||||
|
|
||||||
# indicates were this collection was downlaoded from (galaxy, automation_hub, standalone)
|
# indicates were this collection was downlaoded from (galaxy, automation_hub, standalone)
|
||||||
ansible_marketplace: galaxy
|
ansible_marketplace: galaxy
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
# defaults file for mc
|
# defaults file for mc
|
||||||
|
|
||||||
# The version of missioncontrol to install
|
# The version of missioncontrol to install
|
||||||
missioncontrol_version: 4.7.4
|
missioncontrol_version: 4.7.5
|
||||||
|
|
||||||
# whether to enable HA
|
# whether to enable HA
|
||||||
mc_ha_enabled: false
|
mc_ha_enabled: false
|
||||||
|
|||||||
@@ -155,8 +155,7 @@
|
|||||||
|
|
||||||
- name: Start elasticsearch
|
- name: Start elasticsearch
|
||||||
become: yes
|
become: yes
|
||||||
become_user: elasticsearch
|
shell: "su -c '{{ mc_es_script_path }}/elasticsearch -d' elasticsearch"
|
||||||
shell: "{{ mc_es_script_path }}/elasticsearch -d"
|
|
||||||
environment:
|
environment:
|
||||||
JAVA_HOME: "{{ mc_es_java_home }}"
|
JAVA_HOME: "{{ mc_es_java_home }}"
|
||||||
ES_PATH_CONF: "{{ mc_es_conf_base }}/"
|
ES_PATH_CONF: "{{ mc_es_conf_base }}/"
|
||||||
|
|||||||
@@ -102,9 +102,7 @@
|
|||||||
|
|
||||||
- name: Start elasticsearch
|
- name: Start elasticsearch
|
||||||
become: yes
|
become: yes
|
||||||
become_user: elasticsearch
|
shell: "su -c '{{ mc_es_script_path }}/elasticsearch -d' elasticsearch"
|
||||||
ignore_errors: yes
|
|
||||||
shell: "{{ mc_es_script_path }}/elasticsearch -d"
|
|
||||||
environment:
|
environment:
|
||||||
JAVA_HOME: "{{ mc_es_java_home }}"
|
JAVA_HOME: "{{ mc_es_java_home }}"
|
||||||
ES_PATH_CONF: "{{ mc_es_conf_base }}/"
|
ES_PATH_CONF: "{{ mc_es_conf_base }}/"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
# platform collection version
|
# platform collection version
|
||||||
platform_collection_version: 7.19.4
|
platform_collection_version: 7.19.8
|
||||||
|
|
||||||
# indicates were this collection was downlaoded from (galaxy, automation_hub, standalone)
|
# indicates were this collection was downlaoded from (galaxy, automation_hub, standalone)
|
||||||
ansible_marketplace: galaxy
|
ansible_marketplace: galaxy
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
# defaults file for xray
|
# defaults file for xray
|
||||||
|
|
||||||
# The version of xray to install
|
# The version of xray to install
|
||||||
xray_version: 3.25.1
|
xray_version: 3.26.1
|
||||||
|
|
||||||
# whether to enable HA
|
# whether to enable HA
|
||||||
xray_ha_enabled: false
|
xray_ha_enabled: false
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
# platform collection version
|
# platform collection version
|
||||||
platform_collection_version: 7.19.4
|
platform_collection_version: 7.19.8
|
||||||
|
|
||||||
# indicates were this collection was downlaoded from (galaxy, automation_hub, standalone)
|
# indicates were this collection was downlaoded from (galaxy, automation_hub, standalone)
|
||||||
ansible_marketplace: galaxy
|
ansible_marketplace: galaxy
|
||||||
Reference in New Issue
Block a user