Skip to content

Commit cbc20c1

Browse files
authored
release: update manifest and helm charts for v0.7.0 (#1520)
**Reason for Change**: <!-- What does this PR improve or fix in KAITO? Why is it needed? --> release: update manifest and helm charts for v0.7.0 **Requirements** - [ ] added unit tests and e2e tests (if applicable). **Issue Fixed**: <!-- If this PR fixes GitHub issue 4321, add "Fixes #4321" to the next line. --> Closing milestone https://github.com/kaito-project/kaito/milestone/3 **Notes for Reviewers**: Signed-off-by: Ernest Wong <[email protected]>
1 parent 5d7777a commit cbc20c1

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Image URL to use all building/pushing image targets
33
REGISTRY ?= YOUR_REGISTRY
44
IMG_NAME ?= workspace
5-
VERSION ?= v0.6.2
5+
VERSION ?= v0.7.0
66
GPU_PROVISIONER_VERSION ?= 0.3.6
77
RAGENGINE_IMG_NAME ?= ragengine
88
IMG_TAG ?= $(subst v,,$(VERSION))

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
| ![notification](website/static/img/bell.svg) What is NEW! |
1010
| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
1111
| Retrieval Augmented Generation (RAG) support is live! - KAITO RagEngine uses LlamaIndex and FAISS, learn about it [here](https://kaito-project.github.io/kaito/docs/rag)! |
12-
| Latest Release: Sept 10th, 2025. KAITO v0.6.2 |
12+
| Latest Release: Sept 23th, 2025. KAITO v0.7.0 |
1313
| First Release: Nov 15th, 2023. KAITO v0.1.0. |
1414

1515
KAITO is an operator that automates the AI/ML model inference or tuning workload in a Kubernetes cluster.

charts/kaito/ragengine/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ type: application
66
# This is the chart version. This version number should be incremented each time you make changes
77
# to the chart and its templates, including the app version.
88
# Versions are expected to follow Semantic Versioning (https://semver.org/)
9-
version: 0.6.0
9+
version: 0.7.0
1010

1111
# This is the version number of the application being deployed. This version number should be
1212
# incremented each time you make changes to the application. Versions are not expected to
1313
# follow Semantic Versioning. They should reflect the version the application is using.
1414
# It is recommended to use it with quotes.
15-
appVersion: 0.6.0
15+
appVersion: 0.7.0
1616
home: https://github.com/kaito-project/kaito
1717
sources:
1818
- https://github.com/kaito-project/kaito

charts/kaito/ragengine/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ replicaCount: 1
55
image:
66
repository: mcr.microsoft.com/aks/kaito/ragengine
77
pullPolicy: IfNotPresent
8-
tag: 0.6.0
8+
tag: 0.7.0
99
imagePullSecrets: []
1010
podAnnotations: {}
1111
podSecurityContext:
@@ -34,4 +34,4 @@ affinity: {}
3434
cloudProviderName: "azure"
3535
presetRagRegistryName: "mcr.microsoft.com/aks/kaito"
3636
presetRagImageName: "kaito-rag-service"
37-
presetRagImageTag: 0.6.0
37+
presetRagImageTag: 0.7.0

charts/kaito/workspace/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ type: application
66
# This is the chart version. This version number should be incremented each time you make changes
77
# to the chart and its templates, including the app version.
88
# Versions are expected to follow Semantic Versioning (https://semver.org/)
9-
version: 0.6.0
9+
version: 0.7.0
1010

1111
# This is the version number of the application being deployed. This version number should be
1212
# incremented each time you make changes to the application. Versions are not expected to
1313
# follow Semantic Versioning. They should reflect the version the application is using.
1414
# It is recommended to use it with quotes.
15-
appVersion: 0.6.0
15+
appVersion: 0.7.0
1616
home: https://github.com/kaito-project/kaito
1717
sources:
1818
- https://github.com/kaito-project/kaito

charts/kaito/workspace/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
```bash
66
export REGISTRY=mcr.microsoft.com/aks/kaito
77
export IMG_NAME=workspace
8-
export IMG_TAG=0.6.0
8+
export IMG_TAG=0.7.0
99
helm install workspace ./charts/kaito/workspace \
1010
--set image.repository=${REGISTRY}/${IMG_NAME} --set image.tag=${IMG_TAG} \
1111
--namespace kaito-workspace --create-namespace

charts/kaito/workspace/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ replicaCount: 1
55
image:
66
repository: mcr.microsoft.com/aks/kaito/workspace
77
pullPolicy: IfNotPresent
8-
tag: 0.6.0
8+
tag: 0.7.0
99
imagePullSecrets: []
1010
podAnnotations: {}
1111
podSecurityContext:

terraform/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ variable "kaito_gpu_provisioner_version" {
2424

2525
variable "kaito_workspace_version" {
2626
type = string
27-
default = "0.6.2"
27+
default = "0.7.0"
2828
description = "kaito workspace version"
2929
}
3030

@@ -42,6 +42,6 @@ variable "deploy_kaito_ragengine" {
4242

4343
variable "kaito_ragengine_version" {
4444
type = string
45-
default = "0.6.0"
45+
default = "0.7.0"
4646
description = "KAITO RAGEngine version"
4747
}

0 commit comments

Comments
 (0)