Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: update manifest and helm charts for v0.1.0 #170

Merged
merged 1 commit into from
Nov 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 ?= mcr.microsoft.com/aks/kaito
IMG_NAME ?= workspace
VERSION ?= v0.0.1
VERSION ?= v0.1.0
IMG_TAG ?= $(subst v,,$(VERSION))

ROOT_DIR := $(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
Expand Down
2 changes: 1 addition & 1 deletion charts/kaito/gpu-provisioner/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: gpu-provisioner
description: A Helm chart for gpu-provisioner
type: application
version: 0.0.1
version: 0.1.0
appVersion: 0.1.0
sources:
- https://github.com/Azure/gpu-provisioner
Expand Down
4 changes: 2 additions & 2 deletions charts/kaito/gpu-provisioner/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Karpenter Azure provider gpu-provisioner

![Version: 0.0.1](https://img.shields.io/badge/Version-0.0.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.1.0](https://img.shields.io/badge/AppVersion-0.1.0-informational?style=flat-square)
![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.1.0](https://img.shields.io/badge/AppVersion-0.1.0-informational?style=flat-square)

A Helm chart for gpu-provisioner

Expand All @@ -26,7 +26,7 @@ helm install gpu-provisioner ./charts/kaito/gpu-provisioner
| controller.healthProbe.port | int | `8081` | The container port to use for http health probe. |
| controller.image.digest | string | `""` | SHA256 digest of the controller image. |
| controller.image.repository | string | `"ghcr.io/azure/gpu-provisioner"` | Repository path to the controller image. |
| controller.image.tag | string | `"0.0.1"` | Tag of the controller image. |
| controller.image.tag | string | `"0.1.0"` | Tag of the controller image. |
| controller.logEncoding | string | `""` | Controller log encoding, defaults to the global log encoding |
| controller.logLevel | string | `"debug"` | Controller log level, defaults to the global log level |
| controller.metrics.port | int | `8000` | The container port to use for metrics. |
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.0.1
version: 0.1.0

# 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.0.1"
appVersion: "0.1.0"
home: https://github.com/Azure/kaito
sources:
- https://github.com/Azure/kaito
Expand Down
4 changes: 2 additions & 2 deletions charts/kaito/workspace/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```bash
export REGISTRY=<your_docker_registry>
export IMG_NAME=workspace
export IMG_TAG=0.0.1
export IMG_TAG=0.1.0
helm install workspace ./charts/kaito/workspace --set image.repository=${REGISTRY}/$(IMG_NAME) --set image.tag=$(IMG_TAG)
```

Expand All @@ -16,7 +16,7 @@ helm install workspace ./charts/kaito/workspace --set image.repository=${REGIST
| affinity | object | `{}` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"ghcr.io/azure/kaito/workspace"` | |
| image.tag | string | `"0.0.1"` | |
| image.tag | string | `"0.1.0"` | |
| imagePullSecrets | list | `[]` | |
| nodeSelector | object | `{}` | |
| podAnnotations | object | `{}` | |
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.0.1
tag: 0.1.0
imagePullSecrets: []
podAnnotations: {}
podSecurityContext:
Expand Down
Loading