mirror of
https://github.com/truecharts/library-charts.git
synced 2026-07-05 11:56:20 -03:00
fix(common): correct operator validation typo
This commit is contained in:
@@ -15,4 +15,4 @@ maintainers:
|
||||
name: common
|
||||
sources: null
|
||||
type: library
|
||||
version: 14.0.0
|
||||
version: 14.0.1
|
||||
|
||||
@@ -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 -}}
|
||||
|
||||
Reference in New Issue
Block a user