OCPBUGS-31666: Bump openshift/api for Route API godoc fix#433
Conversation
|
@Miciah: This pull request references Jira Issue OCPBUGS-31666, which is valid. The bug has been moved to the POST state. 3 validation(s) were run on this bug
Requesting review from QA contact: The bug has been updated to refer to the pull request using the external bug tracker. DetailsIn response to this:
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 openshift-eng/jira-lifecycle-plugin repository. |
4b0a7a5 to
f15a6b9
Compare
|
https://github.com/openshift/openshift-apiserver/compare/4b0a7a5ef1bcdcb7dfc6fed1f89b0632ecd11d96..f15a6b96f2cf13e83ac665f3c644e51b36be2744 bumps the vendored library-go to fix build errors that resulted from the openshift/api bump. |
f15a6b9 to
b3335a8
Compare
|
https://github.com/openshift/openshift-apiserver/compare/f15a6b96f2cf13e83ac665f3c644e51b36be2744..b3335a8d02a3cc20d95dbd908e59b209872b98d7 fixes one more build error resulting from the openshift/api bump. |
|
@Miciah: This pull request references Jira Issue OCPBUGS-31666, which is valid. 3 validation(s) were run on this bug
Requesting review from QA contact: DetailsIn response to this:
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 openshift-eng/jira-lifecycle-plugin repository. |
Bump to github.com/openshift/api@8203151f085f2205ba7fa64f093a04a742d1cb87,
which fixes the godoc for the Route.spec.tls.insecureEdgeTerminationPolicy
field to say that "None", not "Allow", is the default value. Bump to
github.com/openshift/library-go@cb8aac942b79e973d2c37168ccff36c882200856
to fix build errors in library-go resulting from changes in openshift/api.
Update NewOpenshiftAPIConfig likewise to read feature definitions from
their new location in openshift/api.
go get github.com/openshift/api@8203151f085f2205ba7fa64f093a04a742d1cb87 \
github.com/openshift/library-go@cb8aac942b79e973d2c37168ccff36c882200856
go mod tidy
go mod vendor
This commit fixes OCPBUGS-31666.
https://issues.redhat.com/browse/OCPBUGS-31666
* go.mod: Bump.
* go.sum:
* hack/openapi-violation.list:
* pkg/openapi/zz_generated.openapi.go:
* vendor/*: Regenerate.
* pkg/cmd/openshift-apiserver/cmd.go (RunAPIServer):
* pkg/cmd/openshift-apiserver/openshiftapiserver/config.go
(NewOpenshiftAPIConfig): Read feature definitions from their new location
in the "github.com/openshift/api/features" package.
b3335a8 to
b983b70
Compare
|
https://github.com/openshift/openshift-apiserver/compare/b3335a8d02a3cc20d95dbd908e59b209872b98d7..b983b70ed06cf64f18cd5420f963f315d120fe6a fixes some more build failures from the openshift/api bump. |
|
@Miciah: all tests passed! Full PR test history. Your PR dashboard. DetailsInstructions 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/test-infra repository. I understand the commands that are listed here. |
|
tested it with 4.16.0-0.ci.test-2024-05-08-031552-ci-ln-hmrbdf2-latest: If a route does not specify insecureEdgeTerminationPolicy, then the default behavior is "None". |
|
/label qe-approved |
|
/lgtm |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: Miciah, p0lyn0mial The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
|
@Miciah: Jira Issue OCPBUGS-31666: All pull requests linked via external trackers have merged: Jira Issue OCPBUGS-31666 has been moved to the MODIFIED state. DetailsIn response to this:
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 openshift-eng/jira-lifecycle-plugin repository. |
|
[ART PR BUILD NOTIFIER] This PR has been included in build ose-openshift-apiserver-container-v4.17.0-202405080245.p0.g11d295e.assembly.stream.el9 for distgit ose-openshift-apiserver. |
|
Fix included in accepted release 4.16.0-0.nightly-2024-05-08-222442 |
Bump to openshift/api@8203151, which fixes the godoc for the
Route.spec.tls.insecureEdgeTerminationPolicyfield to say that "None", not "Allow", is the default value.Bump to openshift/library-go@cb8aac9 to fix build errors in library-go resulting from changes in openshift/api.
Update
NewOpenshiftAPIConfiglikewise to read feature definitions from their new location in openshift/api.Follow-up to openshift/api#1845.