Replace deprecated helm chart in docs (#83)

Docs used Helm 2 syntax and referenced old repo: https://allegroai.github.io/clearml-server-helm/
This change uses Helm 3 syntax and references new repo: https://allegroai.github.io/clearml-helm-charts
This commit is contained in:
Joe 2021-10-09 02:02:42 -05:00 committed by GitHub
parent 07dfa253de
commit ac7f0bdb74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -88,17 +88,17 @@ After modifying several Elasticsearch settings in the Docker configuration (see
1. Add the clearml-server repository to Helm:
helm repo add allegroai https://allegroai.github.io/clearml-server-helm/
helm repo add allegroai https://allegroai.github.io/clearml-helm-charts
1. Confirm the clearml-server repository is now in Helm:
1. Confirm the clearml repository is now in Helm:
helm search clearml
helm search repo allegroai
The helm search results must include `allegroai/clearml-server-chart`.
The helm search results must include `allegroai/clearml`.
1. Install `clearml-server-chart` on your cluster:
1. Install `clearml` on your cluster:
helm install allegroai/clearml-server-chart --namespace=clearml --name clearml-server
helm install clearml-server allegroai/clearml -n clearml --create-namespace
A clearml `namespace` is created in the cluster and clearml-server is deployed in it.