Installing Tacker via OpenStack-Helm requires multiple manual steps, including setting up prerequisites, configuring the environment, and deploying components. This process is often error-prone and time-consuming, particularly for new users. This patch introduces a Python-based automation script that simplifies the installation by handling prerequisites and automating the deployment workflow. A documentation file is also included to guide users on how to use the script. Change-Id: I0247bad933b6cce6433ec8e17994e1ceda75f247 Signed-off-by: Shivam Shukla <shivam.shukla3@india.nec.com>
10 lines
137 B
YAML
10 lines
137 B
YAML
---
|
|
- hosts: all
|
|
become: true
|
|
gather_facts: true
|
|
roles:
|
|
- ensure-python
|
|
- ensure-pip
|
|
- clear-firewall
|
|
- deploy-env
|