Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pardnchiu/cloud-init-proxmox
https://github.com/pardnchiu/cloud-init-proxmox
cloud-init proxmox
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/pardnchiu/cloud-init-proxmox
- Owner: pardnchiu
- Created: 2023-11-30T21:41:29.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2023-12-01T08:40:47.000Z (12 months ago)
- Last Synced: 2023-12-02T06:31:41.904Z (12 months ago)
- Topics: cloud-init, proxmox
- Language: Shell
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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;
```