From a5bfb2f53c02ac5190ca8d03b1b8b44a975e4f05 Mon Sep 17 00:00:00 2001 From: joshuachp Date: Thu, 16 Jan 2025 13:16:47 +0000 Subject: [PATCH] fix(ingress): `apiVersion` should be `networking.k8s.io/v1` (#1056) The `apiVersion` should be `networking.k8s.io/v1` Reviewed-on: https://code.forgejo.org/forgejo-helm/forgejo-helm/pulls/1056 Co-authored-by: joshuachp Co-committed-by: joshuachp --- templates/gitea/ingress.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/gitea/ingress.yaml b/templates/gitea/ingress.yaml index 02cb725..d764bb6 100644 --- a/templates/gitea/ingress.yaml +++ b/templates/gitea/ingress.yaml @@ -1,6 +1,6 @@ {{- if .Values.ingress.enabled -}} {{- $fullName := include "gitea.fullname" . -}} -apiVersion: networking.k8s.io/v1/Ingress +apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: {{ $fullName }}