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

[release-1.16] Upgrade to latest dependencies #578

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ require (
k8s.io/apimachinery v0.30.3
k8s.io/client-go v0.30.3
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8
knative.dev/eventing v0.43.0
knative.dev/hack v0.0.0-20241010131451-05b2fb30cb4d
knative.dev/eventing v0.43.3
knative.dev/hack v0.0.0-20250114120502-30344aeba756
knative.dev/pkg v0.0.0-20241021183759-9b9d535af5ad
)

Expand Down
8 changes: 4 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -684,10 +684,10 @@ k8s.io/kube-openapi v0.0.0-20240808142205-8e686545bdb8 h1:1Wof1cGQgA5pqgo8MxKPtf
k8s.io/kube-openapi v0.0.0-20240808142205-8e686545bdb8/go.mod h1:Os6V6dZwLNii3vxFpxcNaTmH8LJJBkOTg1N0tOA0fvA=
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 h1:pUdcCO1Lk/tbT5ztQWOBi5HBgbBP1J8+AsQnQCKsi8A=
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0=
knative.dev/eventing v0.43.0 h1:GELHZ0yYosMeV78l4alMsd7HJciEu6a3T2C5l7MPi3Y=
knative.dev/eventing v0.43.0/go.mod h1:pdrF+bEUfRkNn9ifWXS7DoVj5W31gA5KQVd8iwplXUo=
knative.dev/hack v0.0.0-20241010131451-05b2fb30cb4d h1:aCfX7kwkvgGxXXGbso5tLqdwQmzBkJ9d+EIRwksKTvk=
knative.dev/hack v0.0.0-20241010131451-05b2fb30cb4d/go.mod h1:R0ritgYtjLDO9527h5vb5X6gfvt5LCrJ55BNbVDsWiY=
knative.dev/eventing v0.43.3 h1:xt10rMoe6t1hFPPrnsR5NYe/vWRXQqLgRK8lS6n5mU8=
knative.dev/eventing v0.43.3/go.mod h1:pdrF+bEUfRkNn9ifWXS7DoVj5W31gA5KQVd8iwplXUo=
knative.dev/hack v0.0.0-20250114120502-30344aeba756 h1:WOZy3XeC4frTOCHmmPjPj70ojyeAjO8MtNfO02nMq0w=
knative.dev/hack v0.0.0-20250114120502-30344aeba756/go.mod h1:R0ritgYtjLDO9527h5vb5X6gfvt5LCrJ55BNbVDsWiY=
knative.dev/pkg v0.0.0-20241021183759-9b9d535af5ad h1:Nrjtr2H168rJeamH4QdyLMV1lEKHejNhaj1ymgQMfLk=
knative.dev/pkg v0.0.0-20241021183759-9b9d535af5ad/go.mod h1:StJI72GWcm/iErmk4RqFJiOo8RLbVqPbHxUqeVwAzeo=
rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=
Expand Down
2 changes: 1 addition & 1 deletion third_party/eventing
Submodule eventing updated 51 files
+72 −54 cmd/jobsink/main.go
+106 −0 cmd/jobsink/main_test.go
+0 −8 config/core/resources/eventpolicy.yaml
+4 −0 config/core/resources/jobsink.yaml
+22 −0 config/core/roles/addressable-resolvers-clusterrole.yaml
+1 −1 hack/e2e-debug.sh
+32 −7 pkg/broker/filter/filter_handler.go
+7 −5 pkg/broker/filter/filter_handler_test.go
+7 −1 pkg/broker/ingress/ingress_handler.go
+7 −5 pkg/broker/ingress/ingress_handler_test.go
+36 −4 pkg/reconciler/jobsink/jobsink_test.go
+50 −203 pkg/scheduler/README.md
+1 −1 pkg/scheduler/doc.go
+0 −88 pkg/scheduler/factory/registry.go
+0 −22 pkg/scheduler/placement.go
+0 −92 pkg/scheduler/placement_test.go
+0 −111 pkg/scheduler/plugins/core/availabilitynodepriority/availability_node_priority.go
+0 −257 pkg/scheduler/plugins/core/availabilitynodepriority/availability_node_priority_test.go
+0 −115 pkg/scheduler/plugins/core/availabilityzonepriority/availability_zone_priority.go
+0 −260 pkg/scheduler/plugins/core/availabilityzonepriority/availability_zone_priority_test.go
+0 −151 pkg/scheduler/plugins/core/evenpodspread/even_pod_spread.go
+0 −198 pkg/scheduler/plugins/core/evenpodspread/even_pod_spread_test.go
+0 −61 pkg/scheduler/plugins/core/lowestordinalpriority/lowest_ordinal_priority.go
+0 −114 pkg/scheduler/plugins/core/lowestordinalpriority/lowest_ordinal_priority_test.go
+0 −61 pkg/scheduler/plugins/core/podfitsresources/pod_fits_resources.go
+0 −96 pkg/scheduler/plugins/core/podfitsresources/pod_fits_resources_test.go
+0 −113 pkg/scheduler/plugins/core/removewithavailabilitynodepriority/remove_with_availability_node_priority.go
+0 −231 pkg/scheduler/plugins/core/removewithavailabilitynodepriority/remove_with_availability_node_priority_test.go
+0 −118 pkg/scheduler/plugins/core/removewithavailabilityzonepriority/remove_with_availability_zone_priority.go
+0 −231 pkg/scheduler/plugins/core/removewithavailabilityzonepriority/remove_with_availability_zone_priority_test.go
+0 −106 pkg/scheduler/plugins/core/removewithevenpodspreadpriority/remove_with_even_pod_spread_priority.go
+0 −166 pkg/scheduler/plugins/core/removewithevenpodspreadpriority/remove_with_even_pod_spread_priority_test.go
+0 −60 pkg/scheduler/plugins/core/removewithhighestordinalpriority/remove_with_highest_ordinal_priority.go
+0 −113 pkg/scheduler/plugins/core/removewithhighestordinalpriority/remove_with_highest_ordinal_priority_test.go
+0 −78 pkg/scheduler/plugins/kafka/nomaxresourcecount/no_max_resource_count.go
+0 −146 pkg/scheduler/plugins/kafka/nomaxresourcecount/no_max_resource_count_test.go
+2 −45 pkg/scheduler/scheduler.go
+1 −33 pkg/scheduler/state/helpers.go
+0 −209 pkg/scheduler/state/interface.go
+0 −87 pkg/scheduler/state/interface_test.go
+36 −227 pkg/scheduler/state/state.go
+25 −411 pkg/scheduler/state/state_test.go
+34 −117 pkg/scheduler/statefulset/autoscaler.go
+75 −466 pkg/scheduler/statefulset/autoscaler_test.go
+180 −478 pkg/scheduler/statefulset/scheduler.go
+488 −612 pkg/scheduler/statefulset/scheduler_test.go
+9 −0 pkg/scheduler/testing/client.go
+3 −43 pkg/scheduler/testing/vpod.go
+55 −1 test/rekt/features/jobsink/jobsink.go
+17 −1 test/rekt/job_sink_test.go
+10 −0 test/rekt/resources/jobsink/jobsink.go
2 changes: 1 addition & 1 deletion third_party/eventing-kafka-broker
2 changes: 1 addition & 1 deletion vendor/knative.dev/hack/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ RELEASE_NOTES=""
RELEASE_BRANCH=""
RELEASE_GCS_BUCKET="knative-nightly/${REPO_NAME}"
RELEASE_DIR=""
KO_FLAGS="-P --platform=all"
export KO_FLAGS="-P --platform=all"
VALIDATION_TESTS="./test/presubmit-tests.sh"
ARTIFACTS_TO_PUBLISH=""
FROM_NIGHTLY_RELEASE=""
Expand Down
4 changes: 2 additions & 2 deletions vendor/modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -900,10 +900,10 @@ k8s.io/utils/pointer
k8s.io/utils/ptr
k8s.io/utils/strings/slices
k8s.io/utils/trace
# knative.dev/eventing v0.43.0
# knative.dev/eventing v0.43.3
## explicit; go 1.22.0
knative.dev/eventing/pkg/apis/feature
# knative.dev/hack v0.0.0-20241010131451-05b2fb30cb4d
# knative.dev/hack v0.0.0-20250114120502-30344aeba756
## explicit; go 1.21
knative.dev/hack
# knative.dev/pkg v0.0.0-20241021183759-9b9d535af5ad
Expand Down
Loading