Skip to content

Commit 36fa262

Browse files
committed
Update go.mod to include fsnotify and kubernetes
Update go.mod to include fsnotify and kubernetes, which are both used in auth.go now to handle the interrupt related to an Azure cert change. Signed-off-by: Bryan Cox <[email protected]>
1 parent bf2a0d5 commit 36fa262

File tree

5 files changed

+302
-1
lines changed

5 files changed

+302
-1
lines changed

go.mod

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ require (
2222
github.com/IBM/platform-services-go-sdk v0.55.0
2323
github.com/aws/aws-sdk-go v1.50.35
2424
github.com/davecgh/go-spew v1.1.1
25+
github.com/fsnotify/fsnotify v1.7.0
2526
github.com/ghodss/yaml v1.0.0
2627
github.com/golang-jwt/jwt v3.2.2+incompatible
2728
github.com/google/go-cmp v0.6.0
@@ -49,6 +50,7 @@ require (
4950
k8s.io/apimachinery v0.30.1
5051
k8s.io/client-go v0.30.1
5152
k8s.io/klog/v2 v2.120.1
53+
k8s.io/kubernetes v1.30.2
5254
k8s.io/utils v0.0.0-20230726121419-3b25d923346b
5355
)
5456

@@ -80,7 +82,6 @@ require (
8082
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
8183
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
8284
github.com/felixge/httpsnoop v1.0.4 // indirect
83-
github.com/fsnotify/fsnotify v1.7.0 // indirect
8485
github.com/go-logr/logr v1.4.1 // indirect
8586
github.com/go-logr/stdr v1.2.2 // indirect
8687
github.com/go-openapi/errors v0.20.3 // indirect

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1721,6 +1721,8 @@ k8s.io/kube-aggregator v0.30.1 h1:ymR2BsxDacTKwzKTuNhGZttuk009c+oZbSeD+IPX5q4=
17211721
k8s.io/kube-aggregator v0.30.1/go.mod h1:SFbqWsM6ea8dHd3mPLsZFzJHbjBOS5ykIgJh4znZ5iQ=
17221722
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 h1:BZqlfIlq5YbRMFko6/PM7FjZpUb45WallggurYhKGag=
17231723
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340/go.mod h1:yD4MZYeKMBwQKVht279WycxKyM84kkAx2DPrTXaeb98=
1724+
k8s.io/kubernetes v1.30.2 h1:11WhS78OYX/lnSy6TXxPO6Hk+E5K9ZNrEsk9JgMSX8I=
1725+
k8s.io/kubernetes v1.30.2/go.mod h1:yPbIk3MhmhGigX62FLJm+CphNtjxqCvAIFQXup6RKS0=
17241726
k8s.io/utils v0.0.0-20230726121419-3b25d923346b h1:sgn3ZU783SCgtaSJjpcVVlRqd6GSnlTLKgpAAttJvpI=
17251727
k8s.io/utils v0.0.0-20230726121419-3b25d923346b/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0=
17261728
lukechampine.com/uint128 v1.1.1/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk=

vendor/k8s.io/kubernetes/LICENSE

Lines changed: 202 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/k8s.io/kubernetes/pkg/util/interrupt/interrupt.go

Lines changed: 93 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/modules.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1802,6 +1802,9 @@ k8s.io/kube-openapi/pkg/validation/errors
18021802
k8s.io/kube-openapi/pkg/validation/spec
18031803
k8s.io/kube-openapi/pkg/validation/strfmt
18041804
k8s.io/kube-openapi/pkg/validation/strfmt/bson
1805+
# k8s.io/kubernetes v1.30.2
1806+
## explicit; go 1.22.0
1807+
k8s.io/kubernetes/pkg/util/interrupt
18051808
# k8s.io/utils v0.0.0-20230726121419-3b25d923346b
18061809
## explicit; go 1.18
18071810
k8s.io/utils/buffer

0 commit comments

Comments
 (0)