Created
February 26, 2026 16:48
-
-
Save chadmcrowell/5f0973460006b8df794a6a76326ae665 to your computer and use it in GitHub Desktop.
Install Metrics Server for Kind cluster
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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