[ansible] JFrog Platform 10.6.2 release (#219)

This commit is contained in:
Ram Mohan Rao Chukka
2022-06-10 04:47:47 +05:30
committed by GitHub
parent 55413d9974
commit 450c237094
15 changed files with 24 additions and 15 deletions

View File

@@ -1,6 +1,10 @@
# 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.
## [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 ## [10.6.1] - May 16, 2022
* Product Updates/fixes * Product Updates/fixes

View File

@@ -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: "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 # The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: "README.md" readme: "README.md"

View File

@@ -1,7 +1,7 @@
# defaults file for artifactory # defaults file for artifactory
# The version of artifactory to install # 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 ) # 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

View File

@@ -1,5 +1,5 @@
# platform collection version # 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) # indicates where this collection was downloaded from (galaxy, automation_hub, standalone)
ansible_marketplace: galaxy ansible_marketplace: galaxy

View File

@@ -4,3 +4,5 @@
server_name: test.artifactory.com server_name: test.artifactory.com
nginx_daemon: nginx nginx_daemon: nginx
nginx_worker_processes: 1

View File

@@ -13,8 +13,8 @@
- name: Copy nginx.conf file - name: Copy nginx.conf file
become: yes become: yes
copy: template:
src: nginx.conf src: nginx.conf.j2
dest: /etc/nginx/nginx.conf dest: /etc/nginx/nginx.conf
owner: root owner: root
group: root group: root

View File

@@ -1,5 +1,5 @@
#user nobody; #user nobody;
worker_processes 1; worker_processes {{ nginx_worker_processes }};
error_log /var/log/nginx/error.log info; error_log /var/log/nginx/error.log info;
#pid logs/nginx.pid; #pid logs/nginx.pid;
events { events {

View File

@@ -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" * _server_name_: This is the server name. eg. "artifactory.54.175.51.178.xip.io"
* _certificate_: This is the SSL cert. * _certificate_: This is the SSL cert.
* _certificate_key_: This is the SSL private key. * _certificate_key_: This is the SSL private key.
* _nginx_worker_processes_: The worker_processes configuration for nginx. Defaults to 1.

View File

@@ -6,3 +6,5 @@
nginx_daemon: nginx nginx_daemon: nginx
redirect_http_to_https_enabled: true redirect_http_to_https_enabled: true
nginx_worker_processes: 1

View File

@@ -21,8 +21,8 @@
- name: Configure main nginx conf file. - name: Configure main nginx conf file.
become: yes become: yes
copy: template:
src: nginx.conf src: nginx.conf.j2
dest: /etc/nginx/nginx.conf dest: /etc/nginx/nginx.conf
owner: root owner: root
group: root group: root

View File

@@ -1,5 +1,5 @@
#user nobody; #user nobody;
worker_processes 1; worker_processes {{ nginx_worker_processes }};
error_log /var/log/nginx/error.log info; error_log /var/log/nginx/error.log info;
#pid logs/nginx.pid; #pid logs/nginx.pid;
events { events {

View File

@@ -1,5 +1,5 @@
# platform collection version # 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) # indicates were this collection was downlaoded from (galaxy, automation_hub, standalone)
ansible_marketplace: galaxy ansible_marketplace: galaxy

View File

@@ -1,5 +1,5 @@
# platform collection version # 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) # indicates were this collection was downlaoded from (galaxy, automation_hub, standalone)
ansible_marketplace: galaxy ansible_marketplace: galaxy

View File

@@ -1,7 +1,7 @@
# defaults file for xray # defaults file for xray
# The version of xray to install # The version of xray to install
xray_version: 3.48.2 xray_version: 3.49.0
# whether to enable HA # whether to enable HA
xray_ha_enabled: false xray_ha_enabled: false

View File

@@ -1,5 +1,5 @@
# platform collection version # 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) # indicates were this collection was downlaoded from (galaxy, automation_hub, standalone)
ansible_marketplace: galaxy ansible_marketplace: galaxy