Skip to content

Instantly share code, notes, and snippets.

View mrimp's full-sized avatar
💭
I may be slow to respond.

mrimp mrimp

💭
I may be slow to respond.
  • La La Land
View GitHub Profile
@mrimp
mrimp / Ubuntu_Debian_Cloud_images_in_Proxmox.md
Created October 17, 2021 21:29 — forked from chriswayg/Ubuntu_Debian_Cloud_images_in_Proxmox.md
Ubuntu and Debian Cloud images in Proxmox
@mrimp
mrimp / !proxmox_k3s_cluster.sh
Created September 16, 2021 00:25 — forked from ilude/!proxmox_k3s_cluster.sh
Proxmox k3s cluster creation scripts
#!/bin/bash
# curl -s https://gist.githubusercontent.com/ilude/457f2ef2e59d2bff8bb88b976464bb91/raw/cluster_create_setup.sh?$(date +%s) > ~/bin/setup_cluster.sh; chmod +x ~/bin/setup_cluster.sh; setup_cluster.sh
echo "begin cluster_create_setup.sh"
export CREATE_TEMPLATE=1 #false
while test $# -gt 0; do
case "$1" in
--template)
export CREATE_TEMPLATE=0 #true
@mrimp
mrimp / !proxmox_setup.sh
Created September 2, 2021 21:03 — forked from ilude/proxmox-setup-notes.md
How to setup a community version of Proxmox VE 5.x-6.x (and I think 7.x, but not tested yet)
# copy and paste oneliner below to run
# curl -s https://gist.githubusercontent.com/ilude/32aec45964bc1207810f7e6e49544064/raw/proxmox_setup.sh?$(date +%s) | /bin/bash -s
# Disable Commercial Repo
sed -i "s/^deb/\#deb/" /etc/apt/sources.list.d/pve-enterprise.list
# Add PVE Community Repo
echo "deb http://download.proxmox.com/debian/pve $(grep "VERSION=" /etc/os-release | sed -n 's/.*(\(.*\)).*/\1/p') pve-no-subscription" > /etc/apt/sources.list.d/pve-no-enterprise.list
# setup no nag script to run on upgrade