Ansible
My Plan for Homelab as …
Introduction
I’ve spent the last several weeks playing around with Kubernetes in my homelab. I haven’t actually migrated any services that I’m running to Kubernetes yet though. Not even close. I’ve spent this time in a true lab environment. I’ve been trying things out. …
Running LLMs From My …
Introduction
If you’re not living under a rock, you have probably used a Large Language Model (LLM). Something like ChatGPT, Google’s Gemini, Claude etc.
Maybe you used it to help you write some code. Maybe you used it to help you with your homework (or to do your homework for you). …
How I Deploy Services in …
Introduction
A while back I flung myself head-first into the deep, dark rabbit hole that was learning Ansible. The more I learned about it, the more I began using it for everything; even if it wasn’t the best tool for the job, like provisioning VMs in Proxmox.
I started writing a playbook for …
How Handlers Work in …
Introduction
I recently ran into a frustration while working on some Ansible roles. I was attempting to use an Ansible handler to reset the SSH connection after making a change to a user.
My role was attempting to install Docker, add the Ansible User to the Docker Group, and deploy a container. …
Ansible for …
If you’ve followed my recent posts, you’ll know that I’ve been on a learning journey to pick up Ansible for automating my homelab. The goal was to have one master playbook, ‘one playbook to rule them all,’ which would not only handle configuring servers and managing my services running in Docker but …
Deploying Proxmox VMs …
Earlier this week I tried using Ansible to declaratively define the VMs in my homelab’s Proxmox cluster. My method of attack was to basically ‘lift and shift’ my manual methods into an automation platform.
What do I mean by this? Well, my manual method was to right-click and clone a cloud-init …