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-adminCreate a virtual environment:
python3 -m venv venv
. venv/bin/activateUpgrade pip, and install Ansible:
pip install --upgrade pip ansibleRun the entire playbook:
ansible-playbook main.ymlSkip gathering facts, and run only tasks tagged with "redis":
ANSIBLE_GATHERING=explicit ansible-playbook -t redis main.yml