Changes after review

This commit is contained in:
Azra Sulthana
2019-07-11 06:18:28 +00:00
parent 8fbf76ab3e
commit 89dce3ccfa
4 changed files with 1 additions and 38 deletions

View File

@@ -5,7 +5,6 @@
state: directory
path: "{{ atl_shared_mountpoint }}"
mode: 0755
when: atl_product_edition!= "crowd"
- name: Enable mountpoint in fstab
mount:
@@ -14,4 +13,3 @@
fstype: efs
opts: "defaults,_netdev"
state: mounted
when: atl_product_edition!= "crowd"

View File

@@ -19,7 +19,7 @@ atl_tomcat_minsparethreads: "10"
atl_tomcat_port: "8080"
atl_tomcat_redirectport: "8443"
atl_tomcat_secure: "true"
atl_tomcat_scheme: "https"
atl_tomcat_scheme: "http"
atl_proxy_port: "443"
atl_tomcat_protocol: "HTTP/1.1"
atl_tomcat_contextpath: ""

View File

@@ -1,12 +1,5 @@
---
- name: Create database config
template:
src: dbconfig.xml.j2
dest: "{{ atl_product_home }}/dbconfig.xml"
owner: "{{ atl_product_user }}"
- name: Create cluster config
template:
src: cluster.properties.j2

View File

@@ -1,28 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<crowd-database-config>
<name>defaultDS</name>
<delegator-name>default</delegator-name>
<database-type>postgres72</database-type>
<schema-name>public</schema-name>
<jdbc-datasource>
<url>{{ atl_jdbc_url }}</url>
<username>{{ atl_jdbc_user }}</username>
<password>{{ atl_jdbc_password }}</password>
<driver-class>{{ atl_db_driver }}</driver-class>
<pool-min-size>{{ atl_db_poolminsize }}</pool-min-size>
<pool-max-size>{{ atl_db_poolmaxsize }}</pool-max-size>
<pool-min-idle>{{ atl_db_minidle }}</pool-min-idle>
<pool-max-idle>{{ atl_db_maxidle }}</pool-max-idle>
<pool-max-wait>{{ atl_db_maxwaitmillis }}</pool-max-wait>
<validation-query>select 1</validation-query>
<time-between-eviction-runs-millis>{{ atl_db_timebetweenevictionrunsmillis }}</time-between-eviction-runs-millis>
<min-evictable-idle-time-millis>{{ atl_db_minevictableidletimemillis }}</min-evictable-idle-time-millis>
<pool-remove-abandoned>{{ atl_db_removeabandoned }}</pool-remove-abandoned>
<pool-remove-abandoned-timeout>{{ atl_db_removeabandonedtimeout }}</pool-remove-abandoned-timeout>
<pool-test-while-idle>{{ atl_db_testwhileidle }}</pool-test-while-idle>
<pool-test-on-borrow>{{ atl_db_testonborrow }}</pool-test-on-borrow>
</jdbc-datasource>
</crowd-database-config>