Skip to content

Latest commit

 

History

History
61 lines (43 loc) · 1.16 KB

README.adoc

File metadata and controls

61 lines (43 loc) · 1.16 KB

AWX

This document describes the AWX installation and administration process.

Execution Environments

Usage

Install awx cli

Create a Python Virtual Environment

python  -m venv /z/python-venv/3.12

Enable include-system-site-packages on the venv configuarion file.

sed -i "s/include-system-site-packages = false/include-system-site-packages = true/g" /z/python-venv/3.12/pyvenv.cfg

Activate the Python venv.

source /z/python-venv/3.12/bin/activate

Install Ansible Tower CLI.

pip install --user https://releases.ansible.com/ansible-tower/cli/ansible-tower-cli-latest.tar.gz

Add this project to AWX

Create a project for this infrastructure repository.

awx projects create \
  --name "trikorasolns/infrastructure" \
  --organization <ID> \
  --scm_type git \
  --scm_url https://github.com/trikorasolns/infrastructure