mirror of
https://github.com/ZwareBear/JFrog-Cloud-Installers.git
synced 2026-01-20 22:06:55 -06:00
[ansible] JFrog Platform 10.6.2 release (#219)
This commit is contained in:
committed by
GitHub
parent
55413d9974
commit
450c237094
@@ -1,6 +1,10 @@
|
||||
# JFrog Platform Ansible Collection Changelog
|
||||
All changes to this collection will be documented in this file.
|
||||
|
||||
## [10.6.2] - May 20, 2022
|
||||
* Allow nginx configuration for overriding worker_processes with a variable [GH-217](https://github.com/jfrog/JFrog-Cloud-Installers/pull/217)
|
||||
* Product Updates/fixes
|
||||
|
||||
## [10.6.1] - May 16, 2022
|
||||
* Product Updates/fixes
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ namespace: "jfrog"
|
||||
name: "platform"
|
||||
|
||||
# The version of the collection. Must be compatible with semantic versioning
|
||||
version: "10.6.1"
|
||||
version: "10.6.2"
|
||||
|
||||
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
|
||||
readme: "README.md"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# defaults file for artifactory
|
||||
|
||||
# The version of artifactory to install
|
||||
artifactory_version: 7.38.8
|
||||
artifactory_version: 7.38.10
|
||||
|
||||
# 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
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# platform collection version
|
||||
platform_collection_version: 10.6.1
|
||||
platform_collection_version: 10.6.2
|
||||
|
||||
# indicates where this collection was downloaded from (galaxy, automation_hub, standalone)
|
||||
ansible_marketplace: galaxy
|
||||
|
||||
@@ -4,3 +4,5 @@
|
||||
server_name: test.artifactory.com
|
||||
|
||||
nginx_daemon: nginx
|
||||
|
||||
nginx_worker_processes: 1
|
||||
|
||||
@@ -13,8 +13,8 @@
|
||||
|
||||
- name: Copy nginx.conf file
|
||||
become: yes
|
||||
copy:
|
||||
src: nginx.conf
|
||||
template:
|
||||
src: nginx.conf.j2
|
||||
dest: /etc/nginx/nginx.conf
|
||||
owner: root
|
||||
group: root
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#user nobody;
|
||||
worker_processes 1;
|
||||
worker_processes {{ nginx_worker_processes }};
|
||||
error_log /var/log/nginx/error.log info;
|
||||
#pid logs/nginx.pid;
|
||||
events {
|
||||
@@ -5,3 +5,4 @@ The artifactory_nginx_ssl role installs and configures nginx for SSL.
|
||||
* _server_name_: This is the server name. eg. "artifactory.54.175.51.178.xip.io"
|
||||
* _certificate_: This is the SSL cert.
|
||||
* _certificate_key_: This is the SSL private key.
|
||||
* _nginx_worker_processes_: The worker_processes configuration for nginx. Defaults to 1.
|
||||
|
||||
@@ -6,3 +6,5 @@
|
||||
nginx_daemon: nginx
|
||||
|
||||
redirect_http_to_https_enabled: true
|
||||
|
||||
nginx_worker_processes: 1
|
||||
|
||||
@@ -21,8 +21,8 @@
|
||||
|
||||
- name: Configure main nginx conf file.
|
||||
become: yes
|
||||
copy:
|
||||
src: nginx.conf
|
||||
template:
|
||||
src: nginx.conf.j2
|
||||
dest: /etc/nginx/nginx.conf
|
||||
owner: root
|
||||
group: root
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#user nobody;
|
||||
worker_processes 1;
|
||||
worker_processes {{ nginx_worker_processes }};
|
||||
error_log /var/log/nginx/error.log info;
|
||||
#pid logs/nginx.pid;
|
||||
events {
|
||||
@@ -1,5 +1,5 @@
|
||||
# platform collection version
|
||||
platform_collection_version: 10.6.1
|
||||
platform_collection_version: 10.6.2
|
||||
|
||||
# indicates were this collection was downlaoded from (galaxy, automation_hub, standalone)
|
||||
ansible_marketplace: galaxy
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# platform collection version
|
||||
platform_collection_version: 10.6.1
|
||||
platform_collection_version: 10.6.2
|
||||
|
||||
# indicates were this collection was downlaoded from (galaxy, automation_hub, standalone)
|
||||
ansible_marketplace: galaxy
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# defaults file for xray
|
||||
|
||||
# The version of xray to install
|
||||
xray_version: 3.48.2
|
||||
xray_version: 3.49.0
|
||||
|
||||
# whether to enable HA
|
||||
xray_ha_enabled: false
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# platform collection version
|
||||
platform_collection_version: 10.6.1
|
||||
platform_collection_version: 10.6.2
|
||||
|
||||
# indicates were this collection was downlaoded from (galaxy, automation_hub, standalone)
|
||||
ansible_marketplace: galaxy
|
||||
|
||||
Reference in New Issue
Block a user