From 36896e3a624fab7282411f73fb9dcedff122ae87 Mon Sep 17 00:00:00 2001 From: Aleksei Pashkin Date: Thu, 2 Nov 2023 10:09:24 +0100 Subject: [PATCH] fixed ingress check-up --- chart/bitwarden-k8s/templates/ingress.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chart/bitwarden-k8s/templates/ingress.yaml b/chart/bitwarden-k8s/templates/ingress.yaml index 507c042..5a6548b 100644 --- a/chart/bitwarden-k8s/templates/ingress.yaml +++ b/chart/bitwarden-k8s/templates/ingress.yaml @@ -1,4 +1,4 @@ -{{- if .Values.ingress.enabled -}} +{{ if or (not (hasKey $.Values.ingress "enabled")) (eq (coalesce $.Values.ingress.enabled false) true) }} {{- $fullName := include "bitwarden-k8s.fullname" . -}} {{- $ingressPath := .Values.ingress.path -}} {{- $ingressApiIsStable := eq (include "bitwarden-k8s.ingress.isStable" .) "true" -}}