{"id":35528176,"url":"https://github.com/homestak-dev/ansible","last_synced_at":"2026-03-07T06:09:07.094Z","repository":{"id":331560359,"uuid":"1126846581","full_name":"homestak-dev/ansible","owner":"homestak-dev","description":"Ansible playbooks for Proxmox VE configuration and PVE installation","archived":false,"fork":false,"pushed_at":"2026-02-28T18:21:42.000Z","size":184,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-02-28T21:44:00.024Z","etag":null,"topics":["ansible","homelab","infrastructure-as-code","proxmox"],"latest_commit_sha":null,"homepage":null,"language":"Makefile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/homestak-dev.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-02T17:24:24.000Z","updated_at":"2026-02-28T18:11:25.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/homestak-dev/ansible","commit_stats":null,"previous_names":["homestak-dev/ansible"],"tags_count":42,"template":false,"template_full_name":null,"purl":"pkg:github/homestak-dev/ansible","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/homestak-dev%2Fansible","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/homestak-dev%2Fansible/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/homestak-dev%2Fansible/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/homestak-dev%2Fansible/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/homestak-dev","download_url":"https://codeload.github.com/homestak-dev/ansible/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/homestak-dev%2Fansible/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30208829,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T05:23:27.321Z","status":"ssl_error","status_checked_at":"2026-03-07T05:00:17.256Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ansible","homelab","infrastructure-as-code","proxmox"],"created_at":"2026-01-04T01:16:00.760Z","updated_at":"2026-03-07T06:09:07.070Z","avatar_url":"https://github.com/homestak-dev.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ansible\n\nAnsible playbooks for Proxmox VE configuration and PVE installation.\n\nPart of the [homestak-dev](https://github.com/homestak-dev) organization. See [bootstrap](https://github.com/homestak-dev/bootstrap) for installation.\n\n## Playbooks\n\n| Playbook | Description |\n|----------|-------------|\n| `pve-setup.yml` | Core PVE config (packages, SSH, subscription nag) |\n| `user.yml` | User management (create user, sudo, SSH keys) |\n| `pve-install.yml` | Install PVE on Debian 13 Trixie |\n\n## Install PVE on Debian\n\nInstall Proxmox VE on a fresh Debian 13 (Trixie) system:\n\n```bash\nansible-playbook -i inventory/remote-dev.yml playbooks/pve-install.yml \\\n  -e ansible_host=198.51.100.100 \\\n  -e pve_hostname=pve-new\n```\n\nRequirements:\n- Fresh Debian 13 Trixie with SSH access\n- Static IP configured\n- Secure Boot disabled\n\n## Inventory Options\n\n| Inventory | Connection | Use case |\n|-----------|------------|----------|\n| `local.yml` | local | Running on the host you're configuring |\n| `local-dev.yml` | local | Local with dev tools (strace, tcpdump) |\n| `remote-dev.yml` | SSH | Remote dev/test hosts |\n| `remote-prod.yml` | SSH | Remote production (strict SSH, fail2ban) |\n\n## What It Does\n\n- Creates non-privileged user with sudo\n- Disables enterprise repos, enables no-subscription repo\n- Installs common packages (htop, git, vim, tmux, etc.)\n- Configures SSH hardening\n- Removes subscription nag from web UI\n\n## Structure\n\n```\ncollections/\n└── ansible_collections/\n    └── homestak/\n        ├── debian/           # Debian-generic roles\n        │   └── roles/\n        │       ├── base/         # Packages, timezone\n        │       ├── users/        # User creation, sudo, SSH keys\n        │       ├── security/     # SSH hardening, fail2ban\n        │       └── iac_tools/    # Install packer, tofu\n        └── proxmox/          # PVE-specific roles\n            └── roles/\n                ├── install/      # Install PVE on Debian\n                ├── configure/    # Subscription nag, repos\n                ├── networking/   # Bridge creation, re-IP, rename, DHCP/static\n                └── api_token/    # pveum API token\nroles/\n└── nested-pve/           # Integration testing (not in collections)\nplaybooks/\n├── pve-setup.yml   # Core PVE config\n├── pve-install.yml # Install PVE on Debian\n└── user.yml        # User management\ninventory/\n├── group_vars/     # Environment-specific variables\n├── local.yml\n├── local-dev.yml\n├── remote-dev.yml\n└── remote-prod.yml\n```\n\n## Collections\n\nRoles are organized into two Ansible collections:\n\n- **homestak.debian** - Debian-generic roles (work on any Debian host)\n- **homestak.proxmox** - PVE-specific roles (depends on homestak.debian)\n\nPlaybooks reference roles using FQCN:\n\n```yaml\nroles:\n  - homestak.debian.base\n  - homestak.proxmox.configure\n```\n\n## Documentation\n\nSee [CLAUDE.md](CLAUDE.md) for detailed playbook information and integration testing roles.\n\n## Third-Party Acknowledgments\n\n| Dependency | Purpose | License |\n|------------|---------|---------|\n| [lae.proxmox](https://github.com/lae/ansible-role-proxmox) | Proxmox VE installation on Debian | MIT |\n\n## Related Repos\n\n| Repo | Purpose |\n|------|---------|\n| [bootstrap](https://github.com/homestak-dev/bootstrap) | Entry point - curl\\|bash setup |\n| [site-config](https://github.com/homestak-dev/site-config) | Site-specific secrets and configuration |\n| [iac-driver](https://github.com/homestak-dev/iac-driver) | Orchestration engine |\n| [packer](https://github.com/homestak-dev/packer) | Custom Debian cloud images |\n| [tofu](https://github.com/homestak-dev/tofu) | VM provisioning with OpenTofu |\n\n## License\n\nApache 2.0 - see [LICENSE](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhomestak-dev%2Fansible","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhomestak-dev%2Fansible","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhomestak-dev%2Fansible/lists"}