fix(common): correct operator validation typo

This commit is contained in:
Kjeld Schouten
2023-07-31 17:07:56 +02:00
parent fc92fc6849
commit 42f56fe792
2 changed files with 7 additions and 7 deletions

View File

@@ -15,4 +15,4 @@ maintainers:
name: common
sources: null
type: library
version: 14.0.0
version: 14.0.1

View File

@@ -4,9 +4,9 @@
{{- $operatorList := .Values.operator.verify.additionalOperators -}}
{{- $cnpg := false -}}
{{- range $opName := .Values.cnpg -}}
{{- range $opName := $.Values.cnpg -}}
{{- if .enabled -}}
{{- $cnpg := true -}}
{{- $cnpg = true -}}
{{- end -}}
{{- end -}}
{{- if $cnpg -}}
@@ -14,9 +14,9 @@
{{- end -}}
{{- $ingress := false -}}
{{- range $opName := .Values.ingress -}}
{{- range $opName := $.Values.ingress -}}
{{- if .enabled -}}
{{- $ingress := true -}}
{{- $ingress = true -}}
{{- end -}}
{{- end -}}
{{- if $ingress -}}
@@ -24,9 +24,9 @@
{{- end -}}
{{- $metrics := false -}}
{{- range $opName := .Values.metrics -}}
{{- range $opName := $.Values.metrics -}}
{{- if .enabled -}}
{{- $metrics := true -}}
{{- $metrics = true -}}
{{- end -}}
{{- end -}}
{{- if $metrics -}}