47 lines
1.7 KiB
YAML
47 lines
1.7 KiB
YAML
{{- if and .Values.prometheus.enabled .Values.prometheus.verticalPodAutoscaler.enabled }}
|
|
apiVersion: autoscaling.k8s.io/v1
|
|
kind: VerticalPodAutoscaler
|
|
metadata:
|
|
name: {{ template "kube-prometheus-stack.fullname" . }}-prometheus
|
|
namespace: {{ template "kube-prometheus-stack.namespace" . }}
|
|
labels:
|
|
app: {{ template "kube-prometheus-stack.name" . }}-prometheus
|
|
{{- include "kube-prometheus-stack.labels" . | nindent 4 }}
|
|
spec:
|
|
{{- with .Values.prometheus.verticalPodAutoscaler.recommenders }}
|
|
recommenders:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
resourcePolicy:
|
|
containerPolicies:
|
|
- containerName: prometheus
|
|
{{- with .Values.prometheus.verticalPodAutoscaler.controlledResources }}
|
|
controlledResources:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- if .Values.prometheus.verticalPodAutoscaler.controlledValues }}
|
|
controlledValues: {{ .Values.prometheus.verticalPodAutoscaler.controlledValues }}
|
|
{{- end }}
|
|
{{- if .Values.prometheus.verticalPodAutoscaler.maxAllowed }}
|
|
maxAllowed:
|
|
{{- toYaml .Values.prometheus.verticalPodAutoscaler.maxAllowed | nindent 8 }}
|
|
{{- end }}
|
|
{{- if .Values.prometheus.verticalPodAutoscaler.minAllowed }}
|
|
minAllowed:
|
|
{{- toYaml .Values.prometheus.verticalPodAutoscaler.minAllowed | nindent 8 }}
|
|
{{- end }}
|
|
targetRef:
|
|
{{- if .Values.prometheus.agentMode }}
|
|
apiVersion: monitoring.coreos.com/v1alpha1
|
|
kind: PrometheusAgent
|
|
{{- else }}
|
|
apiVersion: monitoring.coreos.com/v1
|
|
kind: Prometheus
|
|
{{- end }}
|
|
name: {{ template "kube-prometheus-stack.prometheus.crname" . }}
|
|
{{- with .Values.prometheus.verticalPodAutoscaler.updatePolicy }}
|
|
updatePolicy:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- end }}
|