We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'd like to add some basic stats. This will require adding the metrics server : https://github.com/kubernetes-sigs/metrics-server
But this was required by HPA anyway.
The text was updated successfully, but these errors were encountered:
install the metrics server
kubectl apply -f https://github.com/kubernetes-sigs/metrics-server/releases/latest/download/components.yaml
Sorry, something went wrong.
Need to add --kubelet-insecure-tls
--kubelet-insecure-tls
described here : https://k21academy.com/docker-kubernetes/the-server-is-currently-unable-to-handle-the-request/
kubectl edit deployments.apps metrics-server -n kube-system
Not to bad
If there is a problem with the metrics server cert :
kubectl patch deployment metrics-server -n kube-system --type=json -p='[{"op": "add", "path": "/spec/template/spec/containers/0/args/1", "value": "--kubelet-insecure-tls"}]'
mms-gianni
Successfully merging a pull request may close this issue.
I'd like to add some basic stats. This will require adding the metrics server :
https://github.com/kubernetes-sigs/metrics-server
But this was required by HPA anyway.
The text was updated successfully, but these errors were encountered: