Version: 2.1.0
Installing HiTechCloud via Ansible
Use the following Ansible playbook to install HiTechCloud on one or more target machines:
---
- name: Install HiTechCloud on target machine
hosts: all
become: true
vars:
# Customize installation flags as needed. Full list: https://hitechcloud.org/install
hitechcloud_install_flags: "--debug --username=admin --password=super123"
tasks:
- name: Download and run HiTechCloud installer
shell: |
curl -sSL https://hitechcloud.org | bash -s -- {{ hitechcloud_install_flags }}
args:
executable: /bin/bash
Save this as install-hitechcloud.yml and run:
ansible-playbook -i inventory install-hitechcloud.yml
This will automatically install HiTechCloud on all machines in your inventory.