012aaadacc
A new release is added to the cluster: Name: metrics-server Namespace: kube-system Version: 3.11.0 Chart: metrics-server/metrics-server
40 lines
1.3 KiB
YAML
40 lines
1.3 KiB
YAML
{{- if and .Values.pilot.autoscaleEnabled .Values.pilot.autoscaleMin .Values.pilot.autoscaleMax }}
|
|
apiVersion: autoscaling/v2
|
|
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" | quote }}
|
|
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
|
|
target:
|
|
type: Utilization
|
|
averageUtilization: {{ .Values.pilot.cpu.targetAverageUtilization }}
|
|
{{- if .Values.pilot.memory.targetAverageUtilization }}
|
|
- type: Resource
|
|
resource:
|
|
name: memory
|
|
target:
|
|
type: Utilization
|
|
averageUtilization: {{ .Values.pilot.memory.targetAverageUtilization }}
|
|
{{- end }}
|
|
{{- if .Values.pilot.autoscaleBehavior }}
|
|
behavior: {{ toYaml .Values.pilot.autoscaleBehavior | nindent 4 }}
|
|
{{- end }}
|
|
---
|
|
{{- end }}
|