Skip to content

Instantly share code, notes, and snippets.

@chadmcrowell
Created February 26, 2026 16:48
Show Gist options
  • Select an option

  • Save chadmcrowell/5f0973460006b8df794a6a76326ae665 to your computer and use it in GitHub Desktop.

Select an option

Save chadmcrowell/5f0973460006b8df794a6a76326ae665 to your computer and use it in GitHub Desktop.
Install Metrics Server for Kind cluster
# metrics server install
kubectl apply -f https://github.com/kubernetes-sigs/metrics-server/releases/download/v0.8.0/components.yaml
# patch it to allow insecure connections (required for kind)
kubectl patch -n kube-system deployment metrics-server --type=json \
-p '[{"op":"add","path":"/spec/template/spec/containers/0/args/-","value":"--kubelet-insecure-tls"}]'
# verify it's running
kubectl top pod
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment