*: appc/cni -> containernetworking/cni
authorStefan Junker <mail@stefanjunker.de>
Wed, 4 May 2016 14:06:05 +0000 (16:06 +0200)
committerStefan Junker <mail@stefanjunker.de>
Fri, 6 May 2016 14:40:27 +0000 (16:40 +0200)
The project has been moved so internally we simply rename everything.
Consumers are recommended to update their vendored version of cni.

34 files changed:
CONTRIBUTING.md
Documentation/dhcp.md
Documentation/host-local.md
Godeps/Godeps.json
README.md
build
cnitool/cni.go
libcni/api.go
pkg/invoke/delegate.go
pkg/invoke/exec.go
pkg/invoke/find_test.go
pkg/ip/link.go
pkg/ipam/ipam.go
pkg/ns/ns_test.go
pkg/skel/skel.go
pkg/testhelpers/testhelpers_test.go
pkg/types/args_test.go
plugins/ipam/dhcp/daemon.go
plugins/ipam/dhcp/lease.go
plugins/ipam/dhcp/main.go
plugins/ipam/dhcp/options.go
plugins/ipam/dhcp/options_test.go
plugins/ipam/host-local/allocator.go
plugins/ipam/host-local/config.go
plugins/ipam/host-local/main.go
plugins/main/bridge/bridge.go
plugins/main/ipvlan/ipvlan.go
plugins/main/loopback/loopback.go
plugins/main/loopback/loopback_suite_test.go
plugins/main/loopback/loopback_test.go
plugins/main/macvlan/macvlan.go
plugins/main/ptp/ptp.go
plugins/meta/flannel/flannel.go
plugins/meta/tuning/tuning.go

index c17c687..c056968 100644 (file)
@@ -14,9 +14,9 @@ contribution. See the [DCO](DCO) file for details.
 
 # Email and Chat
 
-The project uses the the cni-dev email list and #appc on Freenode for 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: #[appc](irc://irc.freenode.org:6667/#appc) IRC channel on freenode.org
+- 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.
index 298e96e..7451c2c 100644 (file)
@@ -3,7 +3,7 @@
 ## Overview
 
 With dhcp plugin the containers can get an IP allocated by a DHCP server already running on your network.
