File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -649,6 +649,7 @@ Chart configuration is as follows:
649649| `autoscaling.targetMemoryUtilizationPercentage` | `""` | When to scale up |
650650| `autoscaling.labels` | `{}` | Additional HPA labels |
651651| `autoscaling.annotations` | `{}` | Additional HPA annotations |
652+ | `autoscaling.behavior` | `{}` | [Configurable scaling behavior](https://kubernetes.io/docs/concepts/workloads/autoscaling/horizontal-pod-autoscale/#configurable-scaling-behavior) |
652653| `nodeSelector` | `{}` | Standard Kubernetes stuff |
653654| `tolerations` | `[]` | Standard Kubernetes stuff |
654655| `affinity` | `{}` | Standard Kubernetes stuff |
Original file line number Diff line number Diff line change 4242 type : Utilization
4343 averageUtilization : {{ .Values.autoscaling.targetMemoryUtilizationPercentage }}
4444 {{- end }}
45+ {{- with .Values.autoscaling.behavior }}
46+ behavior :
47+ {{- toYaml . | nindent 4 }}
48+ {{- end }}
4549 {{- else }}
4650 {{- if .Values.autoscaling.targetCPUUtilizationPercentage }}
4751 - type : Resource
Original file line number Diff line number Diff line change @@ -106,6 +106,7 @@ autoscaling:
106106 # targetMemoryUtilizationPercentage: 80
107107 labels : {}
108108 annotations : {}
109+ behavior : {}
109110
110111nodeSelector : {}
111112tolerations : []
You can’t perform that action at this time.
0 commit comments