Skip to content

Commit

Permalink
Bump langkit image version and update probe endpoint to use http
Browse files Browse the repository at this point in the history
  • Loading branch information
AnchorArray committed Feb 23, 2024
1 parent 496401f commit 505668e
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 11 deletions.
10 changes: 10 additions & 0 deletions charts/langkit/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ 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.12.0] - 2023-02-23

### Changed

- Updated default image from `py-llm-1.0.5` to `py-llm-1.0.6`

### Fixed

- Use correct probe endpoint.

## [0.11.0] - 2023-02-22

### Changed
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.11.0
appVersion: "1.0.5"
version: 0.12.0
appVersion: "1.0.6"
14 changes: 8 additions & 6 deletions charts/langkit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,22 +59,22 @@ View the difference between the current state and desired state.
# helm plugin install https://github.com/databus23/helm-diff
helm diff upgrade \
--allow-unreleased \
langkit langkit-0.11.0.tgz
langkit langkit-0.12.0.tgz
```

### Install/Update
```shell
helm upgrade --install \
--create-namespace \
--namespace langkit \
langkit langkit-0.11.0.tgz
langkit langkit-0.12.0.tgz
```

### Uninstall
```shell
helm uninstall \
--namespace langkit \
langkit langkit-0.11.0.tgz
langkit langkit-0.12.0.tgz
```

## Development
Expand All @@ -99,24 +99,26 @@ helm-docs --dry-run
| image.containerPort | int | `8000` | |
| image.pullPolicy | string | `"Always"` | |
| image.repository | string | `"whylabs/whylogs"` | |
| image.tag | string | `"py-llm-1.0.5"` | |
| image.tag | string | `"py-llm-1.0.6"` | |
| imagePullSecrets | list | `[]` | |
| ingress.annotations | object | `{}` | |
| ingress.className | string | `""` | |
| ingress.enabled | bool | `false` | |
| ingress.hosts | list | `[]` | |
| ingress.tls | list | `[]` | |
| livenessProbe.httpGet.path | string | `"/health"` | |
| livenessProbe.httpGet.port | int | `8000` | |
| livenessProbe.initialDelaySeconds | int | `15` | |
| livenessProbe.periodSeconds | int | `10` | |
| livenessProbe.tcpSocket.port | int | `8000` | |
| nameOverride | string | `""` | |
| nodeSelector | object | `{}` | |
| pod.annotations | object | `{}` | |
| pod.labels | object | `{}` | |
| pod.securityContext | object | `{}` | |
| readinessProbe.httpGet.path | string | `"/health"` | |
| readinessProbe.httpGet.port | int | `8000` | |
| readinessProbe.initialDelaySeconds | int | `15` | |
| readinessProbe.periodSeconds | int | `10` | |
| readinessProbe.tcpSocket.port | int | `8000` | |
| replicaCount | int | `2` | |
| resources.limits.cpu | string | `"4"` | |
| resources.limits.memory | string | `"3Gi"` | |
Expand Down
8 changes: 5 additions & 3 deletions charts/langkit/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ ingress:
image:
repository: whylabs/whylogs
pullPolicy: Always
tag: py-llm-1.0.5
tag: py-llm-1.0.6
containerPort: 8000

imagePullSecrets: []
Expand Down Expand Up @@ -84,12 +84,14 @@ secrets:
name: langkit-api-secret

livenessProbe:
tcpSocket:
httpGet:
path: /health
port: 8000
initialDelaySeconds: 15
periodSeconds: 10
readinessProbe:
tcpSocket:
httpGet:
path: /health
port: 8000
initialDelaySeconds: 15
periodSeconds: 10
Expand Down

0 comments on commit 505668e

Please sign in to comment.