-This can be especially useful with plugin types such as [macvlan](https://github.com/appc/cni/blob/master/Documentation/macvlan.md).
+This can be especially useful with plugin types such as [macvlan](https://github.com/containernetworking/cni/blob/master/Documentation/macvlan.md).
 Because a DHCP lease must be periodically renewed for the duration of container lifetime, a separate daemon is required to be running.
 The same plugin binary can also be run in the daemon mode.
 
index 35aba35..3744615 100644 (file)
@@ -32,7 +32,7 @@ It stores the state locally on the host filesystem, therefore ensuring uniquenes
 * `routes` (string, optional): list of routes to add to the container namespace. Each route is a dictionary with "dst" and optional "gw" fields. If "gw" is omitted, value of "gateway" will be used.
 
 ## Supported arguments
-The following [CNI_ARGS](https://github.com/appc/cni/blob/master/SPEC.md#parameters) are supported:
+The following [CNI_ARGS](https://github.com/containernetworking/cni/blob/master/SPEC.md#parameters) are supported:
 
 * `ip`: request a specific IP address from the subnet. If it's not available, the plugin will exit with an error
 
index d0ace65..e362e06 100644 (file)
@@ -1,5 +1,5 @@
 {
-       "ImportPath": "github.com/appc/cni",
+       "ImportPath": "github.com/containernetworking/cni",
        "GoVersion": "go1.6",
        "Packages": [
                "./..."
index c96526f..37d1cbf 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
-[![Build Status](https://travis-ci.org/appc/cni.svg?branch=master)](https://travis-ci.org/appc/cni)
-[![Coverage Status](https://coveralls.io/repos/github/appc/cni/badge.svg?branch=master)](https://coveralls.io/github/appc/cni?branch=master)
+[![Build Status](https://travis-ci.org/containernetworking/cni.svg?branch=master)](https://travis-ci.org/containernetworking/cni)
+[![Coverage Status](https://coveralls.io/repos/github/containernetworking/cni/badge.svg?branch=master)](https://coveralls.io/github/containernetworking/cni?branch=master)
 
 # CNI - the Container Network Interface
 
@@ -34,7 +34,7 @@ Hence we are proposing this specification, along with an initial set of plugins
 
 ## Contributing to CNI
 
-We welcome contributions, including [bug reports](https://github.com/appc/cni/issues), and code and documentation improvements.
+We welcome contributions, including [bug reports](https://github.com/containernetworking/cni/issues), and code and documentation improvements.
 If you intend to contribute to code or documentation, please read [CONTRIBUTING.md](CONTRIBUTING.md). Also see the [contact section](#contact) in this README.
 
 ## How do I use CNI?
@@ -156,6 +156,6 @@ If these topics of are interest please contact the team via the mailing list or
 
 ## Contact
 
-For any questions about CNI, please reach out on the mailing list or IRC:
+For any questions about CNI, please reach out on the mailing list:
 - Email: [cni-dev](https://groups.google.com/forum/#!forum/cni-dev)
-- IRC: #[appc](irc://irc.freenode.org:6667/#appc) IRC channel on freenode.org
+- IRC: #[containernetworking](irc://irc.freenode.org:6667/#containernetworking) channel on freenode.org
diff --git a/build b/build
index 815b360..2acc8f2 100755 (executable)
--- a/build
+++ b/build
@@ -1,7 +1,7 @@
 #!/usr/bin/env bash
 set -e
 
-ORG_PATH="github.com/appc"
+ORG_PATH="github.com/containernetworking"
 REPO_PATH="${ORG_PATH}/cni"
 
 if [ ! -h gopath/src/${REPO_PATH} ]; then
index 62ac675..91255c7 100644 (file)
@@ -20,7 +20,7 @@ import (
        "path/filepath"
        "strings"
 
-       "github.com/appc/cni/libcni"
+       "github.com/containernetworking/cni/libcni"
 )
 
 const (
index 77ca5d2..340a20c 100644 (file)
@@ -17,8 +17,8 @@ package libcni
 import (
        "strings"
 
-       "github.com/appc/cni/pkg/invoke"
-       "github.com/appc/cni/pkg/types"
+       "github.com/containernetworking/cni/pkg/invoke"
+       "github.com/containernetworking/cni/pkg/types"
 )
 
 type RuntimeConf struct {
index 0a8198c..ddf1d17 100644 (file)
@@ -19,7 +19,7 @@ import (
        "os"
        "strings"
 
-       "github.com/appc/cni/pkg/types"
+       "github.com/containernetworking/cni/pkg/types"
 )
 
 func DelegateAdd(delegatePlugin string, netconf []byte) (*types.Result, error) {
index 337bfcb..a85eede 100644 (file)
@@ -21,7 +21,7 @@ import (
        "os"
        "os/exec"
 
-       "github.com/appc/cni/pkg/types"
+       "github.com/containernetworking/cni/pkg/types"
 )
 
 func pluginErr(err error, output []byte) error {
index 4135538..be4cc2d 100644 (file)
@@ -19,7 +19,7 @@ import (
        "io/ioutil"
        "path/filepath"
 
-       "github.com/appc/cni/pkg/invoke"
+       "github.com/containernetworking/cni/pkg/invoke"
        . "github.com/onsi/ginkgo"
        . "github.com/onsi/gomega"
 )
index 1ba529d..df16812 100644 (file)
@@ -20,7 +20,7 @@ import (
        "net"
        "os"
 
-       "github.com/appc/cni/pkg/ns"
+       "github.com/containernetworking/cni/pkg/ns"
        "github.com/vishvananda/netlink"
 )
 
index f0adfb7..d9fbff7 100644 (file)
@@ -18,9 +18,9 @@ import (
        "fmt"
        "os"
 
-       "github.com/appc/cni/pkg/invoke"
-       "github.com/appc/cni/pkg/ip"
-       "github.com/appc/cni/pkg/types"
+       "github.com/containernetworking/cni/pkg/invoke"
+       "github.com/containernetworking/cni/pkg/ip"
+       "github.com/containernetworking/cni/pkg/types"
 
        "github.com/vishvananda/netlink"
 )
index 7ad882f..a901eb3 100644 (file)
@@ -22,8 +22,8 @@ import (
        "os/exec"
        "path/filepath"
 
-       "github.com/appc/cni/pkg/ns"
-       "github.com/appc/cni/pkg/testhelpers"
+       "github.com/containernetworking/cni/pkg/ns"
+       "github.com/containernetworking/cni/pkg/testhelpers"
        . "github.com/onsi/ginkgo"
        . "github.com/onsi/gomega"
 )
index 5c3532d..7347b07 100644 (file)
@@ -22,7 +22,7 @@ import (
        "log"
        "os"
 
-       "github.com/appc/cni/pkg/types"
+       "github.com/containernetworking/cni/pkg/types"
 )
 
 // CmdArgs captures all the arguments passed in to the plugin
index ce328f0..62d4585 100644 (file)
@@ -25,7 +25,7 @@ import (
 
        "golang.org/x/sys/unix"
 
-       "github.com/appc/cni/pkg/testhelpers"
+       "github.com/containernetworking/cni/pkg/testhelpers"
        . "github.com/onsi/ginkgo"
        . "github.com/onsi/gomega"
 )
index 23aaf81..61fd223 100644 (file)
@@ -17,7 +17,7 @@ package types_test
 import (
        "reflect"
 
-       . "github.com/appc/cni/pkg/types"
+       . "github.com/containernetworking/cni/pkg/types"
 
        . "github.com/onsi/ginkgo"
        . "github.com/onsi/ginkgo/extensions/table"
index dabedf7..2386f9a 100644 (file)
@@ -27,8 +27,8 @@ import (
        "runtime"
        "sync"
 
-       "github.com/appc/cni/pkg/skel"
-       "github.com/appc/cni/pkg/types"
+       "github.com/containernetworking/cni/pkg/skel"
+       "github.com/containernetworking/cni/pkg/types"
        "github.com/coreos/go-systemd/activation"
 )
 
index 90c223c..82e2fc6 100644 (file)
@@ -27,8 +27,8 @@ import (
        "github.com/d2g/dhcp4client"
        "github.com/vishvananda/netlink"
 
-       "github.com/appc/cni/pkg/ns"
-       "github.com/appc/cni/pkg/types"
+       "github.com/containernetworking/cni/pkg/ns"
+       "github.com/containernetworking/cni/pkg/types"
 )
 
 // RFC 2131 suggests using exponential backoff, starting with 4sec
index da44d57..b537831 100644 (file)
@@ -20,8 +20,8 @@ import (
        "os"
        "path/filepath"
 
-       "github.com/appc/cni/pkg/skel"
-       "github.com/appc/cni/pkg/types"
+       "github.com/containernetworking/cni/pkg/skel"
+       "github.com/containernetworking/cni/pkg/types"
 )
 
 const socketPath = "/run/cni/dhcp.sock"
index f2712c2..b11ec21 100644 (file)
@@ -20,7 +20,7 @@ import (
        "net"
        "time"
 
-       "github.com/appc/cni/pkg/types"
+       "github.com/containernetworking/cni/pkg/types"
        "github.com/d2g/dhcp4"
 )
 
index 0a140ce..f69ae7b 100644 (file)
@@ -18,7 +18,7 @@ import (
        "net"
        "testing"
 
-       "github.com/appc/cni/pkg/types"
+       "github.com/containernetworking/cni/pkg/types"
        "github.com/d2g/dhcp4"
 )
 
index 2b867ce..55a3ae6 100644 (file)
@@ -18,9 +18,9 @@ import (
        "fmt"
        "net"
 
-       "github.com/appc/cni/pkg/ip"
-       "github.com/appc/cni/pkg/types"
-       "github.com/appc/cni/plugins/ipam/host-local/backend"
+       "github.com/containernetworking/cni/pkg/ip"
+       "github.com/containernetworking/cni/pkg/types"
+       "github.com/containernetworking/cni/plugins/ipam/host-local/backend"
 )
 
 type IPAllocator struct {
index 08ca07e..a0e493c 100644 (file)
@@ -19,7 +19,7 @@ import (
        "fmt"
        "net"
 
-       "github.com/appc/cni/pkg/types"
+       "github.com/containernetworking/cni/pkg/types"
 )
 
 // IPAMConfig represents the IP related network configuration.
index 9f67e8a..d2f3c30 100644 (file)
 package main
 
 import (
-       "github.com/appc/cni/plugins/ipam/host-local/backend/disk"
+       "github.com/containernetworking/cni/plugins/ipam/host-local/backend/disk"
 
-       "github.com/appc/cni/pkg/skel"
-       "github.com/appc/cni/pkg/types"
+       "github.com/containernetworking/cni/pkg/skel"
+       "github.com/containernetworking/cni/pkg/types"
 )
 
 func main() {
index cc363a4..3c058e1 100644 (file)
@@ -23,12 +23,12 @@ import (
        "runtime"
        "syscall"
 
-       "github.com/appc/cni/pkg/ip"
-       "github.com/appc/cni/pkg/ipam"
-       "github.com/appc/cni/pkg/ns"
-       "github.com/appc/cni/pkg/skel"
-       "github.com/appc/cni/pkg/types"
-       "github.com/appc/cni/pkg/utils"
+       "github.com/containernetworking/cni/pkg/ip"
+       "github.com/containernetworking/cni/pkg/ipam"
+       "github.com/containernetworking/cni/pkg/ns"
+       "github.com/containernetworking/cni/pkg/skel"
+       "github.com/containernetworking/cni/pkg/types"
+       "github.com/containernetworking/cni/pkg/utils"
        "github.com/vishvananda/netlink"
 )
 
index 8591977..6de0cb9 100644 (file)
@@ -21,11 +21,11 @@ import (
        "os"
        "runtime"
 
-       "github.com/appc/cni/pkg/ip"
-       "github.com/appc/cni/pkg/ipam"
-       "github.com/appc/cni/pkg/ns"
-       "github.com/appc/cni/pkg/skel"
-       "github.com/appc/cni/pkg/types"
+       "github.com/containernetworking/cni/pkg/ip"
+       "github.com/containernetworking/cni/pkg/ipam"
+       "github.com/containernetworking/cni/pkg/ns"
+       "github.com/containernetworking/cni/pkg/skel"
+       "github.com/containernetworking/cni/pkg/types"
        "github.com/vishvananda/netlink"
 )
 
index dabe807..1e5095d 100644 (file)
@@ -17,9 +17,9 @@ package main
 import (
        "os"
 
-       "github.com/appc/cni/pkg/ns"
-       "github.com/appc/cni/pkg/skel"
-       "github.com/appc/cni/pkg/types"
+       "github.com/containernetworking/cni/pkg/ns"
+       "github.com/containernetworking/cni/pkg/skel"
+       "github.com/containernetworking/cni/pkg/types"
        "github.com/vishvananda/netlink"
 )
 
index be179aa..e355747 100644 (file)
@@ -32,7 +32,7 @@ func TestLoopback(t *testing.T) {
 
 var _ = BeforeSuite(func() {
        var err error
-       pathToLoPlugin, err = gexec.Build("github.com/appc/cni/plugins/main/loopback")
+       pathToLoPlugin, err = gexec.Build("github.com/containernetworking/cni/plugins/main/loopback")
        Expect(err).NotTo(HaveOccurred())
 })
 
index 037fbfe..7c009d1 100644 (file)
@@ -21,8 +21,8 @@ import (
        "os/exec"
        "strings"
 
-       "github.com/appc/cni/pkg/ns"
-       "github.com/appc/cni/pkg/testhelpers"
+       "github.com/containernetworking/cni/pkg/ns"
+       "github.com/containernetworking/cni/pkg/testhelpers"
        . "github.com/onsi/ginkgo"
        . "github.com/onsi/gomega"
        "github.com/onsi/gomega/gbytes"
index 0635f26..febf2fc 100644 (file)
@@ -21,12 +21,12 @@ import (
        "os"
        "runtime"
 
-       "github.com/appc/cni/pkg/ip"
-       "github.com/appc/cni/pkg/ipam"
-       "github.com/appc/cni/pkg/ns"
-       "github.com/appc/cni/pkg/skel"
-       "github.com/appc/cni/pkg/types"
-       "github.com/appc/cni/pkg/utils/sysctl"
+       "github.com/containernetworking/cni/pkg/ip"
+       "github.com/containernetworking/cni/pkg/ipam"
+       "github.com/containernetworking/cni/pkg/ns"
+       "github.com/containernetworking/cni/pkg/skel"
+       "github.com/containernetworking/cni/pkg/types"
+       "github.com/containernetworking/cni/pkg/utils/sysctl"
        "github.com/vishvananda/netlink"
 )
 
index 3035c64..2cd5185 100644 (file)
@@ -24,12 +24,12 @@ import (
 
        "github.com/vishvananda/netlink"
 
-       "github.com/appc/cni/pkg/ip"
-       "github.com/appc/cni/pkg/ipam"
-       "github.com/appc/cni/pkg/ns"
-       "github.com/appc/cni/pkg/skel"
-       "github.com/appc/cni/pkg/types"
-       "github.com/appc/cni/pkg/utils"
+       "github.com/containernetworking/cni/pkg/ip"
+       "github.com/containernetworking/cni/pkg/ipam"
+       "github.com/containernetworking/cni/pkg/ns"
+       "github.com/containernetworking/cni/pkg/skel"
+       "github.com/containernetworking/cni/pkg/types"
+       "github.com/containernetworking/cni/pkg/utils"
 )
 
 func init() {
index 6653bac..096fe6d 100644 (file)
@@ -29,9 +29,9 @@ import (
        "strconv"
        "strings"
 
-       "github.com/appc/cni/pkg/invoke"
-       "github.com/appc/cni/pkg/skel"
-       "github.com/appc/cni/pkg/types"
+       "github.com/containernetworking/cni/pkg/invoke"
+       "github.com/containernetworking/cni/pkg/skel"
+       "github.com/containernetworking/cni/pkg/types"
 )
 
 const (
index 91118df..f48d322 100644 (file)
@@ -25,9 +25,9 @@ import (
        "path/filepath"
        "strings"
 
-       "github.com/appc/cni/pkg/ns"
-       "github.com/appc/cni/pkg/skel"
-       "github.com/appc/cni/pkg/types"
+       "github.com/containernetworking/cni/pkg/ns"
+       "github.com/containernetworking/cni/pkg/skel"
+       "github.com/containernetworking/cni/pkg/types"
 )
 
 // TuningConf represents the network tuning configuration.