Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mikepruett3/ansible-role-tidal-agent
Ansible role to install Tidal Workload Automation agent on Linux Servers.
https://github.com/mikepruett3/ansible-role-tidal-agent
Last synced: about 1 month ago
JSON representation
Ansible role to install Tidal Workload Automation agent on Linux Servers.
- Host: GitHub
- URL: https://github.com/mikepruett3/ansible-role-tidal-agent
- Owner: mikepruett3
- License: mit
- Created: 2021-05-10T18:16:11.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-01-12T21:43:19.000Z (12 months ago)
- Last Synced: 2024-01-13T09:52:14.822Z (12 months ago)
- Language: Shell
- Size: 71.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Ansible Role: Tidal Workload Automation agent
=========Ansible role to install [Tidal Workload Automation](https://www.tidalsoftware.com) agent on Linux Servers.
Requirements
------------The role does not require anyting to run on RHEL and its derivatives. It will install OpenJDK to satisfy the Tidal Workload Automation agents Java requirement. This role also assumes that you have the software package located on a web server somewhere in your environment.
Role Variables
--------------Available variables are listed below, along with default values ```(see defaults/main.yml)```:
``` yaml
software_url: "http://www.example.org"
package_name: "tidal-agent-installer.zip"
``````software_url``` **(Required)** The URL that hosts the Installer package. This should be either **http** or **https**.
```package_name``` **(Required)** The Installer package name.
Role variables can be stored with the hosts.yaml file, or in the main variables file.
Dependencies
------------Any Java or JDK (including OpenJDK and OracleJDK). Role will install OpenJDK by default. Run update-alternatives to change the default java after role installation.
Example Playbook
----------------``` yaml
- hosts: servers
roles:
- role: mikepruett3.rapid7_agent
vars:
software_url: "http://www.example.org"
package_name: "tidal-agent-installer.zip"
```License
-------MIT
Author Information
------------------Role created by [mikepruett3](https://github.com/mikepruett3) on [Github.com](https://github.com/mikepruett3/ansible-role-tidal-agent)