Skip to content

Commit

Permalink
release: update manifest and helm charts for v0.4.4 (#861)
Browse files Browse the repository at this point in the history
Signed-off-by: jerryzhuang <[email protected]>
  • Loading branch information
zhuangqh authored Jan 31, 2025
1 parent 6c118fe commit f1e77a2
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions charts/kaito/workspace/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion charts/kaito/workspace/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion charts/kaito/workspace/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

Expand Down

0 comments on commit f1e77a2

Please sign in to comment.