Several components alerting as down, kubecontrollermanager, kubescheduler. #717
-
What did you do? Did you expect to see some different? KubeControllerManagerDown
kube-system services:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hi, I had same issue before. But I was using GKE. ...
+ {
# Prometheus patch
prometheus +:: {
# Adjust resource limits
prometheus+:{
spec+:{
resources+:{
requests+:{
memory: "1Gi"
},
},
}
},
# remove unwanted rule groups
rules+:{
spec+:{
groups: [
x for x in super.groups
if std.count([
"kubernetes-system-controller-manager", # unavailable in GKE
"kubernetes-system-scheduler", # unavailable in GKE
"kubernetes-system-apiserver",
"general.rules" # don't use DeadMansSnitch for now
], x.name) == 0
],
}
}
},
... Hope this may help. |
Beta Was this translation helpful? Give feedback.
Hi, I had same issue before. But I was using GKE.
To my understanding, depending on the cluster setup. Some components are not available or visible to the monitoring system.
So I ended up disable the corresponding rules in
config.jsonnet
like this.