Skip to content

Commit 8b8fa30

Browse files
committed
sync vendor
1 parent ba33a07 commit 8b8fa30

71 files changed

Lines changed: 183 additions & 1244 deletions

File tree

Some content is hidden

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

go.mod

Lines changed: 65 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,11 @@ require (
66
cloud.google.com/go v0.65.0
77
github.com/Azure/azure-sdk-for-go v68.0.0+incompatible
88
github.com/Azure/go-autorest/autorest v0.11.28
9-
github.com/Azure/go-autorest/autorest/adal v0.9.22 // indirect
109
github.com/Azure/go-autorest/autorest/azure/auth v0.5.5
1110
github.com/Azure/go-autorest/autorest/to v0.4.0
12-
github.com/Azure/go-autorest/autorest/validation v0.3.1 // indirect
1311
github.com/IBM-Cloud/bluemix-go v0.0.0-20220329045155-d2a8118ac5c7
1412
github.com/aws/aws-sdk-go v1.40.39
1513
github.com/codeskyblue/go-sh v0.0.0-20170112005953-b097669b1569
16-
github.com/golang-jwt/jwt/v4 v4.4.3 // indirect
1714
github.com/golang/mock v1.4.4
1815
github.com/google/uuid v1.1.2
1916
github.com/hashicorp/go-version v1.2.1
@@ -26,7 +23,6 @@ require (
2623
github.com/sirupsen/logrus v1.8.1
2724
github.com/stretchr/testify v1.7.0
2825
github.com/vmware/govmomi v0.22.2
29-
golang.org/x/crypto v0.6.0 // indirect
3026
golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5
3127
google.golang.org/api v0.30.0
3228
gopkg.in/yaml.v2 v2.4.0
@@ -35,6 +31,71 @@ require (
3531
k8s.io/klog v1.0.0
3632
)
3733

34+
require (
35+
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
36+
github.com/Azure/go-autorest/autorest/adal v0.9.22 // indirect
37+
github.com/Azure/go-autorest/autorest/azure/cli v0.4.2 // indirect
38+
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
39+
github.com/Azure/go-autorest/autorest/validation v0.3.1 // indirect
40+
github.com/Azure/go-autorest/logger v0.2.1 // indirect
41+
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
42+
github.com/beorn7/perks v1.0.1 // indirect
43+
github.com/cespare/xxhash/v2 v2.1.1 // indirect
44+
github.com/codegangsta/inject v0.0.0-20150114235600-33e0aa1cb7c0 // indirect
45+
github.com/coreos/go-oidc v2.2.1+incompatible // indirect
46+
github.com/davecgh/go-spew v1.1.1 // indirect
47+
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
48+
github.com/dimchansky/utfbom v1.1.0 // indirect
49+
github.com/docker/spdystream v0.0.0-20181023171402-6480d4af844c // indirect
50+
github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32 // indirect
51+
github.com/go-logr/logr v0.3.0 // indirect
52+
github.com/gofrs/flock v0.8.1 // indirect
53+
github.com/gogo/protobuf v1.3.2 // indirect
54+
github.com/golang-jwt/jwt/v4 v4.4.3 // indirect
55+
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
56+
github.com/golang/protobuf v1.5.2 // indirect
57+
github.com/google/gofuzz v1.1.0 // indirect
58+
github.com/googleapis/gax-go/v2 v2.0.5 // indirect
59+
github.com/googleapis/gnostic v0.5.1 // indirect
60+
github.com/grpc-ecosystem/go-grpc-middleware v1.2.2 // indirect
61+
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
62+
github.com/imdario/mergo v0.3.10 // indirect
63+
github.com/jmespath/go-jmespath v0.4.0 // indirect
64+
github.com/json-iterator/go v1.1.10 // indirect
65+
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
66+
github.com/mitchellh/go-homedir v1.1.0 // indirect
67+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
68+
github.com/modern-go/reflect2 v1.0.1 // indirect
69+
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
70+
github.com/pmezard/go-difflib v1.0.0 // indirect
71+
github.com/pquerna/cachecontrol v0.0.0-20180517163645-1555304b9b35 // indirect
72+
github.com/prometheus/client_model v0.2.0 // indirect
73+
github.com/prometheus/common v0.15.0 // indirect
74+
github.com/prometheus/procfs v0.2.0 // indirect
75+
github.com/sony/gobreaker v0.5.0 // indirect
76+
github.com/spf13/pflag v1.0.5 // indirect
77+
go.opencensus.io v0.22.4 // indirect
78+
golang.org/x/crypto v0.6.0 // indirect
79+
golang.org/x/net v0.6.0 // indirect
80+
golang.org/x/sys v0.5.0 // indirect
81+
golang.org/x/term v0.5.0 // indirect
82+
golang.org/x/text v0.7.0 // indirect
83+
golang.org/x/time v0.0.0-20201208040808-7e3f01d25324 // indirect
84+
google.golang.org/appengine v1.6.7 // indirect
85+
google.golang.org/genproto v0.0.0-20201201144952-b05cb90ed32e // indirect
86+
google.golang.org/grpc v1.36.0 // indirect
87+
google.golang.org/protobuf v1.26.0 // indirect
88+
gopkg.in/inf.v0 v0.9.1 // indirect
89+
gopkg.in/square/go-jose.v2 v2.5.1 // indirect
90+
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect
91+
k8s.io/api v0.20.4 // indirect
92+
k8s.io/klog/v2 v2.4.0 // indirect
93+
k8s.io/kube-openapi v0.0.0-20210216185858-15cd8face8d6 // indirect
94+
k8s.io/utils v0.0.0-20210111153108-fddb29f9d009 // indirect
95+
sigs.k8s.io/structured-merge-diff/v4 v4.0.2 // indirect
96+
sigs.k8s.io/yaml v1.2.0 // indirect
97+
)
98+
3899
replace (
39100
github.com/Azure/go-autorest => github.com/Azure/go-autorest v14.2.0+incompatible
40101
github.com/kubernetes-incubator/external-storage => github.com/libopenstorage/external-storage v5.1.1-0.20190919185747-9394ee8dd536+incompatible

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,6 @@ github.com/elazarl/goproxy v0.0.0-20180725130230-947c36da3153/go.mod h1:/Zj4wYkg
387387
github.com/elazarl/goproxy v0.0.0-20181111060418-2ce16c963a8a/go.mod h1:/Zj4wYkgs4iZTTu3o/KG3Itv/qCCa8VVMlb3i9OVuzc=
388388
github.com/elazarl/goproxy v0.0.0-20191011121108-aa519ddbe484 h1:pEtiCjIXx3RvGjlUJuCNxNOw0MNblyR9Wi+vJGBFh+8=
389389
github.com/elazarl/goproxy v0.0.0-20191011121108-aa519ddbe484/go.mod h1:Ro8st/ElPeALwNFlcTpWmkr6IoMFfkjXAvTHpevnDsM=
390-
github.com/elazarl/goproxy/ext v0.0.0-20190711103511-473e67f1d7d2 h1:dWB6v3RcOy03t/bUadywsbyrQwCqZeNIEX6M1OtSZOM=
391390
github.com/elazarl/goproxy/ext v0.0.0-20190711103511-473e67f1d7d2/go.mod h1:gNh8nYJoAm43RfaxurUnxr+N1PwuFV3ZMl/efxlIlY8=
392391
github.com/emicklei/go-restful v0.0.0-20170410110728-ff4f55a20633/go.mod h1:otzb+WCGbkyDHkqmQmT5YD2WR4BBwUdeQoFo8l/7tVs=
393392
github.com/emicklei/go-restful v2.6.0+incompatible/go.mod h1:otzb+WCGbkyDHkqmQmT5YD2WR4BBwUdeQoFo8l/7tVs=
@@ -1136,7 +1135,6 @@ github.com/onsi/ginkgo v1.14.1/go.mod h1:iSB4RoI2tjJc9BBv4NKIKWKya62Rps+oPG/Lv9k
11361135
github.com/onsi/ginkgo v1.15.0/go.mod h1:hF8qUzuuC8DJGygJH3726JnCZX4MYbRB8yFfISqnKUg=
11371136
github.com/onsi/ginkgo v1.16.4 h1:29JGrr5oVBm5ulCWet69zQkzWipVXIol6ygQUe/EzNc=
11381137
github.com/onsi/ginkgo v1.16.4/go.mod h1:dX+/inL/fNMqNlz0e9LfyB9TswhZpCVdJM/Z6Vvnwo0=
1139-
github.com/onsi/ginkgo/v2 v2.1.3 h1:e/3Cwtogj0HA+25nMP1jCMDIf8RtRYbGwGGuBIFztkc=
11401138
github.com/onsi/ginkgo/v2 v2.1.3/go.mod h1:vw5CSIxN1JObi/U8gcbwft7ZxR2dgaR70JSE3/PpL4c=
11411139
github.com/onsi/gomega v0.0.0-20170829124025-dcabb60a477c/go.mod h1:C1qb7wdrVGGVU+Z6iS04AVkA3Q65CEZX59MT0QO5uiA=
11421140
github.com/onsi/gomega v1.4.2/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY=

vendor/github.com/Azure/go-autorest/autorest/adal/go.mod

Lines changed: 0 additions & 15 deletions
This file was deleted.

vendor/github.com/Azure/go-autorest/autorest/adal/go.sum

Lines changed: 0 additions & 21 deletions
This file was deleted.

vendor/github.com/Azure/go-autorest/autorest/azure/auth/go.mod

Lines changed: 0 additions & 12 deletions
This file was deleted.

vendor/github.com/Azure/go-autorest/autorest/azure/auth/go.sum

Lines changed: 0 additions & 31 deletions
This file was deleted.

vendor/github.com/Azure/go-autorest/autorest/azure/cli/go.mod

Lines changed: 0 additions & 11 deletions
This file was deleted.

vendor/github.com/Azure/go-autorest/autorest/azure/cli/go.sum

Lines changed: 0 additions & 24 deletions
This file was deleted.

vendor/github.com/Azure/go-autorest/autorest/date/go.mod

Lines changed: 0 additions & 5 deletions
This file was deleted.

vendor/github.com/Azure/go-autorest/autorest/date/go.sum

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)