feat: add opt-in Gateway API HTTPRoute support to dify chart#419
Open
somaz94 wants to merge 1 commit into
Open
feat: add opt-in Gateway API HTTPRoute support to dify chart#419somaz94 wants to merge 1 commit into
somaz94 wants to merge 1 commit into
Conversation
somaz94
marked this pull request as ready for review
July 8, 2026 06:01
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.
Adds an opt-in HTTPRoute (Gateway API) template so Dify can be exposed via a
Gateway as an alternative to Ingress. Disabled by default
(httproute.enabled: false); the existing ingress block is untouched, so current
users are unaffected. Requires the Gateway API CRDs in the cluster.
Dify fronts all components with an internal nginx proxy exposing a single
Service, so the route needs just one backendRef (the proxy Service on
service.port), mirroring the Ingress backend.
Validation (local):
I did not bump Chart.yaml (ct.yaml has check-version-increment: false and the
release workflow is maintainer-gated), so the version bump is left for the
release. Happy to trim the config surface (e.g. drop additionalRules/apiVersion)
if you prefer to keep it more minimal.
related: #398