From de5a1991f4a4cce9535228680b4a2b459e9ffe0c Mon Sep 17 00:00:00 2001 From: niusmallnan Date: Mon, 16 Apr 2018 08:26:12 +0000 Subject: [PATCH] Update vendor for removing cni-glue --- .../containernetworking/cni/.gitignore | 3 - .../containernetworking/cni/.travis.yml | 29 -- .../containernetworking/cni/CONTRIBUTING.md | 86 ----- vendor/github.com/containernetworking/cni/DCO | 36 -- .../containernetworking/cni/LICENSE | 202 ----------- .../containernetworking/cni/MAINTAINERS | 5 - .../containernetworking/cni/README.md | 164 --------- .../containernetworking/cni/ROADMAP.md | 33 -- .../containernetworking/cni/SPEC.md | 267 --------------- .../github.com/containernetworking/cni/build | 30 -- .../containernetworking/cni/libcni/api.go | 73 ---- .../containernetworking/cni/libcni/conf.go | 85 ----- .../cni/pkg/invoke/args.go | 76 ----- .../cni/pkg/invoke/delegate.go | 53 --- .../cni/pkg/invoke/exec.go | 75 ---- .../cni/pkg/invoke/find.go | 47 --- .../containernetworking/cni/pkg/ip/cidr.go | 51 --- .../cni/pkg/ip/ipforward.go | 31 -- .../containernetworking/cni/pkg/ip/ipmasq.go | 66 ---- .../containernetworking/cni/pkg/ip/link.go | 153 --------- .../containernetworking/cni/pkg/ip/route.go | 47 --- .../containernetworking/cni/pkg/ipam/ipam.go | 68 ---- .../containernetworking/cni/pkg/ns/README.md | 31 -- .../containernetworking/cni/pkg/ns/ns.go | 315 ----------------- .../containernetworking/cni/pkg/skel/skel.go | 161 --------- .../containernetworking/cni/pkg/types/args.go | 101 ------ .../cni/pkg/types/types.go | 191 ----------- .../cni/pkg/utils/utils.go | 41 --- .../cni/plugins/ipam/host-local/README.md | 86 ----- .../cni/plugins/ipam/host-local/allocator.go | 202 ----------- .../ipam/host-local/backend/disk/backend.go | 107 ------ .../ipam/host-local/backend/disk/lock.go | 50 --- .../plugins/ipam/host-local/backend/store.go | 27 -- .../cni/plugins/ipam/host-local/config.go | 70 ---- .../cni/plugins/ipam/host-local/main.go | 74 ---- .../cni/plugins/main/bridge/bridge.go | 319 ------------------ .../github.com/containernetworking/cni/test | 80 ----- .../github.com/coreos/go-iptables/.travis.yml | 25 -- vendor/github.com/coreos/go-iptables/LICENSE | 191 ----------- .../github.com/coreos/go-iptables/README.md | 9 - vendor/github.com/coreos/go-iptables/build | 22 -- .../coreos/go-iptables/iptables/iptables.go | 295 ---------------- .../coreos/go-iptables/iptables/lock.go | 84 ----- vendor/github.com/coreos/go-iptables/test | 55 --- .../github.com/rancher/cniglue/.dockerignore | 4 - vendor/github.com/rancher/cniglue/.drone.yml | 4 - vendor/github.com/rancher/cniglue/.gitignore | 4 - .../rancher/cniglue/Dockerfile.dapper | 15 - vendor/github.com/rancher/cniglue/LICENSE | 177 ---------- vendor/github.com/rancher/cniglue/Makefile | 23 -- vendor/github.com/rancher/cniglue/README.md | 28 -- vendor/github.com/rancher/cniglue/cni.go | 123 ------- vendor/github.com/rancher/cniglue/conf.go | 43 --- vendor/github.com/rancher/cniglue/glue.go | 46 --- vendor/github.com/rancher/cniglue/hosts.go | 67 ---- vendor/github.com/rancher/cniglue/io.go | 51 --- .../github.com/rancher/cniglue/resolvconf.go | 83 ----- vendor/github.com/rancher/cniglue/trash.conf | 7 - 58 files changed, 4891 deletions(-) delete mode 100644 vendor/github.com/containernetworking/cni/.gitignore delete mode 100644 vendor/github.com/containernetworking/cni/.travis.yml delete mode 100644 vendor/github.com/containernetworking/cni/CONTRIBUTING.md delete mode 100644 vendor/github.com/containernetworking/cni/DCO delete mode 100644 vendor/github.com/containernetworking/cni/LICENSE delete mode 100644 vendor/github.com/containernetworking/cni/MAINTAINERS delete mode 100644 vendor/github.com/containernetworking/cni/README.md delete mode 100644 vendor/github.com/containernetworking/cni/ROADMAP.md delete mode 100644 vendor/github.com/containernetworking/cni/SPEC.md delete mode 100755 vendor/github.com/containernetworking/cni/build delete mode 100644 vendor/github.com/containernetworking/cni/libcni/api.go delete mode 100644 vendor/github.com/containernetworking/cni/libcni/conf.go delete mode 100644 vendor/github.com/containernetworking/cni/pkg/invoke/args.go delete mode 100644 vendor/github.com/containernetworking/cni/pkg/invoke/delegate.go delete mode 100644 vendor/github.com/containernetworking/cni/pkg/invoke/exec.go delete mode 100644 vendor/github.com/containernetworking/cni/pkg/invoke/find.go delete mode 100644 vendor/github.com/containernetworking/cni/pkg/ip/cidr.go delete mode 100644 vendor/github.com/containernetworking/cni/pkg/ip/ipforward.go delete mode 100644 vendor/github.com/containernetworking/cni/pkg/ip/ipmasq.go delete mode 100644 vendor/github.com/containernetworking/cni/pkg/ip/link.go delete mode 100644 vendor/github.com/containernetworking/cni/pkg/ip/route.go delete mode 100644 vendor/github.com/containernetworking/cni/pkg/ipam/ipam.go delete mode 100644 vendor/github.com/containernetworking/cni/pkg/ns/README.md delete mode 100644 vendor/github.com/containernetworking/cni/pkg/ns/ns.go delete mode 100644 vendor/github.com/containernetworking/cni/pkg/skel/skel.go delete mode 100644 vendor/github.com/containernetworking/cni/pkg/types/args.go delete mode 100644 vendor/github.com/containernetworking/cni/pkg/types/types.go delete mode 100644 vendor/github.com/containernetworking/cni/pkg/utils/utils.go delete mode 100644 vendor/github.com/containernetworking/cni/plugins/ipam/host-local/README.md delete mode 100644 vendor/github.com/containernetworking/cni/plugins/ipam/host-local/allocator.go delete mode 100644 vendor/github.com/containernetworking/cni/plugins/ipam/host-local/backend/disk/backend.go delete mode 100644 vendor/github.com/containernetworking/cni/plugins/ipam/host-local/backend/disk/lock.go delete mode 100644 vendor/github.com/containernetworking/cni/plugins/ipam/host-local/backend/store.go delete mode 100644 vendor/github.com/containernetworking/cni/plugins/ipam/host-local/config.go delete mode 100644 vendor/github.com/containernetworking/cni/plugins/ipam/host-local/main.go delete mode 100644 vendor/github.com/containernetworking/cni/plugins/main/bridge/bridge.go delete mode 100755 vendor/github.com/containernetworking/cni/test delete mode 100644 vendor/github.com/coreos/go-iptables/.travis.yml delete mode 100644 vendor/github.com/coreos/go-iptables/LICENSE delete mode 100644 vendor/github.com/coreos/go-iptables/README.md delete mode 100755 vendor/github.com/coreos/go-iptables/build delete mode 100644 vendor/github.com/coreos/go-iptables/iptables/iptables.go delete mode 100644 vendor/github.com/coreos/go-iptables/iptables/lock.go delete mode 100755 vendor/github.com/coreos/go-iptables/test delete mode 100644 vendor/github.com/rancher/cniglue/.dockerignore delete mode 100644 vendor/github.com/rancher/cniglue/.drone.yml delete mode 100644 vendor/github.com/rancher/cniglue/.gitignore delete mode 100644 vendor/github.com/rancher/cniglue/Dockerfile.dapper delete mode 100644 vendor/github.com/rancher/cniglue/LICENSE delete mode 100644 vendor/github.com/rancher/cniglue/Makefile delete mode 100644 vendor/github.com/rancher/cniglue/README.md delete mode 100644 vendor/github.com/rancher/cniglue/cni.go delete mode 100644 vendor/github.com/rancher/cniglue/conf.go delete mode 100644 vendor/github.com/rancher/cniglue/glue.go delete mode 100644 vendor/github.com/rancher/cniglue/hosts.go delete mode 100644 vendor/github.com/rancher/cniglue/io.go delete mode 100644 vendor/github.com/rancher/cniglue/resolvconf.go delete mode 100644 vendor/github.com/rancher/cniglue/trash.conf diff --git a/vendor/github.com/containernetworking/cni/.gitignore b/vendor/github.com/containernetworking/cni/.gitignore deleted file mode 100644 index 06f78b4b..00000000 --- a/vendor/github.com/containernetworking/cni/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -bin/ -gopath/ -*.sw[ponm] diff --git a/vendor/github.com/containernetworking/cni/.travis.yml b/vendor/github.com/containernetworking/cni/.travis.yml deleted file mode 100644 index fb135c93..00000000 --- a/vendor/github.com/containernetworking/cni/.travis.yml +++ /dev/null @@ -1,29 +0,0 @@ -language: go -sudo: required -dist: trusty - - -matrix: - include: - - go: 1.5.4 - env: GO15VENDOREXPERIMENT=1 - - go: 1.6.2 - - go: tip - allow_failures: - - go: tip - -env: - global: - - TOOLS_CMD=golang.org/x/tools/cmd - - PATH=$GOROOT/bin:$PATH - -install: - - go get ${TOOLS_CMD}/cover - - go get github.com/modocache/gover - - go get github.com/mattn/goveralls - -script: - - ./test - -notifications: - email: false diff --git a/vendor/github.com/containernetworking/cni/CONTRIBUTING.md b/vendor/github.com/containernetworking/cni/CONTRIBUTING.md deleted file mode 100644 index fc637b15..00000000 --- a/vendor/github.com/containernetworking/cni/CONTRIBUTING.md +++ /dev/null @@ -1,86 +0,0 @@ -# How to Contribute - -CNI is [Apache 2.0 licensed](LICENSE) and accepts contributions via GitHub -pull requests. This document outlines some of the conventions on development -workflow, commit message formatting, contact points and other resources to make -it easier to get your contribution accepted. - -We gratefully welcome improvements to documentation as well as to code. - -# Certificate of Origin - -By contributing to this project you agree to the Developer Certificate of -Origin (DCO). This document was created by the Linux Kernel community and is a -simple statement that you, as a contributor, have the legal right to make the -contribution. See the [DCO](DCO) file for details. - -# Email and Chat - -The project uses the the cni-dev email list and IRC chat: -- Email: [cni-dev](https://groups.google.com/forum/#!forum/cni-dev) -- IRC: #[containernetworking](irc://irc.freenode.org:6667/#containernetworking) channel on freenode.org - -Please avoid emailing maintainers found in the MAINTAINERS file directly. They -are very busy and read the mailing lists. - -## Getting Started - -- Fork the repository on GitHub -- Read the [README](README.md) for build and test instructions -- Play with the project, submit bugs, submit pull requests! - -## Contribution workflow - -This is a rough outline of how to prepare a contribution: - -- Create a topic branch from where you want to base your work (usually branched from master). -- Make commits of logical units. -- Make sure your commit messages are in the proper format (see below). -- Push your changes to a topic branch in your fork of the repository. -- If you changed code, make sure the tests pass, and add any new tests as appropriate. -- Make sure any new code files have a license header. -- Submit a pull request to the original repository. - -# Acceptance policy - -These things will make a PR more likely to be accepted: - - * a well-described requirement - * tests for new code - * tests for old code! - * new code follows the conventions in old code - * a good commit message (see below) - -In general, we will merge a PR once two maintainers have endorsed it. -Trivial changes (e.g., corrections to spelling) may get waved through. -For substantial changes, more people may become involved, and you might get asked to resubmit the PR or divide the changes into more than one PR. - -### Format of the Commit Message - -We follow a rough convention for commit messages that is designed to answer two -questions: what changed and why. The subject line should feature the what and -the body of the commit should describe the why. - -``` -scripts: add the test-cluster command - -this uses tmux to setup a test cluster that you can easily kill and -start for debugging. - -Fixes #38 -``` - -The format can be described more formally as follows: - -``` -: - - - -