Skip to content

Commit 0e0250e

Browse files
authored
Merge pull request #110 from scmeggitt/LKE-3310
Lke 3310
2 parents 53789db + f04d8f8 commit 0e0250e

11 files changed

Lines changed: 303 additions & 443 deletions

File tree

e2e/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ reuse-and-test: SUITE_ARGS='--reuse'
1616

1717
test reuse-and-test: $(GOPATH)/bin/ginkgo check-token
1818
go list -m; \
19-
ginkgo -r --v --progress --trace --cover $(TEST_ARGS) -- --v=3 --image=${IMG} $(SUITE_ARGS); \
19+
ginkgo -r --v --progress --trace --cover $(TEST_ARGS) -- --v=3 --image=${IMG} $(SUITE_ARGS)
2020

2121
clean: check-token
2222
cd test; \

e2e/go.mod

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,9 @@ require (
77
github.com/codeskyblue/go-sh v0.0.0-20190412065543-76bd3d59ff27
88
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
99
github.com/linode/linodego v0.21.1
10-
github.com/onsi/ginkgo v1.11.0
11-
github.com/onsi/gomega v1.7.1
10+
github.com/onsi/ginkgo/v2 v2.3.1
11+
github.com/onsi/gomega v1.22.0
1212
github.com/pkg/errors v0.9.1
13-
golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6
1413
k8s.io/api v0.19.2
1514
k8s.io/apimachinery v0.19.2
1615
k8s.io/client-go v0.19.2
@@ -22,26 +21,28 @@ require (
2221
github.com/go-logr/logr v0.2.0 // indirect
2322
github.com/go-resty/resty/v2 v2.1.1-0.20191201195748-d7b97669fe48 // indirect
2423
github.com/gogo/protobuf v1.3.1 // indirect
25-
github.com/golang/protobuf v1.4.2 // indirect
24+
github.com/golang/protobuf v1.5.2 // indirect
25+
github.com/google/go-cmp v0.5.8 // indirect
2626
github.com/google/gofuzz v1.1.0 // indirect
2727
github.com/googleapis/gnostic v0.4.1 // indirect
28-
github.com/hpcloud/tail v1.0.0 // indirect
2928
github.com/imdario/mergo v0.3.5 // indirect
3029
github.com/json-iterator/go v1.1.10 // indirect
3130
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
3231
github.com/modern-go/reflect2 v1.0.1 // indirect
3332
github.com/spf13/pflag v1.0.5 // indirect
34-
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
35-
golang.org/x/net v0.0.0-20200707034311-ab3426394381 // indirect
36-
golang.org/x/sys v0.0.0-20200622214017-ed371f2e16b4 // indirect
37-
golang.org/x/text v0.3.3 // indirect
33+
github.com/stretchr/testify v1.5.1 // indirect
34+
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
35+
golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect
36+
golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6 // indirect
37+
golang.org/x/sys v0.1.0 // indirect
38+
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
39+
golang.org/x/text v0.3.7 // indirect
3840
golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect
3941
google.golang.org/appengine v1.6.5 // indirect
40-
google.golang.org/protobuf v1.24.0 // indirect
41-
gopkg.in/fsnotify.v1 v1.4.7 // indirect
42+
google.golang.org/protobuf v1.28.0 // indirect
4243
gopkg.in/inf.v0 v0.9.1 // indirect
43-
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
44-
gopkg.in/yaml.v2 v2.2.8 // indirect
44+
gopkg.in/yaml.v2 v2.4.0 // indirect
45+
gopkg.in/yaml.v3 v3.0.1 // indirect
4546
k8s.io/klog/v2 v2.2.0 // indirect
4647
k8s.io/utils v0.0.0-20201005171033-6301aaf42dc7 // indirect
4748
sigs.k8s.io/structured-merge-diff/v4 v4.0.1 // indirect

e2e/go.sum

Lines changed: 82 additions & 16 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)