A CNI meta-plugin for multi-homed pods in Kubernetes
Go to file
Kuralamudhan Ramakrishnan 1eee7e51f9 Merge pull request #4 from Intel-Corp/dev/clearpluginfix
fix to clear plugins after the failure #2
2017-02-21 19:20:46 +00:00
Godeps Initial commit 2016-12-13 14:48:12 +00:00
multus fix to clear plugins after the failure 2017-02-21 19:01:58 +00:00
vendor Initial commit 2016-12-13 14:48:12 +00:00
build Initial commit 2016-12-13 14:48:12 +00:00
LICENSE Initial commit 2016-12-13 14:48:12 +00:00
README.md Update README.md 2017-02-21 17:11:19 +00:00

MULTUS CNI plugin

Please read CNI for more information on container networking.

  • Multus is the latin word for “Multi”

  • As the name suggests, it acts as the Multi plugin in the Kubernetes and provides the Multi interface support in a pod

  • It is generic to run with other plugins like ptp, local-host, calico and flannel, with different IPAM and networks.

  • It contact between the container runtime and other plugins, and it isn't having any of it own net configuration, it calls other plugins like flannel/calico to do the real net conf job.

  • Multus reuse the concept of invoking the delegates in the flannel, it group the multi plugins into delegates and invoke each other in the sequential order, according to the JSON scheme in the cni configuration.

  • No of plugins support is depending upon the number of delegates in the conf file.

  • Master plugin invokes "eth0" interface in the pod, rest of plugins(Mininon plugins eg: sriov,ipam) invoke interfaces as "net0", "net1".. "netn"

  • The "masterplugin" is the only net conf option of multus cni, it identifies the primary network. The default route will point to the primary network

Build

This plugin requires Go 1.5+ to build.

Go 1.5 users will need to set GO15VENDOREXPERIMENT=1 to get vendored dependencies. This flag is set by default in 1.6.

#./build

Network configuration reference

  • name (string, required): the name of the network
  • type (string, required): "multus"
  • delegates (([]map,required): number of delegate details in the Multus
  • masterplugin (bool,required): master plugin to report back the IP address and DNS to the container

Usage

Given the following network configuration:

# tee /etc/cni/net.d/multus-cni.conf <<-'EOF'
{
    "name": "minion1-multus-demo-network",
    "type": "multus",
    "delegates": [
        {
                "type": "sriov",
                #part of sriov plugin conf
                "if0": "enp12s0f0", 
                "ipam": {
                        "type": "host-local",
                        "subnet": "10.56.217.0/24",
                        "rangeStart": "10.56.217.131",
                        "rangeEnd": "10.56.217.190",
                        "routes": [
                                { "dst": "0.0.0.0/0" }
                        ],
                        "gateway": "10.56.217.1"
                }
        },
        {
                "type": "ptp",
                "ipam": {
                        "type": "host-local",
                        "subnet": "10.168.1.0/24",
                        "rangeStart": "10.168.1.11",
                        "rangeEnd": "10.168.1.20",
                        "routes": [
                                { "dst": "0.0.0.0/0" }
                        ],
                        "gateway": "10.168.1.1"
                }
        },
        {
                "type": "flannel",
                "masterplugin": true,
                "delegate": {
                        "isDefaultGateway": true
                }
        }
    ]
}
EOF

Testing the Multus CNI with docker

Make sure that the multus, sriov and flannel binaries are in the /opt/cni/bin directories and follow the steps as mention in the CNI