Skip to content

Commit

Permalink
docs: update docs with 0.3.2 release (#700)
Browse files Browse the repository at this point in the history
Change the main branch to reflect the latest release.
  • Loading branch information
Fei-Guo authored Nov 16, 2024
1 parent ff41d1c commit 64c8ffb
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 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.3.1
VERSION ?= v0.3.2
GPU_PROVISIONER_VERSION ?= 0.2.1
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: 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.
Expand Down
6 changes: 3 additions & 3 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.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
Expand All @@ -22,4 +22,4 @@ maintainers:
- name: helayoty
email: [email protected]
- name: ishaansehgal99
email: [email protected]
email: [email protected]
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.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
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.3.1
tag: 0.3.2
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 @@ -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
Expand Down
4 changes: 2 additions & 2 deletions terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

Expand Down

0 comments on commit 64c8ffb

Please sign in to comment.