From 747c018adbf1d460d42b6481c93e46334b13e979 Mon Sep 17 00:00:00 2001 From: riccardocaselli-clearml Date: Wed, 12 Mar 2025 10:27:22 +0100 Subject: [PATCH] Issue 343: [clearml] apiserver-asyncdelete cannot start (-> CrashLoopBackOff in kubernetes) (#353) Fixed: casted port to string before concatenation Co-authored-by: Casell --- charts/clearml/Chart.yaml | 6 +++--- charts/clearml/README.md | 2 +- charts/clearml/templates/_helpers.tpl | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/charts/clearml/Chart.yaml b/charts/clearml/Chart.yaml index 90b6581..cdc6039 100644 --- a/charts/clearml/Chart.yaml +++ b/charts/clearml/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: clearml description: MLOps platform type: application -version: "7.14.3" +version: "7.14.4" appVersion: "2.0" kubeVersion: ">= 1.21.0-0 < 1.33.0-0" home: https://clear.ml @@ -32,5 +32,5 @@ dependencies: condition: elasticsearch.enabled annotations: artifacthub.io/changes: | - - kind: changed - description: "Support kubernetes 1.32" + - kind: fixed + description: "casted port to string before concatenation" diff --git a/charts/clearml/README.md b/charts/clearml/README.md index 350fdea..622568e 100644 --- a/charts/clearml/README.md +++ b/charts/clearml/README.md @@ -1,6 +1,6 @@ # ClearML Ecosystem for Kubernetes -![Version: 7.14.3](https://img.shields.io/badge/Version-7.14.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.0](https://img.shields.io/badge/AppVersion-2.0-informational?style=flat-square) +![Version: 7.14.4](https://img.shields.io/badge/Version-7.14.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.0](https://img.shields.io/badge/AppVersion-2.0-informational?style=flat-square) MLOps platform diff --git a/charts/clearml/templates/_helpers.tpl b/charts/clearml/templates/_helpers.tpl index f7e4c80..7afb371 100644 --- a/charts/clearml/templates/_helpers.tpl +++ b/charts/clearml/templates/_helpers.tpl @@ -173,7 +173,7 @@ compose file url {{- end }} {{- printf "%s%s%s" $protocol "://" .Values.fileserver.ingress.hostName }} {{- else }} -{{- printf "%s%s%s%s" "http://" (include "fileserver.referenceName" .) ":" .Values.fileserver.service.port }} +{{- printf "%s%s%s%s" "http://" (include "fileserver.referenceName" .) ":" ( .Values.fileserver.service.port | toString ) }} {{- end }} {{- end }}