-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OPSEXP-567: Errors appear in alfresco.log (#27)
Moved postgres auth config parts from the repository role to the postgres role. decoupled some roles, as they were pretty tightly coupled and caused problems when starting/restarting serices Minor refactoring
- Loading branch information
Showing
16 changed files
with
183 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
--- | ||
dependency: | ||
name: galaxy | ||
driver: | ||
name: docker | ||
platforms: | ||
- name: instance | ||
image: centos/systemd:latest | ||
privileged: true | ||
volume_mounts: | ||
- "/sys/fs/cgroup:/sys/fs/cgroup:rw" | ||
command: "/usr/sbin/init" | ||
exposed_ports: | ||
- 80/tcp | ||
- 443/tcp | ||
- 5432/tcp | ||
- 8161/tcp | ||
- 8080/tcp | ||
- 8082/tcp | ||
- 8083/tcp | ||
- 8090/tcp | ||
- 8099/tcp | ||
- 8983/tcp | ||
- 9090/tcp | ||
published_ports: | ||
- 0.0.0.0:80:80/tcp | ||
- 0.0.0.0:443:443/tcp | ||
- 0.0.0.0:5432:5432/tcp | ||
- 0.0.0.0:8161:8161/tcp | ||
- 0.0.0.0:8080:8080/tcp | ||
- 0.0.0.0:8082:8082/tcp | ||
- 0.0.0.0:8083:8083/tcp | ||
- 0.0.0.0:8090:8090/tcp | ||
- 0.0.0.0:8099:8099/tcp | ||
- 0.0.0.0:8983:8983/tcp | ||
- 0.0.0.0:9090:9090/tcp | ||
provisioner: | ||
name: ansible | ||
playbooks: | ||
converge: ../../playbooks/acs.yml | ||
verifier: | ||
name: testinfra | ||
directory: tests | ||
env: | ||
ANSIBLE_TIMEOUT: "30" | ||
ANSIBLE_SSH_RETRIES: "15" | ||
PYTHONWARNINGS: "ignore:.*U.*mode is deprecated:DeprecationWarning" | ||
options: | ||
v: 1 | ||
s: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
postgres_client_auth: | ||
- type: local | ||
database: "alfresco" | ||
user: "alfresco" | ||
address: | ||
method: password | ||
- type: host | ||
database: all | ||
user: all | ||
address: 127.0.0.1/32 | ||
method: md5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,5 @@ galaxy_info: | |
|
||
allow_duplicates: false | ||
dependencies: | ||
- repository | ||
- common | ||
- java |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,4 +13,5 @@ galaxy_info: | |
|
||
allow_duplicates: false | ||
dependencies: | ||
- repository | ||
- common | ||
- java |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters