my-apps/charts/common/templates/spawner/_verticalPodAutoscaler.tpl
2025-08-24 00:09:37 +03:00

71 lines
3.1 KiB
Smarty

{{/* Vertical Pod Autoscaler Spawner */}}
{{/* Call this template:
{{ include "tc.v1.common.spawner.vpa" $ -}}
*/}}
{{- define "tc.v1.common.spawner.vpa" -}}
{{- $fullname := include "tc.v1.common.lib.chart.names.fullname" $ -}}
{{- range $name, $vpa := .Values.vpa -}}
{{- $enabledVPA := (include "tc.v1.common.lib.util.enabled" (dict
"rootCtx" $ "objectData" $vpa
"name" $name "caller" "Vertical Pod Autoscaler"
"key" "vpa")) -}}
{{- if ne $enabledVPA "true" -}}{{- continue -}}{{- end -}}
{{- $objectData := (mustDeepCopy $vpa) -}}
{{- $_ := set $objectData "vpaName" $name -}}
{{- include "tc.v1.common.lib.chart.names.validation" (dict "name" $name) -}}
{{- range $workloadName, $workload := $.Values.workload -}}
{{- $enabled := (include "tc.v1.common.lib.util.enabled" (dict
"rootCtx" $ "objectData" $workload
"name" $name "caller" "Vertical Pod Autoscaler"
"key" "workload")) -}}
{{- if ne $enabled "true" -}}{{- continue -}}{{- end -}}
{{- $containerNames := list -}}
{{- range $cName, $c := $workload.podSpec.containers -}}
{{- $enabledContainer := (include "tc.v1.common.lib.util.enabled" (dict
"rootCtx" $ "objectData" $c
"name" $cName "caller" "Vertical Pod Autoscaler"
"key" "workload.podSpec.containers")) -}}
{{- if ne $enabledContainer "true" -}}{{- continue -}}{{- end -}}
{{- $containerNames = mustAppend $containerNames $cName -}}
{{- end -}}
{{- $_ := set $objectData "containerNames" $containerNames -}}
{{- include "tc.v1.common.lib.vpa.validation" (dict "objectData" $objectData "rootCtx" $) -}}
{{/* Create a copy of the workload */}}
{{- $_ := set $objectData "workload" (mustDeepCopy $workload) -}}
{{/* Generate the name of the vpa */}}
{{- $objectName := $fullname -}}
{{- if not $objectData.workload.primary -}}
{{- $objectName = printf "%s-%s" $fullname $workloadName -}}
{{- end -}}
{{/* Perform validations */}}
{{- include "tc.v1.common.lib.chart.names.validation" (dict "name" $objectName) -}}
{{- include "tc.v1.common.lib.metadata.validation" (dict "objectData" $objectData "caller" "Vertical Pod Autoscaler") -}}
{{/* Set the name of the workload */}}
{{- $_ := set $objectData "name" $objectName -}}
{{/* Short name is the one that defined on the chart, used on selectors */}}
{{- $_ := set $objectData "shortName" $workloadName -}}
{{- if or (not $objectData.targetSelector) (mustHas $workloadName $objectData.targetSelector) -}}
{{/* Call class to create the object */}}
{{- $types := (list "Deployment" "StatefulSet" "DaemonSet") -}}
{{- if (mustHas $objectData.workload.type $types) -}}
{{- include "tc.v1.common.class.vpa" (dict "rootCtx" $ "objectData" $objectData) -}}
{{- end -}}
{{- end -}}
{{- end -}}
{{- end -}}
{{- end -}}