Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hasiotis/home-packer
Home Lab packer recipes
https://github.com/hasiotis/home-packer
Last synced: 11 days ago
JSON representation
Home Lab packer recipes
- Host: GitHub
- URL: https://github.com/hasiotis/home-packer
- Owner: hasiotis
- Created: 2021-04-19T11:46:12.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-27T12:13:41.000Z (9 months ago)
- Last Synced: 2024-04-21T14:23:03.622Z (7 months ago)
- Language: HCL
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Install packer and run this:
```
$ packer init debian12.pkr.hcl
$ packer build --var-file=nuc.pkrvars.hcl debian12.pkr.hcl
```
This will create a DEBIAN12 template.```
$ packer init ubuntu2404.pkr.hcl
$ packer build --var-file=nuc.pkrvars.hcl ubuntu2404.pkr.hcl
```
This will create a UBUNTU2404 template.Where ~/nuc.pkrvars.hcl is:
```
proxmox_url = "https://nuc.hasiotis.loc:8006/"
proxmox_node = "nuc"
proxmox_username = "root@pam"
proxmox_password = "YOUR_PASSWORD"
```