Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lriley2020/homelab-ansible

Ansible tasks and playbooks to automate the deployment of my homelab software stack
https://github.com/lriley2020/homelab-ansible

ansible apcupsd homelab linux self-hosting

Last synced: 12 days ago
JSON representation

Ansible tasks and playbooks to automate the deployment of my homelab software stack

Awesome Lists containing this project

README

        

# homelab-ansible
## (part of) my homelab in ansible form!

This repo contains my efforts to learn IaC with Ansible

### Command snippets

Ping production hosts:
`ansible all -m ping -i production-inventory`

Run on staging playbook:
` ansible-playbook -i staging-inventory site.yml`

Run on production playbook:
`ansible-playbook -i production-inventory site.yml`

Run on production playbook, but skip all except specified host:
`ansible-playbook -i production-inventory site.yml --limit "pve"`