Expanding a Proxmox VM cloned using cloudinit

I have been using virtual machines which I setup with cloud init within my homelab. Today I ran into a challenge where I wanted to expand those disks easilly and found out that cloudinit can actually handle this! Simply install sudo apt-get install cloud-initramfs-growroot and then reboot. That's all!…

Remove .DS_Store files from a Git repo

I noticed while working on my new Kubernetes homelab that .DS_Store files were being committed to my Flux GitOps repo. Just documenting how I removed this and prevented future .DS_Store files from being committed. Remove existing .DS_Store files from the repository: find . -name .DS_Store -print0 | xargs…