I am new to the kubernetes world and I am currently stuck with figuring out how to enable endpoints for kube-controller-manager
& kube-scheduler
. In some future, I'll be using the helm kube-prometheus-stack
to scrape those endpoints for metrics. However, for now what would be the right approach to set up those endpoints?
$ kubectl get ep -n kube-system
NAME ENDPOINTS AGE
kube-controller-manager <none> 105d
kube-scheduler <none> 105d
No need to create endpoints for
kube-controller-manage
andkube-scheduler
because they usehostNetwork
and uses ports10257
and10259
respectively.you can verify it checking the manifests "/etc/kubernetes/manifests/" and netstat -nltp or ss -nltp on masternode