From f1e77a22e4c0f39412f714284a530f39ab7e7398 Mon Sep 17 00:00:00 2001 From: jerryzhuang Date: Fri, 31 Jan 2025 12:49:20 +0800 Subject: [PATCH] release: update manifest and helm charts for v0.4.4 (#861) Signed-off-by: jerryzhuang --- Makefile | 2 +- README.md | 2 +- charts/kaito/workspace/Chart.yaml | 4 ++-- charts/kaito/workspace/README.md | 2 +- charts/kaito/workspace/values.yaml | 2 +- docs/installation.md | 2 +- terraform/variables.tf | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index c6ed3f117..d1a4424cb 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ # Image URL to use all building/pushing image targets REGISTRY ?= YOUR_REGISTRY IMG_NAME ?= workspace -VERSION ?= v0.4.3 +VERSION ?= v0.4.4 GPU_PROVISIONER_VERSION ?= 0.3.1 RAGENGINE_IMG_NAME ?= ragengine IMG_TAG ?= $(subst v,,$(VERSION)) diff --git a/README.md b/README.md index 3ab894f64..6848f8897 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ | ![notification](docs/img/bell.svg) What is NEW! | |-------------------------------------------------| -| Latest Release: Jan 30th, 2025. Kaito v0.4.3. **DeepSeek-R1 distilled models are added! (llama-8b and qwen-14b).** | +| Latest Release: Jan 31th, 2025. Kaito v0.4.4. **DeepSeek-R1 distilled models are added! (llama-8b and qwen-14b).** | | First Release: Nov 15th, 2023. Kaito v0.1.0. | Kaito is an operator that automates the AI/ML model inference or tuning workload in a Kubernetes cluster. diff --git a/charts/kaito/workspace/Chart.yaml b/charts/kaito/workspace/Chart.yaml index 9930136e3..80fa81347 100644 --- a/charts/kaito/workspace/Chart.yaml +++ b/charts/kaito/workspace/Chart.yaml @@ -6,13 +6,13 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.4.3 +version: 0.4.4 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: 0.4.3 +appVersion: 0.4.4 home: https://github.com/kaito-project/kaito sources: - https://github.com/kaito-project/kaito diff --git a/charts/kaito/workspace/README.md b/charts/kaito/workspace/README.md index b69e98fcc..9b4282e67 100644 --- a/charts/kaito/workspace/README.md +++ b/charts/kaito/workspace/README.md @@ -5,7 +5,7 @@ ```bash export REGISTRY=mcr.microsoft.com/aks/kaito export IMG_NAME=workspace -export IMG_TAG=0.4.3 +export IMG_TAG=0.4.4 helm install workspace ./charts/kaito/workspace \ --set image.repository=${REGISTRY}/${IMG_NAME} --set image.tag=${IMG_TAG} \ --namespace kaito-workspace --create-namespace diff --git a/charts/kaito/workspace/values.yaml b/charts/kaito/workspace/values.yaml index 87914af27..5ca2c00da 100644 --- a/charts/kaito/workspace/values.yaml +++ b/charts/kaito/workspace/values.yaml @@ -5,7 +5,7 @@ replicaCount: 1 image: repository: mcr.microsoft.com/aks/kaito/workspace pullPolicy: IfNotPresent - tag: 0.4.3 + tag: 0.4.4 imagePullSecrets: [] podAnnotations: {} podSecurityContext: diff --git a/docs/installation.md b/docs/installation.md index fc688f63b..60ba4b4c6 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -42,7 +42,7 @@ az aks install-cli Install the Workspace controller. ```bash -export KAITO_WORKSPACE_VERSION=0.4.3 +export KAITO_WORKSPACE_VERSION=0.4.4 helm install kaito-workspace --set clusterName=$MY_CLUSTER --wait \ https://github.com/kaito-project/kaito/raw/gh-pages/charts/kaito/workspace-$KAITO_WORKSPACE_VERSION.tgz --namespace kaito-workspace --create-namespace diff --git a/terraform/variables.tf b/terraform/variables.tf index 027cba8af..2596b08ac 100644 --- a/terraform/variables.tf +++ b/terraform/variables.tf @@ -12,7 +12,7 @@ variable "kaito_gpu_provisioner_version" { variable "kaito_workspace_version" { type = string - default = "0.4.3" + default = "0.4.4" description = "kaito workspace version" }