Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/juliaaano/rhdm-eap-ansible
Ansible playbook to install Red Hat Decision Manager.
https://github.com/juliaaano/rhdm-eap-ansible
ansible ansible-playbook business-central drools jboss-eap kie-server rhdm rhdm7
Last synced: 6 days ago
JSON representation
Ansible playbook to install Red Hat Decision Manager.
- Host: GitHub
- URL: https://github.com/juliaaano/rhdm-eap-ansible
- Owner: juliaaano
- Created: 2020-01-17T10:39:21.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-09-07T00:59:49.000Z (about 3 years ago)
- Last Synced: 2024-10-11T00:38:16.118Z (28 days ago)
- Topics: ansible, ansible-playbook, business-central, drools, jboss-eap, kie-server, rhdm, rhdm7
- Language: Jinja
- Homepage:
- Size: 141 KB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Red Hat Decision Manager Ansible Installation
**This project is deprectated. Use project [RHPAM EAP Installation](https://github.com/juliaaano/rhpam-eap-ansible) instead.**
---
# Red Hat Decision Manager Ansible Installation
Ansible playbook to install Decision Manager in multiple flavours.
1. Check out the main playbook [site.yml](site.yml) for the plays.
2. Review the variables in groups_vars to tune the installation.
3. Assign hosts to the right group in the [hosts](hosts) inventory file.```
ansible-playbook -i hosts site.yml
```* JBoss EAP, RHDM distros and versions are kept in the role's defaults variables.
### A quickstart project
Once you have the setup up and running, you can import in Central the following project to try it out:
* https://github.com/juliaaano/rhdm-quickstart
### General Advice
Start and stop the JBoss systemd service:
```
ansible -i ./hosts managed --become -m service -a "name=jbosseap7 state=stopped"
ansible -i ./hosts managed --become -m service -a "name=jbosseap7 state=started"
```Enable DEBUG or change the log level:
```
ansible -i ./hosts unmanaged -m shell -a "$JBOSS_EAP_HOME/scripts/change-log-level.sh org.kie DEBUG"
ansible -i ./hosts unmanaged -m shell -a "$JBOSS_EAP_HOME/scripts/change-log-level.sh org.eclipse DEBUG"
ansible -i ./hosts central -m shell -a "$JBOSS_EAP_HOME/scripts/change-log-level.sh org.drools DEBUG"
ansible -i ./hosts central -m shell -a "$JBOSS_EAP_HOME/scripts/change-log-level.sh org.guvnor DEBUG"
ansible -i ./hosts central -m shell -a "$JBOSS_EAP_HOME/scripts/change-log-level.sh org.uberfire DEBUG"
```