-
Notifications
You must be signed in to change notification settings - Fork 4k
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
chore(vpa): update dependencies #7551
Merged
k8s-ci-robot
merged 6 commits into
kubernetes:master
from
davidspek:feat/update-vpa-k8s
Dec 13, 2024
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
48d997e
feat: update k8s dependencies vpa
davidspek e760e60
chore: upgrade k8s.io/legacy-cloud-providers
davidspek 16e0307
fix: update prometheus package and tests
davidspek 30a762d
fix: correct update-codegen script and run it
davidspek 6d2df0c
fix: upgrade e2e packages and tests
davidspek b4e18e1
chore: bump k8s to 1.32 + other deps
davidspek File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,106 +1,108 @@ | ||
module k8s.io/autoscaler/vertical-pod-autoscaler | ||
|
||
go 1.21 | ||
go 1.23.0 | ||
|
||
toolchain go1.23.3 | ||
|
||
require ( | ||
github.com/fsnotify/fsnotify v1.7.0 | ||
github.com/fsnotify/fsnotify v1.8.0 | ||
github.com/golang/mock v1.6.0 | ||
github.com/prometheus/client_golang v1.17.0 | ||
github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 | ||
github.com/prometheus/common v0.44.0 | ||
github.com/prometheus/client_golang v1.20.5 | ||
github.com/prometheus/client_model v0.6.1 | ||
github.com/prometheus/common v0.61.0 | ||
github.com/spf13/pflag v1.0.5 | ||
github.com/stretchr/testify v1.8.2 | ||
golang.org/x/time v0.4.0 | ||
k8s.io/api v0.28.3 | ||
k8s.io/apimachinery v0.28.3 | ||
k8s.io/client-go v0.28.3 | ||
k8s.io/code-generator v0.28.3 | ||
k8s.io/component-base v0.28.3 | ||
k8s.io/klog/v2 v2.100.1 | ||
k8s.io/metrics v0.28.3 | ||
k8s.io/utils v0.0.0-20230726121419-3b25d923346b | ||
github.com/stretchr/testify v1.10.0 | ||
golang.org/x/time v0.8.0 | ||
k8s.io/api v0.32.0 | ||
k8s.io/apimachinery v0.32.0 | ||
k8s.io/client-go v0.32.0 | ||
k8s.io/code-generator v0.32.0 | ||
k8s.io/component-base v0.32.0 | ||
k8s.io/klog/v2 v2.130.1 | ||
k8s.io/metrics v0.32.0 | ||
k8s.io/utils v0.0.0-20241210054802-24370beab758 | ||
) | ||
|
||
require ( | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/blang/semver/v4 v4.0.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/emicklei/go-restful/v3 v3.10.1 // indirect | ||
github.com/evanphx/json-patch v4.12.0+incompatible // indirect | ||
github.com/go-logr/logr v1.2.4 // indirect | ||
github.com/go-openapi/jsonpointer v0.19.6 // indirect | ||
github.com/cespare/xxhash/v2 v2.3.0 // indirect | ||
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect | ||
github.com/emicklei/go-restful/v3 v3.11.0 // indirect | ||
github.com/fxamacker/cbor/v2 v2.7.0 // indirect | ||
github.com/go-logr/logr v1.4.2 // indirect | ||
github.com/go-openapi/jsonpointer v0.21.0 // indirect | ||
github.com/go-openapi/jsonreference v0.20.2 // indirect | ||
github.com/go-openapi/swag v0.22.3 // indirect | ||
github.com/go-openapi/swag v0.23.0 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/golang/protobuf v1.5.4 // indirect | ||
github.com/google/gnostic-models v0.6.8 // indirect | ||
github.com/google/go-cmp v0.5.9 // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/google/gofuzz v1.2.0 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/imdario/mergo v0.3.6 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/klauspost/compress v1.17.9 // indirect | ||
github.com/mailru/easyjson v0.7.7 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/procfs v0.11.1 // indirect | ||
github.com/spf13/cobra v1.7.0 // indirect | ||
github.com/stretchr/objx v0.5.0 // indirect | ||
golang.org/x/mod v0.10.0 // indirect | ||
golang.org/x/net v0.21.0 // indirect | ||
golang.org/x/oauth2 v0.8.0 // indirect | ||
golang.org/x/sys v0.17.0 // indirect | ||
golang.org/x/term v0.17.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
golang.org/x/tools v0.8.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect | ||
github.com/prometheus/procfs v0.15.1 // indirect | ||
github.com/spf13/cobra v1.8.1 // indirect | ||
github.com/stretchr/objx v0.5.2 // indirect | ||
github.com/x448/float16 v0.8.4 // indirect | ||
go.opentelemetry.io/otel v1.28.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.28.0 // indirect | ||
golang.org/x/mod v0.21.0 // indirect | ||
golang.org/x/net v0.32.0 // indirect | ||
golang.org/x/oauth2 v0.24.0 // indirect | ||
golang.org/x/sync v0.10.0 // indirect | ||
golang.org/x/sys v0.28.0 // indirect | ||
golang.org/x/term v0.27.0 // indirect | ||
golang.org/x/text v0.21.0 // indirect | ||
golang.org/x/tools v0.26.0 // indirect | ||
google.golang.org/protobuf v1.35.2 // indirect | ||
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
k8s.io/gengo v0.0.0-20220902162205-c0856e24416d // indirect | ||
k8s.io/kube-openapi v0.0.0-20230717233707-2695361300d9 // indirect | ||
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect | ||
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect | ||
sigs.k8s.io/yaml v1.3.0 // indirect | ||
k8s.io/gengo/v2 v2.0.0-20240911193312-2b36238f13e9 // indirect | ||
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f // indirect | ||
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect | ||
sigs.k8s.io/structured-merge-diff/v4 v4.4.2 // indirect | ||
sigs.k8s.io/yaml v1.4.0 // indirect | ||
) | ||
|
||
replace ( | ||
k8s.io/api => k8s.io/api v0.28.3 | ||
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.28.3 | ||
k8s.io/apimachinery => k8s.io/apimachinery v0.28.3 | ||
k8s.io/apiserver => k8s.io/apiserver v0.28.3 | ||
k8s.io/cli-runtime => k8s.io/cli-runtime v0.28.3 | ||
k8s.io/client-go => k8s.io/client-go v0.28.3 | ||
k8s.io/cloud-provider => k8s.io/cloud-provider v0.28.3 | ||
k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.28.3 | ||
k8s.io/code-generator => k8s.io/code-generator v0.28.3 | ||
k8s.io/component-base => k8s.io/component-base v0.28.3 | ||
k8s.io/component-helpers => k8s.io/component-helpers v0.28.3 | ||
k8s.io/controller-manager => k8s.io/controller-manager v0.28.3 | ||
k8s.io/cri-api => k8s.io/cri-api v0.28.3 | ||
k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.28.3 | ||
k8s.io/dynamic-resource-allocation => k8s.io/dynamic-resource-allocation v0.28.3 | ||
k8s.io/endpointslice => k8s.io/endpointslice v0.28.3 | ||
k8s.io/kms => k8s.io/kms v0.28.3 | ||
k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.28.3 | ||
k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.28.3 | ||
k8s.io/kube-proxy => k8s.io/kube-proxy v0.28.3 | ||
k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.28.3 | ||
k8s.io/kubectl => k8s.io/kubectl v0.28.3 | ||
k8s.io/kubelet => k8s.io/kubelet v0.28.3 | ||
k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.28.3 | ||
k8s.io/metrics => k8s.io/metrics v0.28.3 | ||
k8s.io/mount-utils => k8s.io/mount-utils v0.28.3 | ||
k8s.io/pod-security-admission => k8s.io/pod-security-admission v0.28.3 | ||
k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.28.3 | ||
k8s.io/sample-cli-plugin => k8s.io/sample-cli-plugin v0.28.3 | ||
k8s.io/sample-controller => k8s.io/sample-controller v0.28.3 | ||
k8s.io/api => k8s.io/api v0.32.0 | ||
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.32.0 | ||
k8s.io/apimachinery => k8s.io/apimachinery v0.32.0 | ||
k8s.io/apiserver => k8s.io/apiserver v0.32.0 | ||
k8s.io/cli-runtime => k8s.io/cli-runtime v0.32.0 | ||
k8s.io/client-go => k8s.io/client-go v0.32.0 | ||
k8s.io/cloud-provider => k8s.io/cloud-provider v0.32.0 | ||
k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.32.0 | ||
k8s.io/code-generator => k8s.io/code-generator v0.32.0 | ||
k8s.io/component-base => k8s.io/component-base v0.32.0 | ||
k8s.io/component-helpers => k8s.io/component-helpers v0.32.0 | ||
k8s.io/controller-manager => k8s.io/controller-manager v0.32.0 | ||
k8s.io/cri-api => k8s.io/cri-api v0.32.0 | ||
k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.32.0 | ||
k8s.io/dynamic-resource-allocation => k8s.io/dynamic-resource-allocation v0.32.0 | ||
k8s.io/endpointslice => k8s.io/endpointslice v0.32.0 | ||
k8s.io/kms => k8s.io/kms v0.32.0 | ||
k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.32.0 | ||
k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.32.0 | ||
k8s.io/kube-proxy => k8s.io/kube-proxy v0.32.0 | ||
k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.32.0 | ||
k8s.io/kubectl => k8s.io/kubectl v0.32.0 | ||
k8s.io/kubelet => k8s.io/kubelet v0.32.0 | ||
k8s.io/metrics => k8s.io/metrics v0.32.0 | ||
k8s.io/mount-utils => k8s.io/mount-utils v0.32.0 | ||
k8s.io/pod-security-admission => k8s.io/pod-security-admission v0.32.0 | ||
k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.32.0 | ||
k8s.io/sample-cli-plugin => k8s.io/sample-cli-plugin v0.32.0 | ||
k8s.io/sample-controller => k8s.io/sample-controller v0.32.0 | ||
) |
Oops, something went wrong.
Oops, something went wrong.
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.
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.
Looks like we are losing the
framework.TestContext.AllowedNotReadyNodes
here, I haven't looked yet but do we know why? Is it OK?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.
Found the original PR that removed this: kubernetes/kubernetes#124205
So looks generally harmless? Would love to validate that
framework.TestContext.AllowedNotReadyNodes
was always 0 in our case as well.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.
For what it's worth, I've run the e2e tests locally and everything passes