-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Description
Which component are you using?:
vertical-pod-autoscaler
What version of the component are you using?:
Component version: vertical-pod-autoscaler-1.2.0
+
Leader election functionality was added in #6985 and is turned off by default
What k8s version are you using (kubectl version
)?:
Any version 1.27+
What environment is this in?:
GKE
What did you expect to happen?:
The self-deployed VPA recommender and the GKE implementation of HPA to continue working.
What happened instead?:
Both the self-deployed VPA recommender and the GKE version use a lease called vpa-recommender
in kube-system
.
If you deploy your own VPA recommender, it might "steal" the lease and prevent the GKE implementation of HPA.
How to reproduce it (as minimally and precisely as possible):
- Create a cluster
- Deploy your own vpa-recommender (eg. using
vpa-up.sh
). Make sure leader election is enabled (leader-elect=true
). - Do something to disrupt the control plane (for example upgrade the version).
- See if your self deployed version of the vpa-recommender has grabbed the lease, if so HPA could stop working.
Anything else?
This is due to the unfortunate naming collision between GKE's system controller (also called vpa-recommender
and the one provided here)