Ansible playbook for Network X sysadmin. I'm not sure where I'm going with this.
Clone the repo:
git clone https://github.com/gbenson/nx-admin.git
cd nx-admin
Create a virtual environment:
python3 -m venv venv
. venv/bin/activate
Upgrade pip, and install Ansible:
pip install --upgrade pip ansible
Run the entire playbook:
ansible-playbook main.yml
Skip gathering facts, and run only tasks tagged with "redis":
ANSIBLE_GATHERING=explicit ansible-playbook -t redis main.yml