• Running a kubernetes cluster locally with kubeadm


    I am going to show you how to get a real kubernetes cluster setup locally on top of virtual machines! I will be using multipass but feel free to use virtualbox, proxmox, or whatever your favorite cloud provider is.

    kubeadm is a production ready kubernetes install tool and I prefer to use it over minikube, kind, etc. because it gives you a more real world experience for managing...

  • eksclustergames.com walk through!


    eksclustergames.com is a new CTF targeted at kubernetes vulnerabilities. This is a walk through on how to solve the issues.

    Challenge 1

    The first challenge starts off with a clue:

    Jumpstart your quest by listing all the secrets in the cluster.
    Can you spot the flag among them?
    

    So let us start off by gettin...

  • Running a kubernetes cluster locally with kind


    Previously I showed how to run kubernetes locally with kubeadm and VMs but sometimes that is overkill so I wanted to show how to run kind which is "kubernetes in docker".

    Creating your first cluster

    kind is a very flexible way to run kubernetes locally and allows you to run single...