-
Notifications
You must be signed in to change notification settings - Fork 78
Update k8s 1 33 #432
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 k8s 1 33 #432
Conversation
acornett21
commented
Jun 3, 2025
- Updating dependencies manually
- Relates: Bump the k8s-dependencies group across 1 directory with 5 updates #430
Bumps the k8s-dependencies group with 3 updates in the / directory: [k8s.io/api](https://github.com/kubernetes/api), [k8s.io/apiextensions-apiserver](https://github.com/kubernetes/apiextensions-apiserver) and [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime). Updates `k8s.io/api` from 0.32.3 to 0.33.1 - [Commits](kubernetes/api@v0.32.3...v0.33.1) Updates `k8s.io/apiextensions-apiserver` from 0.32.3 to 0.33.1 - [Release notes](https://github.com/kubernetes/apiextensions-apiserver/releases) - [Commits](kubernetes/apiextensions-apiserver@v0.32.3...v0.33.1) Updates `k8s.io/apimachinery` from 0.32.3 to 0.33.1 - [Commits](kubernetes/apimachinery@v0.32.3...v0.33.1) Updates `k8s.io/client-go` from 0.32.3 to 0.33.1 - [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md) - [Commits](kubernetes/client-go@v0.32.3...v0.33.1) Updates `sigs.k8s.io/controller-runtime` from 0.20.4 to 0.21.0 - [Release notes](https://github.com/kubernetes-sigs/controller-runtime/releases) - [Changelog](https://github.com/kubernetes-sigs/controller-runtime/blob/main/RELEASE.md) - [Commits](kubernetes-sigs/controller-runtime@v0.20.4...v0.21.0) --- updated-dependencies: - dependency-name: k8s.io/api dependency-version: 0.33.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: k8s-dependencies - dependency-name: k8s.io/apiextensions-apiserver dependency-version: 0.33.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: k8s-dependencies - dependency-name: k8s.io/apimachinery dependency-version: 0.33.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: k8s-dependencies - dependency-name: k8s.io/client-go dependency-version: 0.33.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: k8s-dependencies - dependency-name: sigs.k8s.io/controller-runtime dependency-version: 0.21.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: k8s-dependencies ... Signed-off-by: dependabot[bot] <[email protected]>
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #432 +/- ##
==========================================
- Coverage 39.79% 38.27% -1.53%
==========================================
Files 56 56
Lines 5450 5450
==========================================
- Hits 2169 2086 -83
- Misses 3127 3212 +85
+ Partials 154 152 -2 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
6939a9d
to
c31c4cd
Compare
/lgtm |
@@ -365,7 +364,6 @@ spec: | |||
pod labels will be ignored. The default value is empty. | |||
The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. | |||
Also, mismatchLabelKeys cannot be set when labelSelector isn't set. | |||
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default). |
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.
should we remove that?
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.
This was auto updated/generated, I don't think we have control over this language.
c31c4cd
to
322c094
Compare
Signed-off-by: Adam D. Cornett <[email protected]>
322c094
to
926ea26
Compare
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.
/lgtm
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: camilamacedo86 The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/lgtm cancel |
@@ -209,7 +209,7 @@ func loadBundle(csvName string, dir string) (*Bundle, error) { | |||
} | |||
defer fileReader.Close() | |||
|
|||
decoder := yaml.NewYAMLOrJSONDecoder(fileReader, 30) | |||
decoder := yaml.NewYAMLToJSONDecoder(fileReader) |
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.
@acornett21 we need to keep the buffer size I think: https://github.com/kubernetes/apimachinery/blob/v0.33.2/pkg/util/yaml/decoder.go#L279
See
c102f5c
into
operator-framework:master