Athena

Local Cluster On Windows

Run a local Kubernetes cluster on Windows with kind for athena-operator development and testing.

The easiest local setup for athena-operator on Windows is kind running on Docker Desktop.

Prerequisites

  • Docker Desktop running
  • kubectl
  • kind

Verify the tools first:

docker version
kubectl version --client
kind version

Create The Cluster

kind create cluster --name athena

Verify:

kubectl config current-context
kubectl get nodes

Delete The Cluster

kind delete cluster --name athena