add more comments for autoscaling

This commit is contained in:
jessebot
2025-01-19 11:44:02 +01:00
parent d60c867654
commit 0b9e4e7e87
+4 -2
View File
@@ -116,12 +116,14 @@ readinessProbe: {}
# path: /api/service/health-check # path: /api/service/health-check
# port: http # port: http
# This section is for setting up autoscaling
# more information can be found here: https://kubernetes.io/docs/concepts/workloads/autoscaling/
autoscaling: autoscaling:
# -- enable autoscaling. more information can be found [here](https://kubernetes.io/docs/concepts/workloads/autoscaling/)
enabled: false enabled: false
# -- minimum replicas to always keep up
minReplicas: 1 minReplicas: 1
# -- max replicas to scale up to
maxReplicas: 100 maxReplicas: 100
# -- CPU limit a pod needs to hit to start autoscaling new pods
targetCPUUtilizationPercentage: 80 targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80 # targetMemoryUtilizationPercentage: 80