Hello, I installer a K8s cluster and the applied the kube-state-metrics from the marketplace, but I noticed that I’ve been getting a ton of this messages:
E0709 22:58:00.106317 1 reflector.go:156] pkg/mod/k8s.io/client-go@v0.0.0-20191109102209-3c0d1af94be5/tools/cache/reflector.go:108:
Failed to list *v1beta2.VerticalPodAutoscaler: the server could not find the requested resource (get verticalpodautoscalers.autoscaling.k8s.io)
Any ideas?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi there,
The error message you’re encountering indicates that
kube-state-metrics
is trying to access theVerticalPodAutoscaler
resource in your Kubernetes cluster, but it’s unable to find it.What is the version of your cluster? HPA should now be available out of the box:
In case that you need to you can also enable Cluster Autoscaler as well now:
Best,
Bobby