Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Backendref httproute filter request redirect #3134

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

arnaud-tincelin
Copy link

What type of PR is this?
/kind test
/area conformance

What this PR does / why we need it:

Which issue(s) this PR fixes:
#2936

Does this PR introduce a user-facing change?:

NONE

@k8s-ci-robot k8s-ci-robot added release-note-none Denotes a PR that doesn't merit a release note. kind/test area/conformance labels Jun 5, 2024
Copy link

linux-foundation-easycla bot commented Jun 5, 2024

CLA Signed

The committers listed above are authorized under a signed CLA.

@k8s-ci-robot k8s-ci-robot added the cncf-cla: no Indicates the PR's author has not signed the CNCF CLA. label Jun 5, 2024
@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: arnaud-tincelin
Once this PR has been reviewed and has the lgtm label, please assign danwinship for approval. For more information see the Kubernetes Code Review Process.

The full list of commands accepted by this bot can be found here.

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@k8s-ci-robot
Copy link
Contributor

Welcome @arnaud-tincelin!

It looks like this is your first PR to kubernetes-sigs/gateway-api 🎉. Please refer to our pull request process documentation to help your PR have a smooth ride to approval.

You will be prompted by a bot to use commands during the review process. Do not be afraid to follow the prompts! It is okay to experiment. Here is the bot commands documentation.

You can also check if kubernetes-sigs/gateway-api has its own contribution guidelines.

You may want to refer to our testing guide if you run into trouble with your tests not passing.

If you are having difficulty getting your pull request seen, please follow the recommended escalation practices. Also, for tips and tricks in the contribution process you may want to read the Kubernetes contributor cheat sheet. We want to make sure your contribution gets all the attention it needs!

Thank you, and welcome to Kubernetes. 😃

@k8s-ci-robot k8s-ci-robot added needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. size/L Denotes a PR that changes 100-499 lines, ignoring generated files. labels Jun 5, 2024
@k8s-ci-robot
Copy link
Contributor

Hi @arnaud-tincelin. Thanks for your PR.

I'm waiting for a kubernetes-sigs member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@k8s-ci-robot k8s-ci-robot added cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. and removed cncf-cla: no Indicates the PR's author has not signed the CNCF CLA. labels Jun 5, 2024
Copy link
Member

@mlavacca mlavacca left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for this PR, @arnaud-tincelin!

I left some more specific comments in the review, but from a general standpoint I'd like to ask you to stick to the approach posed by the FilterRedirect tests we already have in place:

In this test you are only testing path redirect, which is fine but we should highlight this aspect in the file name and tests names.

Have you tested this against any implementation?

