feat(argo-workflows): Add Gateway API HTTPRoute support#3567
Merged
yu-croco merged 6 commits intoargoproj:mainfrom Jan 13, 2026
Merged
feat(argo-workflows): Add Gateway API HTTPRoute support#3567yu-croco merged 6 commits intoargoproj:mainfrom
yu-croco merged 6 commits intoargoproj:mainfrom
Conversation
4e0165c to
8013792
Compare
Add support for Gateway API HTTPRoute and BackendTLSPolicy resources as an alternative to traditional Kubernetes Ingress for Argo Workflows server. Changes: - Add server-httproute.yaml template for Gateway API v1 HTTPRoute - Add server-backendtlspolicy.yaml template for v1alpha3 BackendTLSPolicy - Add httproute and backendTLSPolicy configuration sections to values.yaml - Add documentation for Gateway API usage in README.md.gotmpl - Bump chart version to 0.46.0 Key differences from Argo CD implementation: - No GRPCRoute support (Argo Workflows uses HTTP/HTTPS only, not gRPC) - Simplified port logic (single service port) All features are disabled by default for backward compatibility. Gateway API support is marked as EXPERIMENTAL. Co-Authored-By: Claude <noreply@anthropic.com> Signed-off-by: Aleksei Sviridkin <f@lex.la>
8013792 to
9fa1639
Compare
15 tasks
mkilchhofer
reviewed
Dec 22, 2025
| @@ -0,0 +1,26 @@ | |||
| {{- if and .Values.server.enabled .Values.server.backendTLSPolicy.enabled -}} | |||
| {{- $fullName := include "argo-workflows.server.fullname" . -}} | |||
| apiVersion: gateway.networking.k8s.io/v1alpha3 | |||
Member
There was a problem hiding this comment.
I think we can directly go with v1 now
Xref on argo-cd chart:
Merge upstream/main and update Gateway API BackendTLSPolicy from v1alpha3 to stable v1, matching the argo-cd chart update. Co-Authored-By: Claude <noreply@anthropic.com> Signed-off-by: Aleksei Sviridkin <f@lex.la>
jmeridth
previously approved these changes
Jan 5, 2026
Signed-off-by: Marco Maurer (-Kilchhofer) <mkilchhofer@users.noreply.github.com>
mkilchhofer
approved these changes
Jan 12, 2026
jmeridth
approved these changes
Jan 13, 2026
yu-croco
approved these changes
Jan 13, 2026
alexlebens
pushed a commit
to alexlebens/infrastructure
that referenced
this pull request
Jan 14, 2026
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [argo-workflows](https://github.com/argoproj/argo-helm) | minor | `0.46.4` → `0.47.0` | --- >⚠️ **Warning** > > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>argoproj/argo-helm (argo-workflows)</summary> ### [`v0.47.0`](https://github.com/argoproj/argo-helm/releases/tag/argo-workflows-0.47.0) [Compare Source](argoproj/argo-helm@argo-workflows-0.46.4...argo-workflows-0.47.0) A Helm chart for Argo Workflows #### What's Changed - feat(argo-workflows): Add Gateway API HTTPRoute support by [@​lexfrei](https://github.com/lexfrei) in [#​3567](argoproj/argo-helm#3567) **Full Changelog**: <argoproj/argo-helm@argo-cd-9.3.1...argo-workflows-0.47.0> </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi42OS4yIiwidXBkYXRlZEluVmVyIjoiNDIuNjkuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiY2hhcnQiXX0=--> Reviewed-on: https://gitea.alexlebens.dev/alexlebens/infrastructure/pulls/3175 Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net> Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net>
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.
Summary
This PR adds Gateway API support to the Argo Workflows Helm chart, providing a modern alternative to traditional Ingress resources.
Added resources
Motivation
Gateway API is the successor to Ingress and is becoming the standard for traffic management in Kubernetes. This addition provides users with a modern, vendor-neutral way to expose Argo Workflows, aligning with the evolving Kubernetes ecosystem.
Key differences from Argo CD implementation
Testing
Notes
Experimental Status: Gateway API support is marked as EXPERIMENTAL. Support depends on your Gateway controller implementation. Some controllers may require additional configuration (e.g., BackendTLSPolicy for HTTPS backends). Not all Gateway controllers support BackendTLSPolicy (e.g., Cilium does not yet support it).
Checklist: