-
Notifications
You must be signed in to change notification settings - Fork 750
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unassign IPs over warm IP target #412
Closed
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ verify-network | |
*.iml | ||
.DS_Store | ||
portmap | ||
tmp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,3 +85,4 @@ clean: | |
rm -f aws-k8s-agent | ||
rm -f aws-cni | ||
rm -f portmap | ||
rm -rf tmp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,58 +3,63 @@ module github.com/aws/amazon-vpc-cni-k8s | |
go 1.12 | ||
|
||
require ( | ||
github.com/Microsoft/go-winio v0.4.11 | ||
github.com/Microsoft/go-winio v0.4.11 // indirect | ||
github.com/aws/aws-sdk-go v1.15.22 | ||
github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973 | ||
github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973 // indirect | ||
github.com/cihub/seelog v0.0.0-20151216151435-d2c6e5aa9fbf | ||
github.com/containernetworking/cni v0.5.2 | ||
github.com/coreos/go-iptables v0.4.0 | ||
github.com/davecgh/go-spew v1.1.1 | ||
github.com/docker/distribution v2.6.2+incompatible | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/deckarep/golang-set v1.7.1 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
github.com/docker/distribution v2.6.2+incompatible // indirect | ||
github.com/docker/docker v1.13.1 | ||
github.com/docker/go-connections v0.4.0 | ||
github.com/docker/go-units v0.3.3 | ||
github.com/ghodss/yaml v1.0.0 | ||
github.com/go-ini/ini v1.38.2 | ||
github.com/gogo/protobuf v1.1.1 | ||
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b | ||
github.com/docker/go-connections v0.4.0 // indirect | ||
github.com/docker/go-units v0.3.3 // indirect | ||
github.com/ghodss/yaml v1.0.0 // indirect | ||
github.com/go-ini/ini v1.38.2 // indirect | ||
github.com/gogo/protobuf v1.1.1 // indirect | ||
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect | ||
github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef // indirect | ||
github.com/golang/mock v1.1.1 | ||
github.com/golang/protobuf v1.2.0 | ||
github.com/google/btree v1.0.0 | ||
github.com/google/gofuzz v0.0.0-20170612174753-24818f796faf | ||
github.com/googleapis/gnostic v0.2.0 | ||
github.com/gregjones/httpcache v0.0.0-20190212212710-3befbb6ad0cc | ||
github.com/hashicorp/golang-lru v0.0.0-20180201235237-0fb14efe8c47 | ||
github.com/imdario/mergo v0.3.6 | ||
github.com/jmespath/go-jmespath v0.0.0-20160202185014-0b12d6b521d8 | ||
github.com/json-iterator/go v1.1.5 | ||
github.com/matttproud/golang_protobuf_extensions v1.0.1 | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd | ||
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 | ||
github.com/google/btree v1.0.0 // indirect | ||
github.com/google/gofuzz v0.0.0-20170612174753-24818f796faf // indirect | ||
github.com/googleapis/gnostic v0.2.0 // indirect | ||
github.com/gregjones/httpcache v0.0.0-20190212212710-3befbb6ad0cc // indirect | ||
github.com/hashicorp/golang-lru v0.0.0-20180201235237-0fb14efe8c47 // indirect | ||
github.com/imdario/mergo v0.3.6 // indirect | ||
github.com/json-iterator/go v1.1.5 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect | ||
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 // indirect | ||
github.com/onsi/ginkgo v1.8.0 // indirect | ||
github.com/onsi/gomega v1.5.0 // indirect | ||
github.com/operator-framework/operator-sdk v0.0.7 | ||
github.com/petar/GoLLRB v0.0.0-20130427215148-53be0d36a84c | ||
github.com/peterbourgon/diskv v2.0.1+incompatible | ||
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect | ||
github.com/pkg/errors v0.8.0 | ||
github.com/pmezard/go-difflib v1.0.0 | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/client_golang v0.8.0 | ||
github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910 | ||
github.com/prometheus/common v0.0.0-20180801064454-c7de2306084e | ||
github.com/prometheus/procfs v0.0.0-20180725123919-05ee40e3a273 | ||
github.com/sirupsen/logrus v1.0.6 | ||
github.com/spf13/pflag v1.0.2 | ||
github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910 // indirect | ||
github.com/prometheus/common v0.0.0-20180801064454-c7de2306084e // indirect | ||
github.com/prometheus/procfs v0.0.0-20180725123919-05ee40e3a273 // indirect | ||
github.com/sirupsen/logrus v1.0.6 // indirect | ||
github.com/smartystreets/goconvey v0.0.0-20190330032615-68dc04aab96a // indirect | ||
github.com/spf13/pflag v1.0.2 // indirect | ||
github.com/stevvooe/resumable v0.0.0-20180830230917-22b14a53ba50 // indirect | ||
github.com/stretchr/testify v1.2.2 | ||
github.com/vishvananda/netlink v1.0.0 | ||
github.com/vishvananda/netns v0.0.0-20180720170159-13995c7128cc | ||
golang.org/x/crypto v0.0.0-20180820150726-614d502a4dac | ||
golang.org/x/net v0.0.0-20180826012351-8a410e7b638d | ||
golang.org/x/sys v0.0.0-20180828065106-d99a578cf41b | ||
golang.org/x/text v0.3.0 | ||
golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2 | ||
google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8 | ||
github.com/vishvananda/netns v0.0.0-20180720170159-13995c7128cc // indirect | ||
golang.org/x/net v0.0.0-20190311183353-d8887717615a | ||
golang.org/x/sync v0.0.0-20190412183630-56d357773e84 // indirect | ||
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a | ||
golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2 // indirect | ||
google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8 // indirect | ||
google.golang.org/grpc v1.14.0 | ||
gopkg.in/inf.v0 v0.9.1 | ||
gopkg.in/yaml.v2 v2.2.1 | ||
gopkg.in/airbrake/gobrake.v2 v2.0.9 // indirect | ||
gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2 // indirect | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
gopkg.in/ini.v1 v1.42.0 // indirect | ||
k8s.io/api v0.0.0-20180712090710-2d6f90ab1293 | ||
k8s.io/apimachinery v0.0.0-20180621070125-103fd098999d | ||
k8s.io/client-go v0.0.0-20180806134042-1f13a808da65 | ||
k8s.io/kube-openapi v0.0.0-20190418160015-6b3d3b2d5666 // indirect | ||
) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the actual dependency change? How easy is this PR to cherry pick over to the
release-1.4
branch?