6290322f1b
- VM stack 10 charts: victoria-metrics-cluster/auth, victoria-logs-cluster, victoria-metrics-agent/alert, opentelemetry-collector, kube-state-metrics, prometheus-node-exporter, alertmanager, perses (JWT/OIDC, Infisical-ready) - ArgoCD ApplicationSet (syncWave) + per-chart dip-values overlays - doc/victoria-metrics-architecture.md, define-chart-resources updates - includes pending working-tree changes (mlflow, kubeflow, apisix, CLAUDE.md) Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
29 lines
946 B
YAML
29 lines
946 B
YAML
{{- $vpa := .Values.verticalPodAutoscaling | default .Values.verticalPodAutoscaler }}
|
|
{{- if and (.Capabilities.APIVersions.Has "autoscaling.k8s.io/v1") $vpa.enabled }}
|
|
{{- $ctx := dict "helm" . }}
|
|
{{- $fullname := include "vm.plain.fullname" $ctx }}
|
|
{{- $ns := include "vm.namespace" $ctx }}
|
|
apiVersion: autoscaling.k8s.io/v1
|
|
kind: VerticalPodAutoscaler
|
|
metadata:
|
|
{{- $_ := set $ctx "extraLabels" .Values.extraLabels }}
|
|
labels: {{ include "vm.labels" $ctx | nindent 4 }}
|
|
{{- $_ := unset $ctx "extraLabels" }}
|
|
name: {{ $fullname }}
|
|
namespace: {{ $ns }}
|
|
spec:
|
|
{{- with $vpa.recommenders }}
|
|
recommenders: {{ toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
targetRef:
|
|
apiVersion: apps/v1
|
|
kind: {{ title .Values.mode }}
|
|
name: {{ $fullname }}
|
|
{{- with $vpa.updatePolicy }}
|
|
updatePolicy: {{ toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- with $vpa.resourcePolicy }}
|
|
resourcePolicy: {{ toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- end }}
|