42 lines
1.5 KiB
YAML
42 lines
1.5 KiB
YAML
|
|
{{- if and (.Values.autoscaling.enabled) (not .Values.keda.enabled) }}
|
||
|
|
apiVersion: {{ ternary "autoscaling/v2" "autoscaling/v2beta2" (.Capabilities.APIVersions.Has "autoscaling/v2") }}
|
||
|
|
kind: HorizontalPodAutoscaler
|
||
|
|
metadata:
|
||
|
|
name: {{ include "appsmith.fullname" . }}
|
||
|
|
namespace: {{ include "appsmith.namespace" . }}
|
||
|
|
labels:
|
||
|
|
{{- include "appsmith.labels" . | nindent 4 }}
|
||
|
|
spec:
|
||
|
|
scaleTargetRef:
|
||
|
|
apiVersion: apps/v1
|
||
|
|
kind: Deployment
|
||
|
|
name: {{ include "appsmith.fullname" . }}
|
||
|
|
minReplicas: {{ .Values.autoscaling.minReplicas }}
|
||
|
|
maxReplicas: {{ .Values.autoscaling.maxReplicas }}
|
||
|
|
metrics:
|
||
|
|
{{- if .Values.autoscaling.targetCPUUtilizationPercentage }}
|
||
|
|
- type: Resource
|
||
|
|
resource:
|
||
|
|
name: cpu
|
||
|
|
{{- if .Capabilities.APIVersions.Has "autoscaling/v2"}}
|
||
|
|
target:
|
||
|
|
type: Utilization
|
||
|
|
averageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }}
|
||
|
|
{{- else }}
|
||
|
|
targetAverageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }}
|
||
|
|
{{- end }}
|
||
|
|
{{- end }}
|
||
|
|
{{- if .Values.autoscaling.targetMemoryUtilizationPercentage }}
|
||
|
|
- type: Resource
|
||
|
|
resource:
|
||
|
|
name: memory
|
||
|
|
{{- if .Capabilities.APIVersions.Has "autoscaling/v2"}}
|
||
|
|
target:
|
||
|
|
type: Utilization
|
||
|
|
averageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }}
|
||
|
|
{{- else }}
|
||
|
|
targetAverageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }}
|
||
|
|
{{- end }}
|
||
|
|
{{- end }}
|
||
|
|
{{- end }}
|