[ANCHOR-1206] Add Gateway API support to helm charts - #1936
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds optional Kubernetes Gateway API (Gateway + HTTPRoute) resources to the Anchor Platform Helm charts so deployments can migrate away from (or run alongside) NGINX Ingress.
Changes:
- Introduces
httpRouteand optionalhttpRoute.gatewayconfiguration blocks in each chart’svalues.yaml. - Adds new
templates/gateway.yaml+templates/httproute.yaml(orsepserver-*) resources gated byhttpRoute.enabled. - Adds
ingress.enabled(defaulttrue) and wraps existing ingress templates so Ingress can be disabled.
Reviewed changes
Copilot reviewed 15 out of 15 changed files in this pull request and generated 7 comments.
Show a summary per file
| File | Description |
|---|---|
| helm-charts/sep24-reference-ui/values.yaml | Adds ingress.enabled and new httpRoute/gateway configuration defaults. |
| helm-charts/sep24-reference-ui/templates/ingress.yaml | Wraps Ingress+ConfigMap rendering behind ingress.enabled. |
| helm-charts/sep24-reference-ui/templates/httproute.yaml | Adds HTTPRoute template gated by httpRoute.enabled. |
| helm-charts/sep24-reference-ui/templates/gateway.yaml | Adds optional Gateway template gated by httpRoute.enabled + httpRoute.gateway.enabled. |
| helm-charts/sep24-reference-ui/Chart.yaml | Bumps chart version. |
| helm-charts/sep-service/values.yaml | Adds ingress.enabled and new httpRoute/gateway configuration defaults. |
| helm-charts/sep-service/templates/sepserver-ingress.yaml | Wraps SEP Ingress+ConfigMap rendering behind ingress.enabled. |
| helm-charts/sep-service/templates/sepserver-httproute.yaml | Adds SEP HTTPRoute template gated by httpRoute.enabled. |
| helm-charts/sep-service/templates/sepserver-gateway.yaml | Adds optional SEP Gateway template gated by httpRoute.enabled + httpRoute.gateway.enabled. |
| helm-charts/sep-service/Chart.yaml | Bumps chart version. |
| helm-charts/reference-server/values.yaml | Adds ingress.enabled and new httpRoute/gateway configuration defaults. |
| helm-charts/reference-server/templates/ingress.yaml | Wraps Ingress+ConfigMap rendering behind ingress.enabled. |
| helm-charts/reference-server/templates/httproute.yaml | Adds HTTPRoute template gated by httpRoute.enabled. |
| helm-charts/reference-server/templates/gateway.yaml | Adds optional Gateway template gated by httpRoute.enabled + httpRoute.gateway.enabled. |
| helm-charts/reference-server/Chart.yaml | Bumps chart version. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| enabled: false | ||
| parentRefs: | ||
| - name: sep24-reference-ui-gateway | ||
| namespace: "" # defaults to release namespace |
| @@ -1,3 +1,4 @@ | |||
| {{- if .Values.ingress.enabled -}} | |||
| enabled: false | ||
| parentRefs: | ||
| - name: sep-gateway | ||
| namespace: "" # defaults to release namespace |
| @@ -1,3 +1,4 @@ | |||
| {{- if .Values.ingress.enabled -}} | |||
| {{- toYaml .tls | nindent 8 }} | ||
| {{- end }} | ||
| {{- end }} | ||
| {{- end }} No newline at end of file |
| enabled: false | ||
| parentRefs: | ||
| - name: reference-server-gateway | ||
| namespace: "" # defaults to release namespace |
| @@ -1,3 +1,4 @@ | |||
| {{- if .Values.ingress.enabled -}} | |||
marwen-abid
approved these changes
May 14, 2026
amandagonsalves
added a commit
that referenced
this pull request
Jun 8, 2026
### Description Merges `release/4.4.0` into `main` for the 4.4.0 release. ### Context - **[ANCHOR-1215]** Fix SEP-12 IDOR via unvalidated customer `id` — prevents cross-customer KYC disclosure and payout destination overwrite (#1946) - **[ANCHOR-1943]** Fix RPC observer DoS via malformed Soroban transfer event (#1944) - **[ANCHOR-1939]** Add per-client event isolation and ambiguous payment routing safety (#1941, #1942) - **[ANCHOR-1934]** Enforce single-use on SEP-38 quotes (#1935) - **[ANCHOR-1206]** Add Gateway API support to Helm charts and carry forward security headers (#1936, #1940) - **[Chore]** Bump Soroban SDK from v22 to v26 (#1937) - **[Chore]** Bump version to 4.4.0 [ANCHOR-1215]: https://stellarorg.atlassian.net/browse/ANCHOR-1215?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ [ANCHOR-1206]: https://stellarorg.atlassian.net/browse/ANCHOR-1206?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
amandagonsalves
added a commit
that referenced
this pull request
Jun 8, 2026
### Description Merges main into `develop` for the 4.4.0 release. ### Context - **[ANCHOR-1215]** Fix SEP-12 IDOR via unvalidated customer `id` — prevents cross-customer KYC disclosure and payout destination overwrite (#1946) - **[ANCHOR-1943]** Fix RPC observer DoS via malformed Soroban transfer event (#1944) - **[ANCHOR-1939]** Add per-client event isolation and ambiguous payment routing safety (#1941, #1942) - **[ANCHOR-1934]** Enforce single-use on SEP-38 quotes (#1935) - **[ANCHOR-1206]** Add Gateway API support to Helm charts and carry forward security headers (#1936, #1940) - **[Chore]** Bump Soroban SDK from v22 to v26 (#1937) - **[Chore]** Bump version to 4.4.0 [ANCHOR-1215]: https://stellarorg.atlassian.net/browse/ANCHOR-1215?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ [ANCHOR-1206]: https://stellarorg.atlassian.net/browse/ANCHOR-1206?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
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.
Description
Adds Gateway API (
Gateway+HTTPRoute) support to all three Anchor Platform helm charts.Context
Gateway Migration
Testing
./gradlew testhelm lintpasses for all three charts.helm templatewith default. Ingress still emitted, no Gateway/HTTPRoute.helm templatewith Gateway API enabled. renders match the shape instellar/kube.Documentation
N/A
Known limitations
N/A