feat(langgraph-cloud): add Gateway API and Istio VirtualService support#665
Merged
Saad Farooq (saad-supports-langchain) merged 4 commits intomainfrom Apr 17, 2026
Merged
Conversation
Add support for Kubernetes Gateway API (HTTPRoute) and Istio (VirtualService) as ingress alternatives alongside the existing Ingress resource. Only one mode can be enabled at a time, enforced by a mutual exclusivity validation. - Add gateway and istioGateway sections to values.yaml - Add http_route.yaml template with basePath + URLRewrite support - Add virtual_service.yaml template with basePath rewrite (exact + prefix rules) - Service templates force ClusterIP and drop HTTPS port when mesh ingress is active - Add validation for required fields (gateway.name, istioGateway.name, ingress.hostname) - Guard ingressClassName and loadBalancerIP against empty values - Normalize basePath with trimPrefix/trimSuffix to handle leading/trailing slashes - Match langsmith chart conventions (file naming, namespace formatting) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
hari-dhanushkodi
approved these changes
Apr 10, 2026
Contributor
hari-dhanushkodi
left a comment
There was a problem hiding this comment.
lets bump the minor version of this helm chart, and update docs using helm-docs -t ./charts/langgraph-cloud/README.md.gotmpl. I think after this, we should cut a breaking release and update major version that removes standalone studio
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Removes the studio (langgraph-debugger) UI entirely — templates, values, image config, routing entries, CI overrides, and helpers. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- Move validateIngress to _helpers.tpl alongside validateMongoConfiguration - Extract normalizeBasePath and apiServerHost helpers to reduce duplication - Restore | quote on namespace in ingress, HTTPRoute, and VirtualService - Remove redundant hostname guard on external-dns annotation - Regenerate README via helm-docs (removes all stale studio docs) - Update LOCAL_DEVELOPMENT.md to remove stale studio mention - Bump chart version to 0.3.0 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Mukil Loganathan (langchain-infra)
approved these changes
Apr 17, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add support for Kubernetes Gateway API (HTTPRoute) and Istio (VirtualService) as ingress alternatives alongside the existing Ingress resource. Only one mode can be enabled at a time, enforced by a mutual exclusivity validation.