From 79585f98e08d951f24aeb7d590efa841923feff4 Mon Sep 17 00:00:00 2001 From: majinghe <42570491+majinghe@users.noreply.github.com> Date: Tue, 23 Dec 2025 19:15:29 +0800 Subject: [PATCH] delete userless helm chart file (#1245) --- helm/rustfs/templates/certificate.yml | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 helm/rustfs/templates/certificate.yml diff --git a/helm/rustfs/templates/certificate.yml b/helm/rustfs/templates/certificate.yml deleted file mode 100644 index 7eaf6a33..00000000 --- a/helm/rustfs/templates/certificate.yml +++ /dev/null @@ -1,15 +0,0 @@ -{{- if and .Values.ingress.tls.enabled .Values.ingress.tls.certManager.enabled }} -{{- $host := index .Values.ingress.hosts 0 }} -apiVersion: cert-manager.io/v1 -kind: Certificate -metadata: - name: {{ include "rustfs.fullname" . }}-tls - namespace: {{ .Release.Namespace }} -spec: - secretName: {{ .Values.ingress.tls.secretName }} - issuerRef: - name: {{ .Values.ingress.tls.certManager.issuer.name }} - kind: {{ .Values.ingress.tls.certManager.issuer.kind }} - dnsNames: - - {{ $host.host }} -{{- end }}