From 5ed9673ea1998ccd7bb9f07882d4a1aea67895fc Mon Sep 17 00:00:00 2001 From: Valeriano Manassero <14011549+valeriano-manassero@users.noreply.github.com> Date: Wed, 25 Oct 2023 16:15:15 +0200 Subject: [PATCH] 254 clearml server helper function wrong readiness probes fail because wrong redis service is referenced (#257) * Fixed: redis name generation * Changed: bump up version --- charts/clearml/Chart.yaml | 6 +++--- charts/clearml/README.md | 2 +- charts/clearml/templates/_helpers.tpl | 4 ---- 3 files changed, 4 insertions(+), 8 deletions(-) diff --git a/charts/clearml/Chart.yaml b/charts/clearml/Chart.yaml index 8b11b84..fccfc87 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.4.0" +version: "7.4.1" appVersion: "1.12.0" kubeVersion: ">= 1.21.0-0 < 1.29.0-0" home: https://clear.ml @@ -32,5 +32,5 @@ dependencies: condition: elasticsearch.enabled annotations: artifacthub.io/changes: | - - kind: added - description: service accounts for core clearml components + - kind: fixed + description: redis service name reference generation diff --git a/charts/clearml/README.md b/charts/clearml/README.md index 0719339..a769db7 100644 --- a/charts/clearml/README.md +++ b/charts/clearml/README.md @@ -1,6 +1,6 @@ # ClearML Ecosystem for Kubernetes -![Version: 7.4.0](https://img.shields.io/badge/Version-7.4.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.12.0](https://img.shields.io/badge/AppVersion-1.12.0-informational?style=flat-square) +![Version: 7.4.1](https://img.shields.io/badge/Version-7.4.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.12.0](https://img.shields.io/badge/AppVersion-1.12.0-informational?style=flat-square) MLOps platform diff --git a/charts/clearml/templates/_helpers.tpl b/charts/clearml/templates/_helpers.tpl index 9bf6a5d..b1e0f17 100644 --- a/charts/clearml/templates/_helpers.tpl +++ b/charts/clearml/templates/_helpers.tpl @@ -216,12 +216,8 @@ Redis Service name */}} {{- define "redis.servicename" -}} {{- if .Values.redis.enabled }} -{{- if eq .Values.redis.architecture "standalone" }} {{- tpl .Values.redis.master.name . }} {{- else }} -{{- printf "%s-headless" (tpl .Values.redis.master.name . ) }} -{{- end }} -{{- else }} {{- .Values.externalServices.redisHost }} {{- end }} {{- end }}