Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/lriley2020/homelab-ansible
- Owner: lriley2020
- Created: 2023-02-19T16:28:11.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-19T22:35:06.000Z (4 months ago)
- Last Synced: 2024-08-20T01:12:31.535Z (4 months ago)
- Topics: ansible, apcupsd, homelab, linux, self-hosting
- Language: Jinja
- Homepage: https://liamriley.me
- Size: 43 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"`