Description: "A single HTTPRoute with a redirection filter for different backends",
Features: []features.SupportedFeature{
features.SupportGateway,
features.SupportHTTPRoute,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We need to add here the new feature SupportHTTPRouteFilterRequestRedirect.

port: 8080
filters:
- type: FilterRequestRedirect
filterRequestRedirect:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the filter name is just requestRedirect

@@ -150,6 +150,9 @@ const (

// This option indicates support for HTTPRoute with a backendref with an appProtoocol 'kubernetes.io/ws' (extended conformance)
SupportHTTPRouteBackendProtocolWebSocket SupportedFeature = "HTTPRouteBackendProtocolWebSocket"

// This option indicates support for HTTPRoute filter request redirect (extended conformance)
SupportHTTPRouteFilterRequestRedirect SupportedFeature = "HTTPRouteFilterRequestRedirect"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since this test is about backend filters, and we already have the SupportHTTPRoute*Redirect features in place, I'd suggest to rename this one to SupportHTTPRouteBackendPathRedirect. The same renaming should be applied to the tests.

@arnaud-tincelin
Copy link
Author

thank you @mlavacca, it's a lot clearer!

I am still working on the code based on your comments and I am trying to run the tests on an AKS with istio gateway or azure gateway but in both cases the tests end up in timeout. Is there something I am missing?

The tests seem to be stuck on this:

helpers.go:223: 2024-06-06T11:26:27.841628413+02:00: gateway-conformance-infra/gateway-add-listener Gateway not Accepted yet
    helpers.go:222: 2024-06-06T11:26:28.841559903+02:00: Accepted condition set to Status False with Reason Accepted, expected Status True
    helpers.go:222: 2024-06-06T11:26:28.841667255+02:00: Accepted was not in conditions list [[{Accepted False 1 2024-06-06 11:14:31 +0200 CEST Accepted Gateway does not have annotation to reference Application Gateway for Containers resource}]]

and I started the tests with

go test ./conformance -run TestConformance -args \
    --gateway-class=istio \ # or azure-alb-external
    --supported-features=Gateway,HTTPRoute,HTTPRouteBackendPathRedirect`

@tormath1
Copy link

Hey folks, just to give an update on this PR - this test can't really work currently as the feature is not yet implemented on the various Gateway API implementations.

I started to write the Cilium implementation: cilium/cilium@main...tormath1:cilium:tormath1/backend-request-redirect-filter and I can get the test to pass with this (with one backend at the moment).

@sayboras
Copy link
Contributor

Thanks to @tormath1 to ping us in Cilium slack, and to highlight the potential issue with multiple backends in the current Cilium implementation 🙇.

@mlavacca
Copy link
Member

This one is in a similar situation as #2821. We'd need #3009 to be addressed before adding conformance tests on feature not implemented yet by any project.

@candita
Copy link
Contributor

candita commented Aug 27, 2024

/ok-to-test

@k8s-ci-robot k8s-ci-robot added ok-to-test Indicates a non-member PR verified by an org member that is safe to test. and removed needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. labels Aug 27, 2024
@candita
Copy link
Contributor

candita commented Aug 27, 2024

I don't think there is any reason to delay conformance tests while waiting for implementations. The feature implementations and feature conformance testing can be done in parallel.

@arkodg
Copy link
Contributor

arkodg commented Aug 28, 2024

  • imo the use case highlighted in the test is invalid - a backend shouldnt be needed when performing a redirect so a backend specific redirect doesnt make sense to me.
  • when traffic splitting to different backends, you may want to redirect some traffic, here a backend specific redirect filter does make sense
  • I'm a -1 on adding conformance tests for features that dont exist in implementations. The gateway api community is working towards a common vendor/project neutral API for features that exist in multiple implementations, so my suggestion is that we wait for multiple implementations to support a feature before supporting it in the API or conformance tests

@k8s-ci-robot k8s-ci-robot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Sep 4, 2024
@k8s-ci-robot
Copy link
Contributor

PR needs rebase.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@k8s-ci-robot
Copy link
Contributor

@arnaud-tincelin: The following tests failed, say /retest to rerun all failed tests or /retest-required to rerun all mandatory failed tests:

Test name Commit Details Required Rerun command
pull-gateway-api-crds-validation-2 3874b65 link true /test pull-gateway-api-crds-validation-2
pull-gateway-api-crds-validation-3 3874b65 link true /test pull-gateway-api-crds-validation-3
pull-gateway-api-crds-validation-4 3874b65 link true /test pull-gateway-api-crds-validation-4
pull-gateway-api-crds-validation-1 3874b65 link true /test pull-gateway-api-crds-validation-1
pull-gateway-api-crds-validation-5 3874b65 link true /test pull-gateway-api-crds-validation-5

Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here.

@shaneutt shaneutt added the lifecycle/stale Denotes an issue or PR has remained open with no activity and has become stale. label Sep 18, 2024
@k8s-triage-robot
Copy link

The Kubernetes project currently lacks enough active contributors to adequately respond to all PRs.

This bot triages PRs according to the following rules:

  • After 90d of inactivity, lifecycle/stale is applied
  • After 30d of inactivity since lifecycle/stale was applied, lifecycle/rotten is applied
  • After 30d of inactivity since lifecycle/rotten was applied, the PR is closed

You can:

  • Mark this PR as fresh with /remove-lifecycle rotten
  • Close this PR with /close
  • Offer to help out with Issue Triage

Please send feedback to sig-contributor-experience at kubernetes/community.

/lifecycle rotten

@k8s-ci-robot k8s-ci-robot added lifecycle/rotten Denotes an issue or PR that has aged beyond stale and will be auto-closed. and removed lifecycle/stale Denotes an issue or PR has remained open with no activity and has become stale. labels Oct 18, 2024
@candita
Copy link
Contributor

candita commented Nov 7, 2024

@arnaud-tincelin thank you for your contribution, and for volunteering for a good-first-issue. I guess going forward it would be best to choose an issue that is for supporting a feature that is on its way to standard and has known working implementations. If you're interested in working on another conformance test, please take a look into #1579, which has a few tests needed to implement. I wrote an example/normative test #1587 for reference.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/conformance cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. kind/test lifecycle/rotten Denotes an issue or PR that has aged beyond stale and will be auto-closed. needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. ok-to-test Indicates a non-member PR verified by an org member that is safe to test. release-note-none Denotes a PR that doesn't merit a release note. size/L Denotes a PR that changes 100-499 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

9 participants