[PR #544] [MERGED] chore: v13 #547

Closed
opened 2026-02-16 02:16:37 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/helm/pull/544
Author: @joaquin-borggio-lc
Created: 12/23/2025
Status: Merged
Merged: 1/16/2026
Merged by: @joaquin-borggio-lc

Base: mainHead: joaquin/add-sh-agent-builder


📝 Commits (10+)

  • f22dc94 Support KEDA autoscaling in helm. Need to test
  • 477fcf4 Load tested, scale up happened
  • 72d0172 Update autoscaling config example
  • d92f92a Remove deprecated initialOrgAdminEmail from the basicauth section
  • 1d7dd29 wip: agent builder support
  • bc8779c Romain/support clio self hosted (#556)
  • 147b0e9 scale down non-ingest queue replicas to 1 by default
  • cd6d885 upate
  • c31d98e added other changes for v13
  • 19834cd updated to 0.13

📊 Changes

48 files changed (+2572 additions, -378 deletions)

View changed files

📝 charts/langsmith/Chart.yaml (+2 -2)
📝 charts/langsmith/README.md (+397 -96)
📝 charts/langsmith/examples/autoscaling_config.yaml (+168 -21)
📝 charts/langsmith/templates/_helpers.tpl (+80 -8)
📝 charts/langsmith/templates/ace-backend/deployment.yaml (+1 -1)
📝 charts/langsmith/templates/ace-backend/hpa.yaml (+9 -9)
charts/langsmith/templates/ace-backend/scaled-object.yaml (+56 -0)
charts/langsmith/templates/agent-bootstrap/bootstrap-job.yaml (+142 -0)
charts/langsmith/templates/agent-bootstrap/rbac.yaml (+71 -0)
charts/langsmith/templates/agent-builder/tool-server/deployment.yaml (+119 -0)
charts/langsmith/templates/agent-builder/tool-server/hpa.yaml (+33 -0)
charts/langsmith/templates/agent-builder/tool-server/pdb.yaml (+25 -0)
charts/langsmith/templates/agent-builder/tool-server/service-account.yaml (+20 -0)
charts/langsmith/templates/agent-builder/tool-server/service.yaml (+36 -0)
charts/langsmith/templates/agent-builder/trigger-server/deployment.yaml (+120 -0)
charts/langsmith/templates/agent-builder/trigger-server/service-account.yaml (+20 -0)
charts/langsmith/templates/agent-builder/trigger-server/service.yaml (+36 -0)
📝 charts/langsmith/templates/backend/deployment.yaml (+6 -1)
📝 charts/langsmith/templates/backend/e2e-test.yaml (+24 -24)
📝 charts/langsmith/templates/backend/hpa.yaml (+9 -9)

...and 28 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/helm/pull/544 **Author:** [@joaquin-borggio-lc](https://github.com/joaquin-borggio-lc) **Created:** 12/23/2025 **Status:** ✅ Merged **Merged:** 1/16/2026 **Merged by:** [@joaquin-borggio-lc](https://github.com/joaquin-borggio-lc) **Base:** `main` ← **Head:** `joaquin/add-sh-agent-builder` --- ### 📝 Commits (10+) - [`f22dc94`](https://github.com/langchain-ai/helm/commit/f22dc946cb96dfabd3875ac1285597c868e82e67) Support KEDA autoscaling in helm. Need to test - [`477fcf4`](https://github.com/langchain-ai/helm/commit/477fcf45fe0a5ccf9a7c448d1c6b46b9e46a956c) Load tested, scale up happened - [`72d0172`](https://github.com/langchain-ai/helm/commit/72d017229063632c64e60c2f8a62adf94dc94143) Update autoscaling config example - [`d92f92a`](https://github.com/langchain-ai/helm/commit/d92f92a5e3f85f972292ae9dcb4003529869ddd7) Remove deprecated initialOrgAdminEmail from the basicauth section - [`1d7dd29`](https://github.com/langchain-ai/helm/commit/1d7dd297d6002e34193ad7b7f858636d2503782b) wip: agent builder support - [`bc8779c`](https://github.com/langchain-ai/helm/commit/bc8779c8c2c1dec35e6b088ce0f60544c54a7725) Romain/support clio self hosted (#556) - [`147b0e9`](https://github.com/langchain-ai/helm/commit/147b0e9a9b86e6d63c770dbde1035cbe72ebe70b) scale down non-ingest queue replicas to 1 by default - [`cd6d885`](https://github.com/langchain-ai/helm/commit/cd6d885d7eb3355185bcfefc60f8198d028c6cb0) upate - [`c31d98e`](https://github.com/langchain-ai/helm/commit/c31d98e2ed8fe694ae3353040749c8fc6f719283) added other changes for v13 - [`19834cd`](https://github.com/langchain-ai/helm/commit/19834cd1796b2f0c3d01e7e1a60461902f7cbbfb) updated to 0.13 ### 📊 Changes **48 files changed** (+2572 additions, -378 deletions) <details> <summary>View changed files</summary> 📝 `charts/langsmith/Chart.yaml` (+2 -2) 📝 `charts/langsmith/README.md` (+397 -96) 📝 `charts/langsmith/examples/autoscaling_config.yaml` (+168 -21) 📝 `charts/langsmith/templates/_helpers.tpl` (+80 -8) 📝 `charts/langsmith/templates/ace-backend/deployment.yaml` (+1 -1) 📝 `charts/langsmith/templates/ace-backend/hpa.yaml` (+9 -9) ➕ `charts/langsmith/templates/ace-backend/scaled-object.yaml` (+56 -0) ➕ `charts/langsmith/templates/agent-bootstrap/bootstrap-job.yaml` (+142 -0) ➕ `charts/langsmith/templates/agent-bootstrap/rbac.yaml` (+71 -0) ➕ `charts/langsmith/templates/agent-builder/tool-server/deployment.yaml` (+119 -0) ➕ `charts/langsmith/templates/agent-builder/tool-server/hpa.yaml` (+33 -0) ➕ `charts/langsmith/templates/agent-builder/tool-server/pdb.yaml` (+25 -0) ➕ `charts/langsmith/templates/agent-builder/tool-server/service-account.yaml` (+20 -0) ➕ `charts/langsmith/templates/agent-builder/tool-server/service.yaml` (+36 -0) ➕ `charts/langsmith/templates/agent-builder/trigger-server/deployment.yaml` (+120 -0) ➕ `charts/langsmith/templates/agent-builder/trigger-server/service-account.yaml` (+20 -0) ➕ `charts/langsmith/templates/agent-builder/trigger-server/service.yaml` (+36 -0) 📝 `charts/langsmith/templates/backend/deployment.yaml` (+6 -1) 📝 `charts/langsmith/templates/backend/e2e-test.yaml` (+24 -24) 📝 `charts/langsmith/templates/backend/hpa.yaml` (+9 -9) _...and 28 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-16 02:16:37 -05:00
yindo closed this issue 2026-02-16 02:16:37 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/helm#547