Kind data folder (#11)

* explain data folder for kind

* bump up version
This commit is contained in:
Valeriano Manassero 2021-07-16 07:30:09 +02:00 committed by GitHub
parent d269374a49
commit 189de106c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 4 deletions

View File

@ -2,7 +2,7 @@ apiVersion: v2
name: clearml name: clearml
description: MLOps platform description: MLOps platform
type: application type: application
version: "2.0.0-beta1" version: "2.0.0-beta2"
appVersion: "1.0.2" appVersion: "1.0.2"
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/allegroai/clearml/master/docs/clearml-logo.svg

View File

@ -1,6 +1,6 @@
# ClearML Ecosystem for Kubernetes # ClearML Ecosystem for Kubernetes
![Version: 2.0.0-beta1](https://img.shields.io/badge/Version-2.0.0--beta1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.0.2](https://img.shields.io/badge/AppVersion-1.0.2-informational?style=flat-square) ![Version: 2.0.0-beta2](https://img.shields.io/badge/Version-2.0.0--beta2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.0.2](https://img.shields.io/badge/AppVersion-1.0.2-informational?style=flat-square)
MLOps platform MLOps platform
@ -31,6 +31,8 @@ For development/evaluation it's possible to use [kind](https://kind.sigs.k8s.io)
After installation, following commands will create a complete ClearML insatllation: After installation, following commands will create a complete ClearML insatllation:
``` ```
mkdir -pm 777 /tmp/clearml-kind
cat <<EOF > /tmp/clearml-kind.yaml cat <<EOF > /tmp/clearml-kind.yaml
kind: Cluster kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4 apiVersion: kind.x-k8s.io/v1alpha4
@ -50,7 +52,7 @@ nodes:
listenAddress: "127.0.0.1" listenAddress: "127.0.0.1"
protocol: TCP protocol: TCP
extraMounts: extraMounts:
- hostPath: /var/folders/kind/ - hostPath: /tmp/clearml-kind/
containerPath: /var/local-path-provisioner containerPath: /var/local-path-provisioner
EOF EOF
@ -65,6 +67,8 @@ After deployment, the services will be exposed on localhost on the following por
* Web server on `30080` * Web server on `30080`
* File server on `30081` * File server on `30081`
Data persisted in every Kubernetes volume by ClearML will be accessible in /tmp/clearml-kind folder on the host.
## Production cluster environment ## Production cluster environment
In a production environment it's suggested to install an ingress controller and verify that is working correctly. In a production environment it's suggested to install an ingress controller and verify that is working correctly.

View File

@ -28,6 +28,8 @@ For development/evaluation it's possible to use [kind](https://kind.sigs.k8s.io)
After installation, following commands will create a complete ClearML insatllation: After installation, following commands will create a complete ClearML insatllation:
``` ```
mkdir -pm 777 /tmp/clearml-kind
cat <<EOF > /tmp/clearml-kind.yaml cat <<EOF > /tmp/clearml-kind.yaml
kind: Cluster kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4 apiVersion: kind.x-k8s.io/v1alpha4
@ -47,7 +49,7 @@ nodes:
listenAddress: "127.0.0.1" listenAddress: "127.0.0.1"
protocol: TCP protocol: TCP
extraMounts: extraMounts:
- hostPath: /var/folders/kind/ - hostPath: /tmp/clearml-kind/
containerPath: /var/local-path-provisioner containerPath: /var/local-path-provisioner
EOF EOF
@ -62,6 +64,8 @@ After deployment, the services will be exposed on localhost on the following por
* Web server on `30080` * Web server on `30080`
* File server on `30081` * File server on `30081`
Data persisted in every Kubernetes volume by ClearML will be accessible in /tmp/clearml-kind folder on the host.
## Production cluster environment ## Production cluster environment
In a production environment it's suggested to install an ingress controller and verify that is working correctly. In a production environment it's suggested to install an ingress controller and verify that is working correctly.