Skip to content

Commit 343c671

Browse files
authored
Merge branch 'main' into enh/nginx-proxy-crd
2 parents 96db67c + d3de0c6 commit 343c671

21 files changed

+223
-213
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- 5000:5000
3636
steps:
3737
- name: Checkout Repository
38-
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
38+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
3939
with:
4040
ref: ${{ inputs.tag != '' && format('refs/tags/v{0}', inputs.tag) || github.ref }}
4141

@@ -152,7 +152,7 @@ jobs:
152152
fail-build: false
153153

154154
- name: Upload scan result to GitHub Security tab
155-
uses: github/codeql-action/upload-sarif@c7f9125735019aa87cfc361530512d50ea439c71 # v3.25.1
155+
uses: github/codeql-action/upload-sarif@8f596b4ae3cb3c588a5c46780b86dd53fef16c52 # v3.25.2
156156
continue-on-error: true
157157
with:
158158
sarif_file: ${{ steps.scan.outputs.sarif }}

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
min_k8s_version: ${{ steps.vars.outputs.min_k8s_version }}
3232
steps:
3333
- name: Checkout Repository
34-
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
34+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
3535

3636
- name: Setup Golang Environment
3737
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
@@ -62,7 +62,7 @@ jobs:
6262
needs: vars
6363
steps:
6464
- name: Checkout Repository
65-
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
65+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
6666

6767
- name: Setup Golang Environment
6868
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
@@ -90,7 +90,7 @@ jobs:
9090
needs: vars
9191
steps:
9292
- name: Checkout Repository
93-
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
93+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
9494

9595
- name: Setup Node.js Environment
9696
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
@@ -115,7 +115,7 @@ jobs:
115115
issues: write # for goreleaser/goreleaser-action to close milestone
116116
steps:
117117
- name: Checkout Repository
118-
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
118+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
119119
with:
120120
fetch-depth: 0
121121

@@ -236,7 +236,7 @@ jobs:
236236
needs: [vars, build-oss]
237237
steps:
238238
- name: Checkout Repository
239-
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
239+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
240240

241241
- name: Fetch Cached Artifacts
242242
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
@@ -333,7 +333,7 @@ jobs:
333333
packages: write # for helm to push to GHCR
334334
steps:
335335
- name: Checkout Repository
336-
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
336+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
337337

338338
- name: Login to GitHub Container Registry
339339
uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 # v3.1.0

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ jobs:
4040

4141
steps:
4242
- name: Checkout repository
43-
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
43+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
4444

4545
# Initializes the CodeQL tools for scanning.
4646
- name: Initialize CodeQL
47-
uses: github/codeql-action/init@c7f9125735019aa87cfc361530512d50ea439c71 # v3.25.1
47+
uses: github/codeql-action/init@8f596b4ae3cb3c588a5c46780b86dd53fef16c52 # v3.25.2
4848
with:
4949
languages: ${{ matrix.language }}
5050
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -63,7 +63,7 @@ jobs:
6363
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
6464
# If this step fails, then you should remove it and run the build manually (see below)
6565
- name: Autobuild
66-
uses: github/codeql-action/autobuild@c7f9125735019aa87cfc361530512d50ea439c71 # v3.25.1
66+
uses: github/codeql-action/autobuild@8f596b4ae3cb3c588a5c46780b86dd53fef16c52 # v3.25.2
6767

6868
# ℹ️ Command-line programs to run using the OS shell.
6969
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -76,6 +76,6 @@ jobs:
7676
# ./location_of_script_within_repo/buildscript.sh
7777

7878
- name: Perform CodeQL Analysis
79-
uses: github/codeql-action/analyze@c7f9125735019aa87cfc361530512d50ea439c71 # v3.25.1
79+
uses: github/codeql-action/analyze@8f596b4ae3cb3c588a5c46780b86dd53fef16c52 # v3.25.2
8080
with:
8181
category: "/language:${{matrix.language}}"

.github/workflows/conformance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
contents: write # needed for uploading release artifacts
2929
steps:
3030
- name: Checkout Repository
31-
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
31+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
3232

3333
- name: Fetch Cached Artifacts
3434
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
pull-requests: write
1313
steps:
1414
- name: "Checkout Repository"
15-
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
15+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
1616

1717
- name: "Dependency Review"
1818
uses: actions/dependency-review-action@5bbc3ba658137598168acb2ab73b21c432dd411b # v4.2.5

.github/workflows/fossa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
if: ${{ github.event.repository.fork == false }}
2020
steps:
2121
- name: Checkout Repository
22-
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
22+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
2323

2424
- name: Scan
2525
uses: fossas/fossa-action@47ef11b1e1e3812e88dae436ccbd2d0cbd1adab0 # v1.3.3

.github/workflows/functional.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-22.04
2424
steps:
2525
- name: Checkout Repository
26-
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
26+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
2727

2828
- name: Setup Golang Environment
2929
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0

