From e337ebcb1cf9807af4b71727496a46dbbd66f936 Mon Sep 17 00:00:00 2001 From: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com> Date: Fri, 26 Jul 2024 00:06:30 -0700 Subject: [PATCH] Remove fullname from helm chart since nothing uses it Signed-off-by: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com> --- helm/operator/templates/_helpers.tpl | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/helm/operator/templates/_helpers.tpl b/helm/operator/templates/_helpers.tpl index 9c41dd56972..53e96058c71 100644 --- a/helm/operator/templates/_helpers.tpl +++ b/helm/operator/templates/_helpers.tpl @@ -6,28 +6,6 @@ Expand the name of the chart. {{- default .Chart.Name | trunc 63 | trimSuffix "-" -}} {{- end -}} -{{/* -Create a default fully qualified app name. -We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). -If release name contains chart name it will be used as a full name. -*/}} -{{- define "minio-operator.fullname" -}} - {{- $name := default .Chart.Name -}} - {{- if contains $name .Release.Name -}} - {{- .Release.Name | trunc 63 | trimSuffix "-" -}} - {{- else -}} - {{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} - {{- end -}} -{{- end -}} - -{{/* -Create a default fully qualified console name. -We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). -If release name contains chart name it will be used as a full name. -*/}} -{{- define "minio-operator.console-fullname" -}} - {{- printf "%s-%s" .Release.Name "console" | trunc 63 | trimSuffix "-" -}} -{{- end -}} {{/* Create chart name and version as used by the chart label.