-
Notifications
You must be signed in to change notification settings - Fork 1.9k
cluster-ingress-operator: GatewayAPI support is now GA #63021
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
cluster-ingress-operator: GatewayAPI support is now GA #63021
Conversation
da69dd0
to
b4eab1c
Compare
/pj-rehearse |
@candita: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel. |
/assign |
/pj-rehearse |
@candita: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel. |
Let's figure out why the conformance tests don't work before we make them required. |
The conformance test will remain optional. I only changed |
I suspect the DNS propagation which took more time than the expected timeout:
We may need to play with timeout values knowing that our CI AWS hostedzones are not the fastest. /pj-rehearse |
@alebedev87: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel. |
/pj-rehearse ack |
@alebedev87: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel. |
Holding the PR until the problem with install plan approval is fixed. |
/pj-rehearse |
@alebedev87: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel. |
Can we unhold this now ? |
|
@@ -143,8 +142,7 @@ tests: | |||
requests: | |||
cpu: 100m | |||
workflow: ipi-aws | |||
- always_run: false | |||
as: e2e-aws-gatewayapi-conformance | |||
- as: e2e-aws-gatewayapi-conformance |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@alebedev87 would you mind updating L135 to TechPreviewNoUpgrade and/or removing the FEATURE_SET/FEATURE_GATES env variables from both tests when the time is right? We may even be able to remove the e2e-aws-gatewayapi when the FG is lifted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I removed e2e-aws-gatewayapi
job because TestGatewayAPI
is now part of the standard test suite (e2e-*-operator
jobs). e2e-aws-gatewayapi-conformance
is updated too: TechPreviewNoUpgrade
featureste is removed.
b4eab1c
to
d387df8
Compare
d387df8
to
e24e569
Compare
/pj-rehearse |
@alebedev87: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel. |
LGTM |
/unhold |
/hold As a matter of fact, the branch cut is still not done. So, let's hold this one for some more time. |
/unhold The branch cut is done this morning (Europe time). |
/lgtm |
`GatewayAPI` and `GatewayAPIController` feature gates have been promoted to GA, making Gateway API support part of the default feature set. This commit removes `e2e-aws-gatewayapi` job because the gateway API tests are now part of the operator test jobs. Also it removes TechPreviewNoUpgrade feature set from `e2e-aws-gatewayapi-conformance` job.
Enable continuous testing of the Gateway API implementation.
e24e569
to
b8dffd2
Compare
[REHEARSALNOTIFIER]
Interacting with pj-rehearseComment: Once you are satisfied with the results of the rehearsals, comment: |
/pj-rehearse ack The PR was rebased from |
@alebedev87: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel. |
- name: result-aggregator | ||
secret: | ||
secretName: result-aggregator | ||
trigger: (?m)^/test( | .* )e2e-aws-gatewayapi,?($|\s.*) | ||
- agent: kubernetes | ||
always_run: false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just noted that thealways_run
is not updated by make jobs
, after updating the always_run:
to true
manually then run make jobs
again and it also doesn't revert the change. Looks something wrong with make jobs
and we might need to update the field manually for e2e-aws-gatewayapi-conformance
job.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right, seems like TP noticed this problem too. Once the fix for the ci-tools is merged they'll follow up with a PR which updates all impacted presubmits.
Unfortunately I cannot do much here because the presubmits for this PR will fail if I'll manually change the value to always_run: true
in the job definition. I'll let TP fix this in #64342.
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: alebedev87, candita, lihongan The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
@alebedev87: all tests passed! Full PR test history. Your PR dashboard. 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. |
* cluster-ingress-operator: GatewayAPI support is now GA `GatewayAPI` and `GatewayAPIController` feature gates have been promoted to GA, making Gateway API support part of the default feature set. This commit removes `e2e-aws-gatewayapi` job because the gateway API tests are now part of the operator test jobs. Also it removes TechPreviewNoUpgrade feature set from `e2e-aws-gatewayapi-conformance` job. * cluster-ingress-operator: Always run e2e-aws-gatewayapi-conformance Enable continuous testing of the Gateway API implementation.
GatewayAPI
andGatewayAPIController
feature gates have been promoted to GA, making Gateway API support part of the default feature set. This PR removese2e-aws-gatewayapi
job because the gateway API tests are now part of the operator test jobs. Also it removes TechPreviewNoUpgrade feature set frome2e-aws-gatewayapi-conformance
job.Also this PR makes
e2e-aws-gatewayapi-conformance
job "always running" to enable continuous testing of the GatewayAPI implementation.