https://github.com/gbenson/nx-admin
Zero-trust sysadmin experiment
https://github.com/gbenson/nx-admin
ansible infra raspberry-pi zero-trust
Last synced: 2 months ago
JSON representation
Zero-trust sysadmin experiment
- Host: GitHub
- URL: https://github.com/gbenson/nx-admin
- Owner: gbenson
- Created: 2023-06-02T09:31:42.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-29T12:22:35.000Z (over 2 years ago)
- Last Synced: 2025-02-12T06:56:12.277Z (over 1 year ago)
- Topics: ansible, infra, raspberry-pi, zero-trust
- Homepage:
- Size: 65.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Network X
Ansible playbook for Network X sysadmin. I'm not sure where I'm going
with this.
## Setup
Clone the repo:
```sh
git clone https://github.com/gbenson/nx-admin.git
cd nx-admin
```
Create a virtual environment:
```sh
python3 -m venv venv
. venv/bin/activate
```
Upgrade pip, and install Ansible:
```sh
pip install --upgrade pip ansible
```
## Usage
Run the entire playbook:
```sh
ansible-playbook main.yml
```
Skip gathering facts, and run only tasks tagged with "redis":
```sh
ANSIBLE_GATHERING=explicit ansible-playbook -t redis main.yml
```