mirror of
https://github.com/k3s-io/kubernetes.git
synced 2026-07-17 20:00:07 +00:00
Bump OpenTelemetry dependencies: - go.opentelemetry.io/otel v1.39.0 → v1.40.0 - go.opentelemetry.io/otel/metric v1.39.0 → v1.40.0 - go.opentelemetry.io/otel/sdk v1.39.0 → v1.40.0 - go.opentelemetry.io/otel/trace v1.39.0 → v1.40.0 - go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.39.0 → v1.40.0 - go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.39.0 → v1.40.0 - go.opentelemetry.io/contrib/.../otelrestful v0.64.0 → v0.65.0 - go.opentelemetry.io/contrib/.../otelhttp v0.64.0 → v0.65.0 - go.opentelemetry.io/contrib/.../otelgrpc v0.63.0 → v0.65.0 Unpin otelgrpc: the nil TracerProvider panic (kubernetes#135865) that required pinning at v0.63.0 is fixed in v0.65.0. Removed the pinnedModules entry from unwanted-dependencies.json. Signed-off-by: Davanum Srinivas <davanum@gmail.com>
Kubernetes hack GuideLines
This document describes how you can use the scripts from hack directory
and gives a brief introduction and explanation of these scripts.
Overview
The hack directory contains many scripts that ensure continuous development of kubernetes,
enhance the robustness of the code, improve development efficiency, etc.
The explanations and descriptions of these scripts are helpful for contributors.
For details, refer to the following guidelines.
Key scripts
verify-all.sh: This script is a vestigial redirection, Please do not add "real" logic. It is equivalent tomake verify.update-all.sh: This script is a vestigial redirection, Please do not add "real" logic. Thetruetarget of this makerule ishack/make-rules/update.sh.It is equivalent tomake update.
Attention
Note that all scripts must be run from the Kubernetes root directory.
We should run hack/verify-all.sh before submitting a PR and if anything fails run hack/update-all.sh.