.github/workflows/lint.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-22.04
2424
steps:
2525
- name: Checkout Repository
26-
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
26+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
2727

2828
- name: Setup Golang Environment
2929
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
@@ -42,7 +42,7 @@ jobs:
4242
runs-on: ubuntu-22.04
4343
steps:
4444
- name: Checkout Repository
45-
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
45+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
4646

4747
- name: Get Prettier version
4848
id: prettier-version
@@ -75,7 +75,7 @@ jobs:
7575
runs-on: ubuntu-22.04
7676
steps:
7777
- name: Checkout Repository
78-
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
78+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
7979

8080
- uses: reviewdog/action-actionlint@9d8b58041eed1373f173e91b9a3db5a844197236 # v1.44.0
8181
with:
@@ -86,7 +86,7 @@ jobs:
8686
runs-on: ubuntu-22.04
8787
steps:
8888
- name: Checkout Repository
89-
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
89+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
9090

9191
- uses: DavidAnson/markdownlint-cli2-action@b4c9feab76d8025d1e83c653fa3990936df0e6c8 # v16.0.0
9292
with:
@@ -98,7 +98,7 @@ jobs:
9898
runs-on: ubuntu-22.04
9999
steps:
100100
- name: Checkout Repository
101-
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
101+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
102102
- name: Lint chart
103103
run: make lint-helm
104104

@@ -107,7 +107,7 @@ jobs:
107107
runs-on: ubuntu-22.04
108108
steps:
109109
- name: Checkout Repository
110-
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
110+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
111111

112112
- name: Install yamllint
113113
run: pip install yamllint

.github/workflows/mend.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
if: ${{ github.event.repository.fork == false }}
2525
steps:
2626
- name: Checkout Repository
27-
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
27+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
2828
- name: Download agent
2929
run: curl -LJO https://github.com/whitesource/unified-agent-distribution/releases/latest/download/wss-unified-agent.jar
3030
- name: Verify JAR

.github/workflows/nfr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545

4646
steps:
4747
- name: Checkout Repository
48-
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
48+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
4949

5050
- name: Setup Golang Environment
5151
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0

.github/workflows/release-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
echo "branch=release-$version" >> $GITHUB_OUTPUT
2828
2929
- name: Checkout Repository
30-
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
30+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
3131
with:
3232
ref: ${{ steps.branch.outputs.branch }}
3333

.github/workflows/scorecards.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
steps:
3131
- name: "Checkout code"
32-
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
32+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
3333
with:
3434
persist-credentials: false
3535

@@ -60,6 +60,6 @@ jobs:
6060

6161
# Upload the results to GitHub's code scanning dashboard.
6262
- name: "Upload to code-scanning"
63-
uses: github/codeql-action/upload-sarif@c7f9125735019aa87cfc361530512d50ea439c71 # v3.25.1
63+
uses: github/codeql-action/upload-sarif@8f596b4ae3cb3c588a5c46780b86dd53fef16c52 # v3.25.2
6464
with:
6565
sarif_file: results.sarif

.github/workflows/update-docker-images.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
nginx_version: ${{ steps.nginx.outputs.nginx_version }}
2525
steps:
2626
- name: Checkout Repository
27-
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
27+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
2828
with:
2929
fetch-depth: 0
3030

@@ -35,7 +35,7 @@ jobs:
3535
echo "tag=${tag//v}" >> $GITHUB_OUTPUT
3636
3737
- name: Checkout Repository at ${{ steps.ngf.outputs.tag }}
38-
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
38+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
3939
with:
4040
ref: refs/tags/v${{ steps.ngf.outputs.tag }}
4141

config/crd/bases/gateway.nginx.org_clientsettingspolicies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.14.0
6+
controller-gen.kubebuilder.io/version: v0.15.0
77
labels:
88
gateway.networking.k8s.io/policy: inherited
99
name: clientsettingspolicies.gateway.nginx.org

config/crd/bases/gateway.nginx.org_nginxgateways.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.14.0
6+
controller-gen.kubebuilder.io/version: v0.15.0
77
name: nginxgateways.gateway.nginx.org
88
spec:
99
group: gateway.nginx.org

config/crd/bases/gateway.nginx.org_nginxproxies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.14.0
6+
controller-gen.kubebuilder.io/version: v0.15.0
77
name: nginxproxies.gateway.nginx.org
88
spec:
99
group: gateway.nginx.org

config/crd/bases/gateway.nginx.org_observabilitypolicies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.14.0
6+
controller-gen.kubebuilder.io/version: v0.15.0
77
labels:
88
gateway.networking.k8s.io/policy: direct
99
name: observabilitypolicies.gateway.nginx.org

go.mod

