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

Update third_party directory with files from Kubernetes v1.32.1 #110

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: 3 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ require (
github.com/kubewarden/policy-sdk-go v0.11.0
github.com/opencontainers/image-spec v1.1.0
github.com/stretchr/testify v1.10.0
k8s.io/apiserver v1.32.0
k8s.io/apiserver v1.32.1
)

replace github.com/go-openapi/strfmt => github.com/kubewarden/strfmt v0.1.3
Expand All @@ -22,6 +22,7 @@ replace (
k8s.io/apiserver v1.31.2 => ./third_party/k8s.io/apiserver/
k8s.io/apiserver v1.31.3 => ./third_party/k8s.io/apiserver/
k8s.io/apiserver v1.32.0 => ./third_party/k8s.io/apiserver/
k8s.io/apiserver v1.32.1 => ./third_party/k8s.io/apiserver/
)

replace (
Expand All @@ -30,6 +31,7 @@ replace (
k8s.io/apimachinery v1.31.2 => ./third_party/k8s.io/apimachinery/
k8s.io/apimachinery v1.31.3 => ./third_party/k8s.io/apimachinery/
k8s.io/apimachinery v1.32.0 => ./third_party/k8s.io/apimachinery/
k8s.io/apimachinery v1.32.1 => ./third_party/k8s.io/apimachinery/
)

require (
Expand Down
2 changes: 1 addition & 1 deletion third_party/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ This folder contains third-party code from kubernetes:
- [kubernetes/apiserver](https://github.com/kubernetes/apiserver).
- [kubernetes/apimachinery](https://github.com/kubernetes/apimachinery).

The current version is based on kubernetes v1.32.0 (apiserver/apimachinery v0.32.0).
The current version is based on kubernetes v1.32.1 (apiserver/apimachinery v0.32.1).

All code in this folder is licensed under the Apache License 2.0, see [LICENSE](LICENSE).
Loading