Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aerialls/madalynn-packer
Packer configuration for Ubuntu Server 18.04, 20.04 and 22.04 for Proxmox.
https://github.com/aerialls/madalynn-packer
ansible packer proxmox ubuntu ubuntu-1804 ubuntu-2004 ubuntu-2204
Last synced: 4 days ago
JSON representation
Packer configuration for Ubuntu Server 18.04, 20.04 and 22.04 for Proxmox.
- Host: GitHub
- URL: https://github.com/aerialls/madalynn-packer
- Owner: aerialls
- License: mit
- Created: 2019-06-16T21:51:28.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-05-15T18:39:08.000Z (over 1 year ago)
- Last Synced: 2024-08-02T16:09:09.746Z (3 months ago)
- Topics: ansible, packer, proxmox, ubuntu, ubuntu-1804, ubuntu-2004, ubuntu-2204
- Language: Shell
- Homepage:
- Size: 12.7 KB
- Stars: 91
- Watchers: 7
- Forks: 30
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Madalynn Packer
This repository contains Packer files to build Ubuntu images for my personal infrastructure on Proxmox. Two LTS versions are available.
* **Ubuntu Server 18.04 (ubuntu-18.04)** based on preseeds (this setup can be also used for Ubuntu Server 18.10, 19.04 and 19.10).
* **Ubuntu Server 20.04 (ubuntu-20.04)** based on *autoinstalls* using cloud-init.
* **Ubuntu Server 22.04 (ubuntu-22.04)** based on *autoinstalls* using cloud-init.Feel free to fork or edit what you need.
## Build
Each version can be used the same way. To launch the build of the Ubuntu image, just run the following command inside the `ubuntu-XX.04` directory.
```sh
$ packer build -var-file=secrets.json ubuntu.json
```You will need a `secrets.json` file like the following.
```json
{
"proxmox_username": "packer@pve",
"proxmox_password": "fQk9f5Wd22aBgv"
}
```You can also override the following parameters directly within the `secrets.json` file.
```json
{
"proxmox_vm_id": "201",
"proxmox_template_name": "ubuntu-22.04",
"ubuntu_iso_file": "ubuntu-22.04-live-server-amd64.iso"
}
```