Looking at HPA (pretty new to this), usecase I'm dealing with is to apply the same HPA rules to all deployment (in a specific namespace).
so I'd ideally want to implement something like this :
apiVersion: autoscaling/v1
kind: HorizontalPodAutoscaler
metadata:
name: generalHpa
spec:
scaleTargetRef:
apiVersion: apps/v1
kind: Deployment
name: [deploymentObject1, deploymentObject2, deploymentObject3,...]
minReplicas: 1
maxReplicas: 10
targetCPUUtilizationPercentage: 50
I was hoping to handle this via label/selector, whereas all deployment objects are marked with a specific label (e.g. enableHpa
) and somehow use selector/macthLabels inside HorizontalPodAutoscaler
to apply it to all those objects.
But it looks like name
is required, and need to be targeted to a specific deployment object.
Any suggestion on how to handle this case and avoid creating hpa
s one by one for every single deployment
by name?
There are two ways of setting up a new
HorizontalPodAutoscaler
object:Imperative approach i.e. by invoking
kubectl autoscale
command:The first approach doesn't leave much room for further interpretation. The syntax is strictly specified and you cannot do much about it. As you can see both
kind
andname
of our scaling target should be specified and although your pseudo code may seem like an interesting proposal, it have no chances to work. According to the specificationname
field is a map/dictionary and a list simply cannot be used in this context.When it comes to the imperative approach, actually you can automate it by using a fairly simple bash one-liner and make your life a bit easier. If you have... let's say 50 different deployments and you want to
autoscale
all of them, it can save you a lot of time.For the sake of simplicity I've created only 3 different deployments:
In order not to create hpa one by one manually, I used the following one-liner bash script:
the result of which is:
Command:
returns only the names of your deployments, so they can be easily iterated through a
for
loop. Notice that we still have 1-to-1 relation here. To oneDeployment
corresponds exactly oneHorizontalPodAutoscaler
object. If you additionally need to deal with differentnamespaces
, the script can be further expanded.Going back to your specific requirement, the question arises as to the legitimacy of such a solution. Although it may seem quite tempting to manage all your
Deployments
by one singleHorizontalPodAutoscaler
object (less work in the very beginning), if you take a closer look at all potential downsides of such approach, you would probably change your mind quickly. First of all, such solution isn't very scalable. In fact it is not scalable at all. Just imagine that for some reason you want to change thetargetCPUUtilizationPercentage
for a singleDeployment
object. Well... you have a problem. It is managed by one global autoscaler and you need to quickly redesign your environment and create a separate hpa. So 1-to-1 relation betweenHorizontalPodAutoscaler
andDeployment
/ReplicationController
/ReplicaSet
makes a perfect sense. What you usually need is more granular level of control rather than possibility to manage everything by one huge general object.