feat: add envoy grpc route support#433
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR extends the shared common Helm library and wires it into the microservice and monolith charts to support Envoy Gateway GRPCRoute resources, including route-specific BackendTrafficPolicy generation and updated global BackendTrafficPolicy targeting logic.
Changes:
- Added a new shared
common.grpcrouteshelper to render Gateway APIGRPCRouteresources with deterministic naming/labels and rollout-service backendRef rewriting. - Introduced
envoy.grpcRoutesdefaults/examples inmicroserviceandmonolith, and updatedReferenceGrantdefaults to allowGRPCRoute. - Updated
BackendTrafficPolicyrendering to support bothHTTPRouteandGRPCRoutetargets while preserving existing HTTP behavior.
Reviewed changes
Copilot reviewed 13 out of 13 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| parcellab/common/Chart.yaml | Bumps library chart version for the new GRPCRoute support. |
| parcellab/common/templates/_backendtrafficpolicy.tpl | Generalizes route targeting to support multiple Gateway API route kinds and improves route-specific error paths. |
| parcellab/common/templates/_grpcroutes.tpl | Adds the shared GRPCRoute renderer used by application charts. |
| parcellab/common/templates/_httproutes.tpl | Extends global BackendTrafficPolicy targetRefs collection to include GRPCRoutes without changing HTTPRoute rendering. |
| parcellab/common/values.yaml | Adds envoy.grpcRoutes default key to the library values. |
| parcellab/microservice/Chart.yaml | Bumps chart version to ship GRPCRoute support. |
| parcellab/microservice/README.md | Documents GRPCRoute support under the Envoy resources section. |
| parcellab/microservice/templates/grpcroutes.yaml | Wires the new shared GRPCRoute helper into the microservice chart. |
| parcellab/microservice/values.yaml | Adds envoy.grpcRoutes defaults/examples and updates ReferenceGrant defaults for GRPCRoute. |
| parcellab/monolith/Chart.yaml | Bumps chart version to ship GRPCRoute support. |
| parcellab/monolith/README.md | Documents GRPCRoute support under the Envoy resources section. |
| parcellab/monolith/templates/grpcroutes.yaml | Wires the new shared GRPCRoute helper into the monolith chart. |
| parcellab/monolith/values.yaml | Adds envoy.grpcRoutes defaults/examples and updates ReferenceGrant defaults for GRPCRoute. |
jmpalomares
approved these changes
May 19, 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.
Summary
Verification