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

cleanup: fix k8s.io/endpointslice dependency #2014

Merged
merged 1 commit into from
Oct 14, 2023
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
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ replace (
k8s.io/cri-api => k8s.io/cri-api v0.28.1
k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.28.1
k8s.io/dynamic-resource-allocation => k8s.io/dynamic-resource-allocation v0.28.1
k8s.io/endpointslice => k8s.io/endpointslice v0.28.1
k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.28.1
k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.28.1
k8s.io/kube-proxy => k8s.io/kube-proxy v0.28.1
Expand Down
2 changes: 2 additions & 0 deletions hack/verify-gomod.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,5 @@ if [[ -n "${diff}" ]]; then
exit 1
fi
echo "Done"

go list -mod readonly -m all
1 change: 1 addition & 0 deletions vendor/modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1557,6 +1557,7 @@ sigs.k8s.io/yaml
# k8s.io/cri-api => k8s.io/cri-api v0.28.1
# k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.28.1
# k8s.io/dynamic-resource-allocation => k8s.io/dynamic-resource-allocation v0.28.1
# k8s.io/endpointslice => k8s.io/endpointslice v0.28.1
# k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.28.1
# k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.28.1
# k8s.io/kube-proxy => k8s.io/kube-proxy v0.28.1
Expand Down
Loading