Set Up a Local K8s Cluster Using Terraform

Set Up a Local K8s Cluster Using Terraform
Kind is a tool for running a local kubernetes cluster where docker containers act as nodes. This is a great way to get started learning and using kubernetes before relying on a cloud provider. It nicely integrates with various tools, is thoroughly documented, and supports mutlti-node clusters. We will be using Terraform to provision a kind cluster locally and using Helm to deploy ArgoCD via Terraform as well. Let’s get started!
Read More →

Getting Started With Magit - Part 1

Getting Started With Magit - Part 1
Magit is a comprehensive text-based user interface for Git, it is a convenient and efficient way to interact with Git repositories. It bridges the gap between the Git command-line interface and various graphical user interfaces (GUIs) and is complete enough to allow users to perform both simple and complex version control tasks directly from within Emacs. Without further ado, let’s get started!
Read More →

Timeshift: Friend or Foe?

Timeshift: Friend or Foe?
Timeshift is an application that comes automatically installed and configured on Linux Mint. It is used for taking incremental snapshots of the file system and settings. Today I will be talking about how Timeshift rapidly filled up my file system where I was left with so little space that I couldn’t even login. I will also be talking about what troubleshooting steps I took to alleviate the problem!
Read More →

Kubernetes and Docker: Connecting an App in Kind to Docker

Kubernetes and Docker: Connecting an App in Kind to Docker
Kind stands for kubernetes in docker and is a tool for running a local kubernetes cluster where docker containers act as nodes. This is a great way to get started learning and using kubernetes before relying on a cloud provider. It nicely integrates with tooling, is thoroughly documented, supports mutlti-node clusters and is CNCF certified conformant kubernetes installer. We will be using Kind to deploy an application and then connecting it with a service that was deployed via docker compose. Let’s get started!
Read More →

Using Terraform to Set Up a DigitalOcean Kubernetes Cluster

Using Terraform to Set Up a DigitalOcean Kubernetes Cluster
Terraform is an Infrastructure as Code tool (IaC) which manages resources with configuration files rather than through GUIs or custom scripts. It allows you to build, change, and manage your resources in a safe, consistent, and repeatable way by defining the infrastructure in a declarative way. We will be using Terraform along with Terraform cloud to deploy all of the necessary resources needed to create a DigitalOcean kubernetes cluster.
Read More →