Tag: k8s

  • The Terraform Toolkit: Spinning Up an EKS Cluster

    Creating an Amazon EKS (Elastic Kubernetes Service) cluster using Terraform involves a series of carefully orchestrated steps. Each step can be encapsulated within its own Terraform module for better modularity and reusability. Here’s a breakdown of how to structure your Terraform project to deploy an EKS cluster on AWS. 1. VPC Module 2. EKS Module…

  • Setting Up Kubernetes on Bare Metal: A Guide to Kubeadm and Kubespray

    Kubernetes is a powerful container orchestration platform, widely used to manage containerized applications in production environments. While cloud providers offer managed Kubernetes services, there are scenarios where you might need to set up Kubernetes on bare metal servers. Two popular tools for setting up Kubernetes on bare metal are Kubeadm and Kubespray. This article will…