Skip to content

Commit ed1efe4

Browse files
pravaraga7i
andauthored
Bump to k8s v0.30.0-alpha.3 (#1359)
* update go.mod for v0.30.0-alpha.3 * update vendor deps * regenrate go.mod transitive dependencies --------- Co-authored-by: Amir Alavi <[email protected]>
1 parent 749e81c commit ed1efe4

File tree

375 files changed

+11099
-7313
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

375 files changed

+11099
-7313
lines changed

docs/cli/descheduler.md

+2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ descheduler [flags]
3535
--log-flush-frequency duration Maximum number of seconds between log flushes (default 5s)
3636
--log-json-info-buffer-size quantity [Alpha] In JSON format with split output streams, the info messages can be buffered for a while to increase performance. The default value of zero bytes disables buffering. The size can be specified as number of bytes (512), multiples of 1000 (1K), multiples of 1024 (2Ki), or powers of those (3M, 4G, 5Mi, 6Gi). Enable the LoggingAlphaOptions feature gate to use this.
3737
--log-json-split-stream [Alpha] In JSON format, write error messages to stderr and info messages to stdout. The default is to write a single stream to stdout. Enable the LoggingAlphaOptions feature gate to use this.
38+
--log-text-info-buffer-size quantity [Alpha] In text format with split output streams, the info messages can be buffered for a while to increase performance. The default value of zero bytes disables buffering. The size can be specified as number of bytes (512), multiples of 1000 (1K), multiples of 1024 (2Ki), or powers of those (3M, 4G, 5Mi, 6Gi). Enable the LoggingAlphaOptions feature gate to use this.
39+
--log-text-split-stream [Alpha] In text format, write error messages to stderr and info messages to stdout. The default is to write a single stream to stdout. Enable the LoggingAlphaOptions feature gate to use this.
3840
--logging-format string Sets the log format. Permitted formats: "json" (gated by LoggingBetaOptions), "text". (default "text")
3941
--otel-collector-endpoint string Set this flag to the OpenTelemetry Collector Service Address
4042
--otel-fallback-no-op-on-error Fallback to NoOp Tracer in case of error

go.mod

+32-36
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,20 @@ require (
77
github.com/google/go-cmp v0.6.0
88
github.com/spf13/cobra v1.8.0
99
github.com/spf13/pflag v1.0.5
10-
go.opentelemetry.io/otel v1.22.0
11-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.22.0
12-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.22.0
13-
go.opentelemetry.io/otel/sdk v1.22.0
14-
go.opentelemetry.io/otel/trace v1.22.0
15-
google.golang.org/grpc v1.61.0
16-
k8s.io/api v0.29.1
17-
k8s.io/apimachinery v0.29.1
18-
k8s.io/apiserver v0.29.1
19-
k8s.io/client-go v0.29.1
20-
k8s.io/code-generator v0.29.1
21-
k8s.io/component-base v0.29.1
22-
k8s.io/component-helpers v0.29.1
23-
k8s.io/klog/v2 v2.110.1
10+
go.opentelemetry.io/otel v1.24.0
11+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.24.0
12+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.24.0
13+
go.opentelemetry.io/otel/sdk v1.24.0
14+
go.opentelemetry.io/otel/trace v1.24.0
15+
google.golang.org/grpc v1.62.0
16+
k8s.io/api v0.30.0-alpha.3
17+
k8s.io/apimachinery v0.30.0-alpha.3
18+
k8s.io/apiserver v0.30.0-alpha.3
19+
k8s.io/client-go v0.30.0-alpha.3
20+
k8s.io/code-generator v0.30.0-alpha.3
21+
k8s.io/component-base v0.30.0-alpha.3
22+
k8s.io/component-helpers v0.30.0-alpha.3
23+
k8s.io/klog/v2 v2.120.1
2424
k8s.io/utils v0.0.0-20240102154912-e7106e64919e
2525
sigs.k8s.io/mdtoc v1.1.0
2626
)
@@ -44,7 +44,7 @@ require (
4444
github.com/fsnotify/fsnotify v1.7.0 // indirect
4545
github.com/go-logr/logr v1.4.1 // indirect
4646
github.com/go-logr/stdr v1.2.2 // indirect
47-
github.com/go-logr/zapr v1.2.3 // indirect
47+
github.com/go-logr/zapr v1.3.0 // indirect
4848
github.com/go-openapi/jsonpointer v0.19.6 // indirect
4949
github.com/go-openapi/jsonreference v0.20.2 // indirect
5050
github.com/go-openapi/swag v0.22.3 // indirect
@@ -55,9 +55,9 @@ require (
5555
github.com/google/cel-go v0.17.7 // indirect
5656
github.com/google/gnostic-models v0.6.8 // indirect
5757
github.com/google/gofuzz v1.2.0 // indirect
58-
github.com/google/uuid v1.4.0 // indirect
58+
github.com/google/uuid v1.6.0 // indirect
5959
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
60-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 // indirect
60+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.0 // indirect
6161
github.com/imdario/mergo v0.3.6 // indirect
6262
github.com/inconshreveable/mousetrap v1.1.0 // indirect
6363
github.com/josharian/intern v1.0.0 // indirect
@@ -80,41 +80,37 @@ require (
8080
go.etcd.io/etcd/client/v3 v3.5.10 // indirect
8181
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.42.0 // indirect
8282
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.44.0 // indirect
83-
go.opentelemetry.io/otel/metric v1.22.0 // indirect
84-
go.opentelemetry.io/proto/otlp v1.0.0 // indirect
85-
go.uber.org/atomic v1.10.0 // indirect
83+
go.opentelemetry.io/otel/metric v1.24.0 // indirect
84+
go.opentelemetry.io/proto/otlp v1.1.0 // indirect
8685
go.uber.org/multierr v1.11.0 // indirect
87-
go.uber.org/zap v1.19.0 // indirect
88-
golang.org/x/crypto v0.18.0 // indirect
86+
go.uber.org/zap v1.26.0 // indirect
87+
golang.org/x/crypto v0.19.0 // indirect
8988
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect
9089
golang.org/x/mod v0.14.0 // indirect
9190
golang.org/x/net v0.20.0 // indirect
92-
golang.org/x/oauth2 v0.14.0 // indirect
93-
golang.org/x/sync v0.5.0 // indirect
94-
golang.org/x/sys v0.16.0 // indirect
95-
golang.org/x/term v0.16.0 // indirect
91+
golang.org/x/oauth2 v0.16.0 // indirect
92+
golang.org/x/sync v0.6.0 // indirect
93+
golang.org/x/sys v0.17.0 // indirect
94+
golang.org/x/term v0.17.0 // indirect
9695
golang.org/x/text v0.14.0 // indirect
9796
golang.org/x/time v0.3.0 // indirect
9897
golang.org/x/tools v0.16.1 // indirect
9998
google.golang.org/appengine v1.6.8 // indirect
100-
google.golang.org/genproto v0.0.0-20231106174013-bbf56f31fb17 // indirect
101-
google.golang.org/genproto/googleapis/api v0.0.0-20231106174013-bbf56f31fb17 // indirect
102-
google.golang.org/genproto/googleapis/rpc v0.0.0-20231106174013-bbf56f31fb17 // indirect
99+
google.golang.org/genproto v0.0.0-20240123012728-ef4313101c80 // indirect
100+
google.golang.org/genproto/googleapis/api v0.0.0-20240123012728-ef4313101c80 // indirect
101+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 // indirect
103102
google.golang.org/protobuf v1.32.0 // indirect
104103
gopkg.in/inf.v0 v0.9.1 // indirect
105104
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
106105
gopkg.in/yaml.v2 v2.4.0 // indirect
107106
gopkg.in/yaml.v3 v3.0.1 // indirect
108107
k8s.io/gengo v0.0.0-20230829151522-9cce18d56c01 // indirect
109-
k8s.io/kms v0.29.1 // indirect
110-
k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 // indirect
111-
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.28.0 // indirect
108+
k8s.io/kms v0.30.0-alpha.3 // indirect
109+
k8s.io/kube-openapi v0.0.0-20231113174909-778a5567bc1e // indirect
110+
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.29.0 // indirect
112111
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
113112
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
114113
sigs.k8s.io/yaml v1.3.0 // indirect
115114
)
116115

117-
replace (
118-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc => go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.47.0
119-
golang.org/x/crypto v0.16.0 => golang.org/x/crypto v0.17.0
120-
)
116+
replace go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc => go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.47.0

0 commit comments

Comments
 (0)