From 33883ec64025d8a2ab81fec50019d2605776ea07 Mon Sep 17 00:00:00 2001 From: Jon Date: Sun, 19 Nov 2023 18:31:28 +0930 Subject: [PATCH] fix(ingress): function bool not defined !5 nofusscomputing/infrastructure/configuration-management/inventory-production!3 --- templates/Ingress-Multi.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/Ingress-Multi.yaml b/templates/Ingress-Multi.yaml index 5bec81c..f648446 100644 --- a/templates/Ingress-Multi.yaml +++ b/templates/Ingress-Multi.yaml @@ -1,4 +1,4 @@ -{{ if .Values.nfc_monitoring.alert_manager.ingress.enabled | default "false" | bool -}} +{{ if .Values.nfc_monitoring.alert_manager.ingress.enabled | default "false" -}} --- apiVersion: networking.k8s.io/v1 kind: Ingress @@ -12,7 +12,7 @@ spec: {{ end }} -{{ if .Values.nfc_monitoring.grafana.ingress.enabled | default "false" | bool -}} +{{ if .Values.nfc_monitoring.grafana.ingress.enabled | default "false" -}} --- apiVersion: networking.k8s.io/v1 kind: Ingress @@ -26,7 +26,7 @@ spec: {{ end }} -{{ if .Values.nfc_monitoring.prometheus.ingress.enabled | default "false" | bool -}} +{{ if .Values.nfc_monitoring.prometheus.ingress.enabled | default "false" -}} --- apiVersion: networking.k8s.io/v1 kind: Ingress