fix: do not skip generating certain templates when non-web processes are encountered

This commit is contained in:
Jose Diaz-Gonzalez
2025-08-22 01:24:53 -04:00
parent 637221f450
commit 390a2254a0
3 changed files with 16 additions and 12 deletions

View File

@@ -1,8 +1,4 @@
{{- range $processName, $config := .Values.processes }}
{{- if not (hasKey $config "web") }}
# Skip {{ $processName }} as it doesn't have a web section
{{- continue }}
{{- end }}
{{- $mappings := dict }}
{{- if hasKey $config "web" }}

View File

@@ -1,11 +1,7 @@
{{- if .Capabilities.APIVersions.Has "keda.sh/v1alpha1" -}}
{{- range $processName, $config := .Values.processes }}
{{- if not (hasKey $config "web") }}
# Skip {{ $processName }} as it doesn't have a web section
{{- continue }}
{{- end }}
{{- if and $config.autoscaling (and $config.autoscaling.enabled (eq $config.autoscaling.type "keda")) }}
{{- if and (hasKey $config "autoscaling") (and $config.autoscaling.enabled (eq $config.autoscaling.type "keda")) }}
---
apiVersion: keda.sh/v1alpha1
kind: ScaledObject