Skip to content

Commit 7a9c1eb

Browse files
authored
add azure disk modifier (#5958)
1 parent 168f813 commit 7a9c1eb

File tree

9 files changed

+743
-65
lines changed

9 files changed

+743
-65
lines changed

go.mod

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ go 1.23.2
88

99
require (
1010
cloud.google.com/go/storage v1.30.1
11+
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.16.0
12+
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.8.0
13+
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/compute/armcompute v1.0.0
1114
github.com/Azure/azure-storage-blob-go v0.8.0
1215
github.com/Azure/go-autorest/autorest/azure/auth v0.5.13
1316
github.com/BurntSushi/toml v0.3.1
@@ -68,7 +71,7 @@ require (
6871
k8s.io/kube-scheduler v0.28.14
6972
k8s.io/kubectl v0.28.14
7073
k8s.io/kubelet v0.28.14
71-
k8s.io/utils v0.0.0-20230711102312-30195339c3c7
74+
k8s.io/utils v0.0.0-20240921022957-49e7df575cb6
7275
mvdan.cc/sh/v3 v3.4.3
7376
sigs.k8s.io/controller-runtime v0.7.2
7477
)
@@ -80,6 +83,7 @@ require (
8083
cloud.google.com/go/iam v1.1.5 // indirect
8184
filippo.io/edwards25519 v1.1.0 // indirect
8285
github.com/Azure/azure-pipeline-go v0.2.1 // indirect
86+
github.com/Azure/azure-sdk-for-go/sdk/internal v1.10.0 // indirect
8387
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
8488
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
8589
github.com/Azure/go-autorest/autorest v0.11.28 // indirect
@@ -88,6 +92,7 @@ require (
8892
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
8993
github.com/Azure/go-autorest/logger v0.2.1 // indirect
9094
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
95+
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect
9196
github.com/MakeNowJust/heredoc v1.0.0 // indirect
9297
github.com/NYTimes/gziphandler v1.1.1 // indirect
9398
github.com/andybalholm/brotli v1.0.1 // indirect
@@ -104,7 +109,7 @@ require (
104109
github.com/beorn7/perks v1.0.1 // indirect
105110
github.com/blang/semver/v4 v4.0.0 // indirect
106111
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
107-
github.com/cespare/xxhash/v2 v2.2.0 // indirect
112+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
108113
github.com/chai2010/gettext-go v1.0.2 // indirect
109114
github.com/coreos/go-semver v0.3.1 // indirect
110115
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
@@ -124,7 +129,8 @@ require (
124129
github.com/go-openapi/jsonpointer v0.20.0 // indirect
125130
github.com/go-openapi/jsonreference v0.20.2 // indirect
126131
github.com/go-openapi/swag v0.22.4 // indirect
127-
github.com/golang-jwt/jwt/v4 v4.5.1 // indirect
132+
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
133+
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect
128134
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
129135
github.com/golang/protobuf v1.5.4 // indirect
130136
github.com/golang/snappy v0.0.4 // indirect
@@ -133,7 +139,7 @@ require (
133139
github.com/google/gnostic-models v0.6.8 // indirect
134140
github.com/google/s2a-go v0.1.7 // indirect
135141
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
136-
github.com/google/uuid v1.4.0 // indirect
142+
github.com/google/uuid v1.6.0 // indirect
137143
github.com/google/wire v0.3.0 // indirect
138144
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
139145
github.com/googleapis/gax-go v2.0.2+incompatible // indirect
@@ -150,6 +156,7 @@ require (
150156
github.com/klauspost/compress v1.17.4 // indirect
151157
github.com/klauspost/cpuid v1.2.3 // indirect
152158
github.com/klauspost/pgzip v1.2.5 // indirect
159+
github.com/kylelemons/godebug v1.1.0 // indirect
153160
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect
154161
github.com/mailru/easyjson v0.7.7 // indirect
155162
github.com/mattn/go-ieproxy v0.0.0-20190610004146-91bb50d98149 // indirect
@@ -172,6 +179,7 @@ require (
172179
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
173180
github.com/pierrec/lz4/v4 v4.1.2 // indirect
174181
github.com/pingcap/check v0.0.0-20211026125417-57bd13f7b5f0 // indirect
182+
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
175183
github.com/pkg/errors v0.9.1 // indirect
176184
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
177185
github.com/prometheus/procfs v0.11.1 // indirect
@@ -198,13 +206,13 @@ require (
198206
go.uber.org/atomic v1.11.0 // indirect
199207
go.uber.org/multierr v1.11.0 // indirect
200208
go.uber.org/zap v1.23.0 // indirect
201-
golang.org/x/crypto v0.25.0 // indirect
209+
golang.org/x/crypto v0.27.0 // indirect
202210
golang.org/x/exp v0.0.0-20231206192017-f3f8817b8deb // indirect
203-
golang.org/x/net v0.27.0 // indirect
211+
golang.org/x/net v0.29.0 // indirect
204212
golang.org/x/oauth2 v0.15.0 // indirect
205-
golang.org/x/sys v0.22.0 // indirect
206-
golang.org/x/term v0.22.0 // indirect
207-
golang.org/x/text v0.16.0 // indirect
213+
golang.org/x/sys v0.25.0 // indirect
214+
golang.org/x/term v0.24.0 // indirect
215+
golang.org/x/text v0.18.0 // indirect
208216
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
209217
google.golang.org/api v0.153.0 // indirect
210218
google.golang.org/appengine v1.6.7 // indirect

0 commit comments

Comments
 (0)