Skip to content
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
1 change: 1 addition & 0 deletions LICENSE-3rdparty.csv
Original file line number Diff line number Diff line change
Expand Up @@ -4311,6 +4311,7 @@ core,sigs.k8s.io/custom-metrics-apiserver/pkg/registry/custom_metrics,Apache-2.0
core,sigs.k8s.io/custom-metrics-apiserver/pkg/registry/external_metrics,Apache-2.0,Copyright 2017 The Kubernetes Authors.
core,sigs.k8s.io/gateway-api/apis/v1,Apache-2.0,Copyright 2017 The Kubernetes Authors.
core,sigs.k8s.io/gateway-api/apis/v1alpha2,Apache-2.0,Copyright 2017 The Kubernetes Authors.
core,sigs.k8s.io/gateway-api/apis/v1alpha3,Apache-2.0,Copyright 2017 The Kubernetes Authors.
core,sigs.k8s.io/gateway-api/apis/v1beta1,Apache-2.0,Copyright 2017 The Kubernetes Authors.
core,sigs.k8s.io/json,Apache-2.0,Copyright 2017 The Kubernetes Authors.
core,sigs.k8s.io/json/internal/golang/encoding/json,Apache-2.0,Copyright 2017 The Kubernetes Authors.
Expand Down
10 changes: 5 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ require (
github.com/Masterminds/semver/v3 v3.4.0
github.com/Masterminds/sprig/v3 v3.3.0
github.com/Microsoft/go-winio v0.6.2
github.com/Microsoft/hcsshim v0.12.9
github.com/Microsoft/hcsshim v0.13.0
github.com/NVIDIA/go-nvml v0.12.4-0
github.com/ProtonMail/go-crypto v1.3.0
github.com/acobaugh/osrelease v0.1.0
Expand Down Expand Up @@ -222,7 +222,7 @@ require (
github.com/dustin/go-humanize v1.0.1
github.com/elastic/go-libaudit/v2 v2.6.2
github.com/elastic/go-seccomp-bpf v1.6.0
github.com/envoyproxy/gateway v1.3.3
github.com/envoyproxy/gateway v1.5.7
github.com/evanphx/json-patch v5.9.11+incompatible
github.com/fatih/color v1.18.0
github.com/fatih/structtag v1.2.0
Expand Down Expand Up @@ -425,7 +425,7 @@ require (
k8s.io/utils v0.0.0-20251002143259-bc988d571ff4
pgregory.net/rapid v1.2.0
sigs.k8s.io/custom-metrics-apiserver v1.33.0
sigs.k8s.io/gateway-api v1.3.0
sigs.k8s.io/gateway-api v1.3.1-0.20250527223622-54df0a899c1c
sigs.k8s.io/karpenter v1.8.0
sigs.k8s.io/yaml v1.6.0
)
Expand Down Expand Up @@ -922,7 +922,7 @@ require (
go.yaml.in/yaml/v2 v2.4.3 // indirect
go.yaml.in/yaml/v3 v3.0.4 // indirect
go4.org/unsafe/assume-no-moving-gc v0.0.0-20231121144256-b99613f794b6 // indirect
golang.org/x/exp/typeparams v0.0.0-20240314144324-c7f7c6466f7f // indirect
golang.org/x/exp/typeparams v0.0.0-20250620022241-b7579e27df2b // indirect
golang.org/x/lint v0.0.0-20241112194109-818c5a804067 // indirect
golang.org/x/oauth2 v0.34.0
golang.org/x/telemetry v0.0.0-20251203150158-8fff8a5912fc // indirect
Expand All @@ -940,7 +940,7 @@ require (
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
honnef.co/go/tools v0.5.1 // indirect
honnef.co/go/tools v0.6.1 // indirect
k8s.io/apiserver v0.35.0-alpha.0 // indirect
k8s.io/cloud-provider v0.34.1 // indirect
k8s.io/component-helpers v0.34.1 // indirect
Expand Down
24 changes: 12 additions & 12 deletions go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions test/static/static_quality_gates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ static_quality_gate_docker_agent_jmx_arm64:
max_on_disk_size: 1003.62 MiB
max_on_wire_size: 330.66 MiB
static_quality_gate_docker_cluster_agent_amd64:
max_on_disk_size: 181.12 MiB
max_on_wire_size: 64.49 MiB
max_on_disk_size: 181.2 MiB
max_on_wire_size: 64.51 MiB
static_quality_gate_docker_cluster_agent_arm64:
max_on_disk_size: 198.49 MiB
max_on_wire_size: 61.17 MiB
Expand Down
Loading