This Ansible role automates the deployment and the configuration of the Horizon client on a RHEL machine.
Ansible 2.9 or higher.
To use this role, assign it to an host and pass the variables you wish to preconfigure:
---
- hosts: all
roles:
- role: 'evertrust.horizon_cli'
vars:
endpoint: 'https://horizon.company.com'
Variables that can be passed to this role are document in the defaults/main.yml file.
To uninstall the Horizon client, run the role with the run_option
variable set to uninstall
:
- hosts: all
roles:
- role: 'evertrust.horizon_cli'
vars:
run_option: 'uninstall'