Compare commits

..

3 Commits

Author SHA1 Message Date
riccardocaselli-clearml
747c018adb Issue 343: [clearml] apiserver-asyncdelete cannot start (-> CrashLoopBackOff in kubernetes) (#353)
Some checks failed
Release Charts / release (push) Has been cancelled
Close inactive issues / close-issues (push) Has been cancelled
Fixed: casted port to string before concatenation

Co-authored-by: Casell <supercasell@gmail.com>
2025-03-12 10:27:22 +01:00
Filippo Brintazzoli
299cc2adb4 Changed: Support kubernetes 1.32 (#351)
Some checks failed
Release Charts / release (push) Has been cancelled
Close inactive issues / close-issues (push) Has been cancelled
Co-authored-by: fbrintazzoli <filippo.brintazzoli@clear.ml>
2025-02-25 11:47:55 +01:00
Filippo Brintazzoli
1479cf9ed2 [Serving] Changed: Support kubernetes 1.32 (#350)
* Changed: Support kubernetes 1.32

* Changed: increase version

---------

Co-authored-by: fbrintazzoli <filippo.brintazzoli@clear.ml>
2025-02-25 11:31:22 +01:00
5 changed files with 12 additions and 12 deletions

View File

@@ -2,9 +2,9 @@ apiVersion: v2
name: clearml-serving
description: ClearML Serving Helm Chart
type: application
version: "1.5.9"
version: "1.5.10"
appVersion: "1.3.0"
kubeVersion: ">= 1.21.0-0 < 1.32.0-0"
kubeVersion: ">= 1.21.0-0 < 1.33.0-0"
home: https://clear.ml
icon: https://raw.githubusercontent.com/clearml/clearml/master/docs/clearml-logo.svg
sources:
@@ -33,5 +33,5 @@ dependencies:
condition: grafana.enabled
annotations:
artifacthub.io/changes: |
- kind: fixed
description: ClearML org rename
- kind: changed
description: Support kubernetes 1.32

View File

@@ -1,6 +1,6 @@
# ClearML Kubernetes Serving
![Version: 1.5.9](https://img.shields.io/badge/Version-1.5.9-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.3.0](https://img.shields.io/badge/AppVersion-1.3.0-informational?style=flat-square)
![Version: 1.5.10](https://img.shields.io/badge/Version-1.5.10-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.3.0](https://img.shields.io/badge/AppVersion-1.3.0-informational?style=flat-square)
ClearML Serving Helm Chart
@@ -49,7 +49,7 @@ helm upgrade clearml-serving clearml/clearml-serving --version <CURRENT CHART VE
## Requirements
Kubernetes: `>= 1.21.0-0 < 1.32.0-0`
Kubernetes: `>= 1.21.0-0 < 1.33.0-0`
| Repository | Name | Version |
|------------|------|---------|

View File

@@ -2,9 +2,9 @@ apiVersion: v2
name: clearml
description: MLOps platform
type: application
version: "7.14.2"
version: "7.14.4"
appVersion: "2.0"
kubeVersion: ">= 1.21.0-0 < 1.32.0-0"
kubeVersion: ">= 1.21.0-0 < 1.33.0-0"
home: https://clear.ml
icon: https://raw.githubusercontent.com/clearml/clearml/master/docs/clearml-logo.svg
sources:
@@ -33,4 +33,4 @@ dependencies:
annotations:
artifacthub.io/changes: |
- kind: fixed
description: "ClearML org rename"
description: "casted port to string before concatenation"

View File

@@ -1,6 +1,6 @@
# ClearML Ecosystem for Kubernetes
![Version: 7.14.2](https://img.shields.io/badge/Version-7.14.2-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
@@ -141,7 +141,7 @@ For detailed instructions, see the [Optional Configuration](https://github.com/c
## Requirements
Kubernetes: `>= 1.21.0-0 < 1.32.0-0`
Kubernetes: `>= 1.21.0-0 < 1.33.0-0`
| Repository | Name | Version |
|------------|------|---------|

View File

@@ -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 }}