Lines changed: 24 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ require (
2020
github.com/spf13/cobra v1.8.0
2121
github.com/spf13/pflag v1.0.5
2222
github.com/tsenart/vegeta/v12 v12.11.1
23-
go.opentelemetry.io/otel v1.25.0
24-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.25.0
23+
go.opentelemetry.io/otel v1.26.0
24+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.26.0
2525
go.uber.org/zap v1.27.0
26-
k8s.io/api v0.29.4
27-
k8s.io/apiextensions-apiserver v0.29.4
28-
k8s.io/apimachinery v0.29.4
29-
k8s.io/client-go v0.29.4
30-
sigs.k8s.io/controller-runtime v0.17.3
31-
sigs.k8s.io/controller-tools v0.14.0
26+
k8s.io/api v0.30.0
27+
k8s.io/apiextensions-apiserver v0.30.0
28+
k8s.io/apimachinery v0.30.0
29+
k8s.io/client-go v0.30.0
30+
sigs.k8s.io/controller-runtime v0.18.0
31+
sigs.k8s.io/controller-tools v0.15.0
3232
sigs.k8s.io/gateway-api v1.0.0
3333
sigs.k8s.io/yaml v1.4.0
3434
)
@@ -40,7 +40,7 @@ require (
4040
github.com/davecgh/go-spew v1.1.1 // indirect
4141
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
4242
github.com/evanphx/json-patch v5.7.0+incompatible // indirect
43-
github.com/evanphx/json-patch/v5 v5.8.0 // indirect
43+
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
4444
github.com/fatih/color v1.16.0 // indirect
4545
github.com/fsnotify/fsnotify v1.7.0 // indirect
4646
github.com/go-logfmt/logfmt v0.5.1 // indirect
@@ -59,7 +59,7 @@ require (
5959
github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1 // indirect
6060
github.com/google/uuid v1.6.0 // indirect
6161
github.com/gorilla/websocket v1.5.0 // indirect
62-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.0 // indirect
62+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.1 // indirect
6363
github.com/imdario/mergo v0.3.16 // indirect
6464
github.com/inconshreveable/mousetrap v1.1.0 // indirect
6565
github.com/influxdata/tdigest v0.0.1 // indirect
@@ -79,34 +79,33 @@ require (
7979
github.com/prometheus/procfs v0.12.0 // indirect
8080
github.com/rs/dnscache v0.0.0-20211102005908-e0241e321417 // indirect
8181
github.com/stretchr/testify v1.9.0 // indirect
82-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.25.0 // indirect
83-
go.opentelemetry.io/otel/metric v1.25.0 // indirect
84-
go.opentelemetry.io/otel/sdk v1.25.0 // indirect
85-
go.opentelemetry.io/otel/trace v1.25.0 // indirect
86-
go.opentelemetry.io/proto/otlp v1.1.0 // indirect
82+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.26.0 // indirect
83+
go.opentelemetry.io/otel/metric v1.26.0 // indirect
84+
go.opentelemetry.io/otel/sdk v1.26.0 // indirect
85+
go.opentelemetry.io/otel/trace v1.26.0 // indirect
86+
go.opentelemetry.io/proto/otlp v1.2.0 // indirect
8787
go.uber.org/multierr v1.11.0 // indirect
8888
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect
89-
golang.org/x/mod v0.16.0 // indirect
90-
golang.org/x/net v0.23.0 // indirect
89+
golang.org/x/mod v0.17.0 // indirect
90+
golang.org/x/net v0.24.0 // indirect
9191
golang.org/x/oauth2 v0.18.0 // indirect
92-
golang.org/x/sync v0.6.0 // indirect
93-
golang.org/x/sys v0.18.0 // indirect
94-
golang.org/x/term v0.18.0 // indirect
92+
golang.org/x/sync v0.7.0 // indirect
93+
golang.org/x/sys v0.19.0 // indirect
94+
golang.org/x/term v0.19.0 // indirect
9595
golang.org/x/text v0.14.0 // indirect
9696
golang.org/x/time v0.3.0 // indirect
97-
golang.org/x/tools v0.19.0 // indirect
97+
golang.org/x/tools v0.20.0 // indirect
9898
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
9999
google.golang.org/appengine v1.6.8 // indirect
100100
google.golang.org/genproto/googleapis/api v0.0.0-20240227224415-6ceb2ff114de // indirect
101101
google.golang.org/genproto/googleapis/rpc v0.0.0-20240401170217-c3f982113cda // indirect
102-
google.golang.org/grpc v1.63.0 // indirect
102+
google.golang.org/grpc v1.63.2 // indirect
103103
google.golang.org/protobuf v1.33.0 // indirect
104104
gopkg.in/inf.v0 v0.9.1 // indirect
105105
gopkg.in/yaml.v2 v2.4.0 // indirect
106106
gopkg.in/yaml.v3 v3.0.1 // indirect
107-
k8s.io/component-base v0.29.4 // indirect
108-
k8s.io/klog/v2 v2.110.1 // indirect
109-
k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 // indirect
107+
k8s.io/klog/v2 v2.120.1 // indirect
108+
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
110109
k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect
111110
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
112111
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect

0 commit comments

Comments
 (0)