Fixed: ClearML org rename (#344)

Co-authored-by: fbrintazzoli <filippo.brintazzoli@clear.ml>
This commit is contained in:
Filippo Brintazzoli 2025-01-21 17:03:00 +01:00 committed by GitHub
parent 4cd31fa843
commit 966a0e69ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 23 additions and 25 deletions

View File

@ -2,14 +2,14 @@ apiVersion: v2
name: clearml name: clearml
description: MLOps platform description: MLOps platform
type: application type: application
version: "7.14.1" version: "7.14.2"
appVersion: "2.0" appVersion: "2.0"
kubeVersion: ">= 1.21.0-0 < 1.32.0-0" kubeVersion: ">= 1.21.0-0 < 1.32.0-0"
home: https://clear.ml home: https://clear.ml
icon: https://raw.githubusercontent.com/allegroai/clearml/master/docs/clearml-logo.svg icon: https://raw.githubusercontent.com/clearml/clearml/master/docs/clearml-logo.svg
sources: sources:
- https://github.com/allegroai/clearml-helm-charts - https://github.com/clearml/clearml-helm-charts
- https://github.com/allegroai/clearml - https://github.com/clearml/clearml
maintainers: maintainers:
- name: filippo-clearml - name: filippo-clearml
url: https://github.com/filippo-clearml url: https://github.com/filippo-clearml
@ -32,7 +32,5 @@ dependencies:
condition: elasticsearch.enabled condition: elasticsearch.enabled
annotations: annotations:
artifacthub.io/changes: | artifacthub.io/changes: |
- kind: changed - kind: fixed
description: "Updated to MongoDB v6" description: "ClearML org rename"
- kind: changed
description: "Updated app image versions v2.0"

View File

@ -1,6 +1,6 @@
# ClearML Ecosystem for Kubernetes # ClearML Ecosystem for Kubernetes
![Version: 7.14.1](https://img.shields.io/badge/Version-7.14.1-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.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)
MLOps platform MLOps platform
@ -14,7 +14,7 @@ MLOps platform
## Introduction ## Introduction
The **clearml-server** is the backend service infrastructure for [ClearML](https://github.com/allegroai/clearml). The **clearml-server** is the backend service infrastructure for [ClearML](https://github.com/clearml/clearml).
It allows multiple users to collaborate and manage their experiments. It allows multiple users to collaborate and manage their experiments.
**clearml-server** contains the following components: **clearml-server** contains the following components:
@ -30,7 +30,7 @@ It allows multiple users to collaborate and manage their experiments.
To add this chart to your local Helm repository: To add this chart to your local Helm repository:
``` ```
helm repo add allegroai https://allegroai.github.io/clearml-helm-charts helm repo add clearml https://clearml.github.io/clearml-helm-charts
``` ```
## Local environment ## Local environment
@ -68,7 +68,7 @@ nodes:
containerPath: /var/local-path-provisioner containerPath: /var/local-path-provisioner
EOF EOF
helm install clearml allegroai/clearml helm install clearml clearml/clearml
``` ```
After deployment, the services will be exposed on localhost on the following ports: After deployment, the services will be exposed on localhost on the following ports:
@ -96,7 +96,7 @@ Just pointing the domain records to the IP where ingress controller is respondin
A production ready cluster should also have some different configuration like the one proposed in `values-production.yaml` that can be applied with: A production ready cluster should also have some different configuration like the one proposed in `values-production.yaml` that can be applied with:
``` ```
helm install clearml allegroai/clearml -f values-production.yaml helm install clearml clearml/clearml -f values-production.yaml
``` ```
## Upgrades/ Values upgrades ## Upgrades/ Values upgrades
@ -105,13 +105,13 @@ Updating to latest version of this chart can be done in two steps:
``` ```
helm repo update helm repo update
helm upgrade clearml allegroai/clearml helm upgrade clearml clearml/clearml
``` ```
Changing values on existing installation can be done with: Changing values on existing installation can be done with:
``` ```
helm upgrade clearml allegroai/clearml --version <CURRENT CHART VERSION> -f custom_values.yaml helm upgrade clearml clearml/clearml --version <CURRENT CHART VERSION> -f custom_values.yaml
``` ```
Please note: updating values only should always be done setting explicit chart version to avoid a possible chart update. Please note: updating values only should always be done setting explicit chart version to avoid a possible chart update.
@ -132,12 +132,12 @@ You can also configure the **clearml-server** for:
* fixed users (users with credentials) * fixed users (users with credentials)
* non-responsive experiment watchdog settings * non-responsive experiment watchdog settings
For detailed instructions, see the [Optional Configuration](https://github.com/allegroai/clearml-server#optional-configuration) section in the **clearml-server** repository README file. For detailed instructions, see the [Optional Configuration](https://github.com/clearml/clearml-server#optional-configuration) section in the **clearml-server** repository README file.
## Source Code ## Source Code
* <https://github.com/allegroai/clearml-helm-charts> * <https://github.com/clearml/clearml-helm-charts>
* <https://github.com/allegroai/clearml> * <https://github.com/clearml/clearml>
## Requirements ## Requirements

View File

@ -11,7 +11,7 @@
## Introduction ## Introduction
The **clearml-server** is the backend service infrastructure for [ClearML](https://github.com/allegroai/clearml). The **clearml-server** is the backend service infrastructure for [ClearML](https://github.com/clearml/clearml).
It allows multiple users to collaborate and manage their experiments. It allows multiple users to collaborate and manage their experiments.
**clearml-server** contains the following components: **clearml-server** contains the following components:
@ -27,7 +27,7 @@ It allows multiple users to collaborate and manage their experiments.
To add this chart to your local Helm repository: To add this chart to your local Helm repository:
``` ```
helm repo add allegroai https://allegroai.github.io/clearml-helm-charts helm repo add clearml https://clearml.github.io/clearml-helm-charts
``` ```
## Local environment ## Local environment
@ -65,7 +65,7 @@ nodes:
containerPath: /var/local-path-provisioner containerPath: /var/local-path-provisioner
EOF EOF
helm install clearml allegroai/clearml helm install clearml clearml/clearml
``` ```
After deployment, the services will be exposed on localhost on the following ports: After deployment, the services will be exposed on localhost on the following ports:
@ -93,7 +93,7 @@ Just pointing the domain records to the IP where ingress controller is respondin
A production ready cluster should also have some different configuration like the one proposed in `values-production.yaml` that can be applied with: A production ready cluster should also have some different configuration like the one proposed in `values-production.yaml` that can be applied with:
``` ```
helm install clearml allegroai/clearml -f values-production.yaml helm install clearml clearml/clearml -f values-production.yaml
``` ```
## Upgrades/ Values upgrades ## Upgrades/ Values upgrades
@ -102,13 +102,13 @@ Updating to latest version of this chart can be done in two steps:
``` ```
helm repo update helm repo update
helm upgrade clearml allegroai/clearml helm upgrade clearml clearml/clearml
``` ```
Changing values on existing installation can be done with: Changing values on existing installation can be done with:
``` ```
helm upgrade clearml allegroai/clearml --version <CURRENT CHART VERSION> -f custom_values.yaml helm upgrade clearml clearml/clearml --version <CURRENT CHART VERSION> -f custom_values.yaml
``` ```
Please note: updating values only should always be done setting explicit chart version to avoid a possible chart update. Please note: updating values only should always be done setting explicit chart version to avoid a possible chart update.
@ -129,7 +129,7 @@ You can also configure the **clearml-server** for:
* fixed users (users with credentials) * fixed users (users with credentials)
* non-responsive experiment watchdog settings * non-responsive experiment watchdog settings
For detailed instructions, see the [Optional Configuration](https://github.com/allegroai/clearml-server#optional-configuration) section in the **clearml-server** repository README file. For detailed instructions, see the [Optional Configuration](https://github.com/clearml/clearml-server#optional-configuration) section in the **clearml-server** repository README file.
{{ template "chart.sourcesSection" . }} {{ template "chart.sourcesSection" . }}