Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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"
```