27 lines
956 B
YAML
27 lines
956 B
YAML
|
{{- if and .Values.pilot.autoscaleEnabled .Values.pilot.autoscaleMin .Values.pilot.autoscaleMax }}
|
||
|
apiVersion: autoscaling/v2beta1
|
||
|
kind: HorizontalPodAutoscaler
|
||
|
metadata:
|
||
|
name: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
|
||
|
namespace: {{ .Release.Namespace }}
|
||
|
labels:
|
||
|
app: istiod
|
||
|
release: {{ .Release.Name }}
|
||
|
istio.io/rev: {{ .Values.revision | default "default" }}
|
||
|
install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
|
||
|
operator.istio.io/component: "Pilot"
|
||
|
spec:
|
||
|
maxReplicas: {{ .Values.pilot.autoscaleMax }}
|
||
|
minReplicas: {{ .Values.pilot.autoscaleMin }}
|
||
|
scaleTargetRef:
|
||
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
name: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
|
||
|
metrics:
|
||
|
- type: Resource
|
||
|
resource:
|
||
|
name: cpu
|
||
|
targetAverageUtilization: {{ .Values.pilot.cpu.targetAverageUtilization }}
|
||
|
---
|
||
|
{{- end }}
|