Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 671 Bytes

kubernetes.md

File metadata and controls

19 lines (15 loc) · 671 Bytes

Kubernetes

We run our software in Kubernetes.

Local k3d setup

  1. make install
  2. (Optional) Install Lens from here or use k9s as a low resource consumption alternative from here or from source here
  3. Setup your docker resources, 6vCPU/10Gb RAM are enough for most CL related tasks
  4. k3d cluster create local
  5. Check your contexts with kubectl config get-contexts
  6. Switch context kubectl config use-context k3d-local
  7. Run any tests, use a guide here
  8. Stop the cluster
k3d cluster stop local