Skip to content

bump k8s to v1.32.13#6367

Merged
zhangzujian merged 2 commits intokubeovn:release-1.14from
zhangzujian:release-1.14
Mar 1, 2026
Merged

bump k8s to v1.32.13#6367
zhangzujian merged 2 commits intokubeovn:release-1.14from
zhangzujian:release-1.14

Conversation

@zhangzujian
Copy link
Copy Markdown
Member

Pull Request

What type of this PR

Examples of user facing changes:

  • Features
  • Bug fixes
  • Docs
  • Tests

Which issue(s) this PR fixes

Fixes #(issue-number)

Signed-off-by: zhangzujian <zhangzujian.7@gmail.com>
@dosubot dosubot bot added size:L This PR changes 100-499 lines, ignoring generated files. dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Mar 1, 2026
@gemini-code-assist
Copy link
Copy Markdown
Contributor

Summary of Changes

Hello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request performs a routine maintenance update by bumping the Kubernetes version to v1.32.13. This ensures the project benefits from the latest features, bug fixes, and security enhancements provided by Kubernetes. Additionally, various Go module dependencies have been upgraded to maintain compatibility and leverage recent improvements, contributing to overall system stability and security.

Highlights

  • Kubernetes Version Bump: The Kubernetes version has been updated to v1.32.13 across various configuration files and Go modules.
  • Go Module Dependencies Updated: Several Go module dependencies, including google.golang.org/grpc, go.opentelemetry.io packages, and various k8s.io modules, have been upgraded to their latest versions.
Changelog
  • dist/images/Dockerfile.base
    • Updated KUBECTL_VERSION from v1.32.11 to v1.32.13.
  • dist/images/go-deps/download-go-deps.sh
    • Updated KUBECTL_VERSION from v1.32.11 to v1.32.13.
  • go.mod
    • Updated google.golang.org/grpc from v1.77.0 to v1.79.1.
    • Updated k8s.io/api, k8s.io/apiextensions-apiserver, k8s.io/apimachinery, k8s.io/apiserver, k8s.io/kube-aggregator, and k8s.io/kubernetes from v0.32.11 to v0.32.13.
    • Updated k8s.io/utils to a newer commit hash.
    • Updated github.com/grpc-ecosystem/grpc-gateway/v2 from v2.27.3 to v2.28.0.
    • Updated go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp from v0.64.0 to v0.65.0.
    • Updated go.opentelemetry.io/otel, go.opentelemetry.io/otel/exporters/otlp/otlptrace, go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc, go.opentelemetry.io/otel/metric, go.opentelemetry.io/otel/sdk, and go.opentelemetry.io/otel/trace from v1.39.0 to v1.40.0.
    • Updated golang.org/x/exp to a newer commit hash.
    • Updated google.golang.org/genproto/googleapis/api and google.golang.org/genproto/googleapis/rpc to newer commit hashes.
    • Updated k8s.io/component-base and k8s.io/kube-openapi in replace directives from v0.32.11 to v0.32.13.
    • Updated various k8s.io modules in replace directives (e.g., cli-runtime, client-go, cloud-provider, etc.) from v0.32.11 to v0.32.13.
  • go.sum
    • Updated checksums for github.com/grpc-ecosystem/grpc-gateway/v2.
    • Updated checksums for go.opentelemetry.io related modules.
    • Updated checksums for golang.org/x/exp.
    • Updated checksums for google.golang.org/genproto/googleapis/api and google.golang.org/genproto/googleapis/rpc.
    • Updated checksums for google.golang.org/grpc.
    • Updated checksums for k8s.io/api, k8s.io/apiextensions-apiserver, k8s.io/apimachinery, k8s.io/apiserver, k8s.io/client-go, k8s.io/code-generator, k8s.io/component-base, k8s.io/kube-aggregator, k8s.io/kubernetes, and k8s.io/utils.
  • talos.mk
    • Updated TALOS_K8S_VERSION from 1.32.10 to 1.32.13.
Activity
  • No specific activity (comments, reviews, or progress updates) has been recorded for this pull request since its creation.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request bumps Kubernetes dependencies to v1.32.13 across several files, including Dockerfiles, shell scripts, and Go modules. The changes are mostly consistent. However, I've noticed an inconsistency in go.mod where the replace directive for k8s.io/kube-openapi was not updated to v0.32.13 like other Kubernetes modules, which could lead to compatibility issues. Please see my detailed comment.

k8s.io/component-base v0.32.11 // indirect
k8s.io/kube-openapi v0.32.11 // indirect
k8s.io/component-base v0.32.13 // indirect
k8s.io/kube-openapi v0.32.13 // indirect
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

While this line correctly updates the indirect dependency for k8s.io/kube-openapi to v0.32.13, the replace directive for this module on line 248 is still pointing to an older, pinned version (v0.0.0-20241212222426-2c72e554b1e7) and was not updated along with the other k8s.io modules. To ensure consistency and avoid potential compatibility issues, the replace directive for k8s.io/kube-openapi should also be updated to v0.32.13.

@coveralls
Copy link
Copy Markdown

coveralls commented Mar 1, 2026

Pull Request Test Coverage Report for Build 22539138444

Details

  • 0 of 0 changed or added relevant lines in 0 files are covered.
  • 2 unchanged lines in 1 file lost coverage.
  • Overall coverage decreased (-0.004%) to 21.242%

Files with Coverage Reduction New Missed Lines %
pkg/ovs/ovn-nb-logical_router_route.go 2 74.6%
Totals Coverage Status
Change from base Build 22518921220: -0.004%
Covered Lines: 10635
Relevant Lines: 50066

💛 - Coveralls

Signed-off-by: zhangzujian <zhangzujian.7@gmail.com>
@zhangzujian zhangzujian merged commit 826e258 into kubeovn:release-1.14 Mar 1, 2026
68 of 70 checks passed
@zhangzujian zhangzujian deleted the release-1.14 branch March 1, 2026 11:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update Go code size:L This PR changes 100-499 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants