Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/pardnchiu/cloud-init-proxmox


https://github.com/pardnchiu/cloud-init-proxmox

cloud-init proxmox

Last synced: 8 days ago
JSON representation

Awesome Lists containing this project

README

        

# Import Cloud-init RedHat 9 / Debian 12 / Ubuntu 22 to Proxmox

- Proxmox 8.1.3
- storage ZFS
- [Proxmox Doc](https://pve.proxmox.com/wiki/Cloud-Init_Support)

## How to use

```sh
-i, --id [VMID]
-s, --storage [Storage ID]
-p, --path [Image Path]
-n, --name [VM Name | default qemu]
-c, --cpu [vCPU Number | default 2]
-r, --ram [RAM | default 2048]
```

- RedHat 9.3
```sh
qm.sh -i 999 -s storage -p rhel-9.3-x86_64-kvm.qcow2;
```
- Debian 12
```sh
wget https://cloud.debian.org/images/cloud/bookworm/latest/debian-12-generic-amd64.qcow2;
qm.sh -i 998 -s storage -p debian-12-generic-amd64.qcow2;
```
- Ubuntu 22.04
```sh
wget https://cloud-images.ubuntu.com/releases/jammy/release/ubuntu-22.04-server-cloudimg-amd64.img;
qm.sh -i 997 -s storage -p ubuntu-22.04-server-cloudimg-amd64.img;
```