Skip to content

Commit

Permalink
Merge pull request #6 from whylabs/dev/aberg/bump-image-version
Browse files Browse the repository at this point in the history
Upgrade default image
  • Loading branch information
AnchorArray authored Jan 30, 2024
2 parents 59a12bf + 1d484c9 commit 8df9f86
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 12 deletions.
7 changes: 7 additions & 0 deletions charts/langkit/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning]
(https://semver.org/spec/v2.0.0.html).

## [0.5.0] - 2023-01-30

### Changed

- Updated the default image version from `py-llm-1.0.2.dev0` to `py-llm-1.0.2.dev1`
- Default `tolerations` is set to `[]`

## [0.4.0] - **Breaking Changes** - 2023-01-26

### Added
Expand Down
4 changes: 2 additions & 2 deletions charts/langkit/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: langkit
description: A Helm chart for LangKit container deployment
type: application
version: 0.4.0
appVersion: "1.0.1"
version: 0.5.0
appVersion: "1.0.2.dev1"
5 changes: 1 addition & 4 deletions charts/langkit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,7 @@ helm-docs --dry-run
| securityContext.readOnlyRootFilesystem | bool | `true` | |
| service.port | int | `80` | |
| service.type | string | `"ClusterIP"` | |
| tolerations[0].effect | string | `"NoSchedule"` | |
| tolerations[0].key | string | `"kubernetes.azure.com/scalesetpriority"` | |
| tolerations[0].operator | string | `"Equal"` | |
| tolerations[0].value | string | `"spot"` | |
| tolerations | list | `[]` | |
| volumeMounts[0].mountPath | string | `"/tmp"` | |
| volumeMounts[0].name | string | `"temp-dir"` | |
| volumeMounts[1].mountPath | string | `"/root/.config"` | |
Expand Down
12 changes: 6 additions & 6 deletions charts/langkit/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ replicaCount: 3
image:
repository: whylabs/whylogs
pullPolicy: IfNotPresent
tag: py-llm-1.0.2.dev0
tag: py-llm-1.0.2.dev1
containerPort: 8000

imagePullSecrets: []
Expand Down Expand Up @@ -77,11 +77,11 @@ readinessProbe:

nodeSelector: {}

tolerations:
- effect: NoSchedule
key: kubernetes.azure.com/scalesetpriority
operator: Equal
value: spot
tolerations: []
# - effect: NoSchedule
# key: kubernetes.azure.com/scalesetpriority
# operator: Equal
# value: spot

affinity:
podAntiAffinity:
Expand Down

0 comments on commit 8df9f86

Please sign in to comment.