File tree Expand file tree Collapse file tree 4 files changed +97
-2
lines changed Expand file tree Collapse file tree 4 files changed +97
-2
lines changed Original file line number Diff line number Diff line change 16
16
## AWS CNI
17
17
18
18
1 . Update the version in ` eks_cluster.yaml `
19
+ 1 . Update the go module version (see ` Go > Non-versioned modules ` section below)
20
+ 1 . If new instances types were added, check if ` pkg/lib/aws/servicequotas.go ` needs to be updated for the new instances
19
21
20
22
note: once the default AWS CNI version is >= 1.5.5 this may no longer be necessary (1.5.5 added support for new instance types)
21
23
@@ -60,6 +62,7 @@ note: once the default AWS CNI version is >= 1.5.5 this may no longer be necessa
60
62
1 . ` go mod init `
61
63
1 . ` go clean -modcache `
62
64
1 . ` go get k8s.io/client-go@v12.0.0 `
65
+ 1 . ` go get github.com/aws/amazon-vpc-cni-k8s/pkg/awsutils@v1.5.5 `
63
66
1 . ` go get github.com/cortexlabs/yaml@v2.2.4 `
64
67
1 . ` echo -e '\nreplace github.com/docker/docker => github.com/docker/engine v19.03.4' >> go.mod `
65
68
1 . ` go mod tidy `
Original file line number Diff line number Diff line change @@ -5,14 +5,14 @@ go 1.12
5
5
require (
6
6
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect
7
7
github.com/Microsoft/go-winio v0.4.14 // indirect
8
+ github.com/aws/amazon-vpc-cni-k8s v1.5.5
8
9
github.com/aws/aws-sdk-go v1.25.31
9
10
github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 // indirect
10
11
github.com/containerd/containerd v1.3.0 // indirect
11
12
github.com/cortexlabs/yaml v0.0.0-20190626164117-202ab3a3d475
12
13
github.com/davecgh/go-spew v1.1.1
13
14
github.com/docker/distribution v2.7.1+incompatible // indirect
14
- github.com/docker/docker v0.0.0-00010101000000-000000000000
15
- github.com/docker/go-connections v0.4.0 // indirect
15
+ github.com/docker/docker v1.13.1
16
16
github.com/docker/go-units v0.4.0 // indirect
17
17
github.com/fatih/color v1.7.0
18
18
github.com/getsentry/sentry-go v0.3.1
You can’t perform that action at this time.
0 commit comments