Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/helm_checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ jobs:
docker pull docker.io/postgres:14.7
kind load docker-image docker.io/postgres:14.7 --name chart-testing

docker pull docker.io/clickhouse/clickhouse-server:25.4
kind load docker-image docker.io/clickhouse/clickhouse-server:25.4 --name chart-testing
docker pull docker.io/clickhouse/clickhouse-server:25.12
kind load docker-image docker.io/clickhouse/clickhouse-server:25.12 --name chart-testing

- name: Setup Redis with TLS for Custom CA Testing (LangSmith only)
if: matrix.chart-name == 'langsmith'
Expand Down
2 changes: 1 addition & 1 deletion charts/langsmith/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ For information on how to use this chart, up-to-date release notes, and other gu
| images.backendImage.tag | string | `"0.13.4"` | |
| images.clickhouseImage.pullPolicy | string | `"Always"` | |
| images.clickhouseImage.repository | string | `"docker.io/clickhouse/clickhouse-server"` | |
| images.clickhouseImage.tag | string | `"25.4"` | |
| images.clickhouseImage.tag | string | `"25.12"` | |
| images.frontendImage.pullPolicy | string | `"IfNotPresent"` | |
| images.frontendImage.repository | string | `"docker.io/langchain/langsmith-frontend"` | |
| images.frontendImage.tag | string | `"0.13.4"` | |
Expand Down
2 changes: 1 addition & 1 deletion charts/langsmith/docker-compose/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ services:
timeout: 2s
retries: 30
langchain-clickhouse:
image: ${_REGISTRY:-docker.io}/clickhouse/clickhouse-server:25.10
image: ${_REGISTRY:-docker.io}/clickhouse/clickhouse-server:25.12
user: "101:101"
restart: always
environment:
Expand Down
4 changes: 2 additions & 2 deletions charts/langsmith/scripts/mirror_langsmith_images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
set -euo pipefail

# Default version
DEFAULT_VERSION="0.10.66"
DEFAULT_VERSION="0.13.3"

###############################################################################
# CLI parsing
Expand Down Expand Up @@ -59,7 +59,7 @@ IMAGES=(
"docker.io/langchain/langsmith-playground:${VERSION}"
"docker.io/postgres:14.7"
"docker.io/redis:7"
"docker.io/clickhouse/clickhouse-server:24.8"
"docker.io/clickhouse/clickhouse-server:25.12"
)

echo "Using version: ${VERSION}"
Expand Down
2 changes: 1 addition & 1 deletion charts/langsmith/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ images:
clickhouseImage:
repository: "docker.io/clickhouse/clickhouse-server"
pullPolicy: Always
tag: "25.4"
tag: "25.12"
agentBuilderToolServerImage:
repository: "docker.io/langchain/agent-builder-tool-server"
pullPolicy: IfNotPresent
Expand Down
Loading