Blog

Local K8s Setup

Configure Kubernetes Locally

  • Install kubectl
  • Install helm:
    • brew install helm
  • Install AWS CLI:
curl "https://awscli.amazonaws.com/AWSCLIV2.pkg" -o "AWSCLIV2.pkg"
sudo installer -pkg AWSCLIV2.pkg -target /

At this point, by default, kubectl tries to verify the local cluster. This local cluster does not exist unless it has been initialized (Minikube, also usable via Docker Desktop or Orbstack).

Read more...