https://github.com/santosh/ansible
Configuration that powers my homelab.
https://github.com/santosh/ansible
ansible certbot dns jenkins nginx tls
Last synced: 5 months ago
JSON representation
Configuration that powers my homelab.
- Host: GitHub
- URL: https://github.com/santosh/ansible
- Owner: santosh
- License: mit
- Created: 2021-10-24T14:33:56.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-07-13T15:03:45.000Z (almost 2 years ago)
- Last Synced: 2025-06-12T01:07:07.009Z (about 1 year ago)
- Topics: ansible, certbot, dns, jenkins, nginx, tls
- Language: Jinja
- Homepage:
- Size: 54.7 KB
- Stars: 4
- Watchers: 1
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ansible-configs
Ansible configs that manages my infrastructure at home and cloud.
## Packages
1. **nginx**: Nginx listens on 80. Current configuration expects Jenkins to be running on 8080.
2. **jenkins**: To configure the pipeline from GitHub.
3. **certbot**: To fetch HTTPS certs.
4. **docker**: To make docker builds inside Jenkins.
5. **rabbitmq**: Experimental purpose.
6. **nfs**: Install and configure NFS clients to use home based NAS.
## How to run a playbook
Regardless of the reusability factor of the roles, most probably you'll use roles from inside a playbook. The following command describes how you can run `docker` playbook.
ansible-playbook -i inventory playbooks/docker.yml
So you must need to pass the inventory file along with the playbook itself. But there is much more going on here. If you open the docker playbook, you'll find against which host this playbook is going to run. You'll find jenkins. Now, inside the inventory file, you must have a name:host mapping for jenkins.
## Platform Support
Most of the configuration here are tested against Ubuntu 20.04 LTS (arm64).