mirror of
https://github.com/clearml/clearml-helm-charts
synced 2025-04-17 01:31:13 +00:00
254 clearml server helper function wrong readiness probes fail because wrong redis service is referenced (#257)
* Fixed: redis name generation * Changed: bump up version
This commit is contained in:
parent
0892882cf7
commit
5ed9673ea1
@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
name: clearml
|
name: clearml
|
||||||
description: MLOps platform
|
description: MLOps platform
|
||||||
type: application
|
type: application
|
||||||
version: "7.4.0"
|
version: "7.4.1"
|
||||||
appVersion: "1.12.0"
|
appVersion: "1.12.0"
|
||||||
kubeVersion: ">= 1.21.0-0 < 1.29.0-0"
|
kubeVersion: ">= 1.21.0-0 < 1.29.0-0"
|
||||||
home: https://clear.ml
|
home: https://clear.ml
|
||||||
@ -32,5 +32,5 @@ dependencies:
|
|||||||
condition: elasticsearch.enabled
|
condition: elasticsearch.enabled
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: added
|
- kind: fixed
|
||||||
description: service accounts for core clearml components
|
description: redis service name reference generation
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# ClearML Ecosystem for Kubernetes
|
# ClearML Ecosystem for Kubernetes
|
||||||
|
|
||||||
  
|
  
|
||||||
|
|
||||||
MLOps platform
|
MLOps platform
|
||||||
|
|
||||||
|
@ -216,12 +216,8 @@ Redis Service name
|
|||||||
*/}}
|
*/}}
|
||||||
{{- define "redis.servicename" -}}
|
{{- define "redis.servicename" -}}
|
||||||
{{- if .Values.redis.enabled }}
|
{{- if .Values.redis.enabled }}
|
||||||
{{- if eq .Values.redis.architecture "standalone" }}
|
|
||||||
{{- tpl .Values.redis.master.name . }}
|
{{- tpl .Values.redis.master.name . }}
|
||||||
{{- else }}
|
{{- else }}
|
||||||
{{- printf "%s-headless" (tpl .Values.redis.master.name . ) }}
|
|
||||||
{{- end }}
|
|
||||||
{{- else }}
|
|
||||||
{{- .Values.externalServices.redisHost }}
|
{{- .Values.externalServices.redisHost }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
Loading…
Reference in New Issue
Block a user