From 64c8ffb42c3f40af774d877a9df4f691505903bf Mon Sep 17 00:00:00 2001 From: Fei Guo Date: Fri, 15 Nov 2024 19:14:30 -0800 Subject: [PATCH] docs: update docs with 0.3.2 release (#700) Change the main branch to reflect the latest release. --- Makefile | 2 +- README.md | 2 +- charts/kaito/workspace/Chart.yaml | 6 +++--- charts/kaito/workspace/README.md | 2 +- charts/kaito/workspace/values.yaml | 2 +- docs/installation.md | 2 +- terraform/variables.tf | 4 ++-- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Makefile b/Makefile index 0293b287b..6b87ca141 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.3.1 +VERSION ?= v0.3.2 GPU_PROVISIONER_VERSION ?= 0.2.1 IMG_TAG ?= $(subst v,,$(VERSION)) diff --git a/README.md b/README.md index 0171c0d8a..81c40e1b7 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ | ![notification](docs/img/bell.svg) What is NEW! | |-------------------------------------------------| -| Latest Release: Sep 9th, 2024. Kaito v0.3.1. | +| Latest Release: Nov 15th, 2024. Kaito v0.3.2. | | 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 45ee9f6df..e320d5400 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.3.1 +version: 0.3.2 # 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.3.1 +appVersion: 0.3.2 home: https://github.com/kaito-project/kaito sources: - https://github.com/kaito-project/kaito @@ -22,4 +22,4 @@ maintainers: - name: helayoty email: hebaelayoty@gmail.com - name: ishaansehgal99 - email: ishaanforthewin@gmail.com \ No newline at end of file + email: ishaanforthewin@gmail.com diff --git a/charts/kaito/workspace/README.md b/charts/kaito/workspace/README.md index 067b94450..3315c5e39 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.3.1 +export IMG_TAG=0.3.2 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 205d26901..702ec60ea 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.3.1 + tag: 0.3.2 imagePullSecrets: [] podAnnotations: {} podSecurityContext: diff --git a/docs/installation.md b/docs/installation.md index 86ec80843..df201c108 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -77,7 +77,7 @@ az role assignment create --assignee $IDENTITY_PRINCIPAL_ID --scope /subscriptio Install the Node provisioner controller. ```bash # get additional values for helm chart install -export GPU_PROVISIONER_VERSION=0.2.0 +export GPU_PROVISIONER_VERSION=0.2.1 curl -sO https://raw.githubusercontent.com/Azure/gpu-provisioner/main/hack/deploy/configure-helm-values.sh chmod +x ./configure-helm-values.sh && ./configure-helm-values.sh $MY_CLUSTER $RESOURCE_GROUP $IDENTITY_NAME diff --git a/terraform/variables.tf b/terraform/variables.tf index 93b742be2..5aa1dcf0c 100644 --- a/terraform/variables.tf +++ b/terraform/variables.tf @@ -6,13 +6,13 @@ variable "location" { variable "kaito_gpu_provisioner_version" { type = string - default = "0.2.0" + default = "0.2.1" description = "kaito gpu provisioner version" } variable "kaito_workspace_version" { type = string - default = "0.3.1" + default = "0.3.2" description = "kaito workspace version" }