A CNI meta-plugin for multi-homed pods in Kubernetes
Go to file
OpenShift Merge Robot 419b44ce15
Merge pull request #65 from dougbtv/backport-readiness-check-cni-del-43
Bug 1824940: Adds readinessindicatorfile check on CNI DEL
2020-05-13 12:36:16 -07:00
.github/ISSUE_TEMPLATE Add issue template for {bug,enhance,support} 2018-12-19 15:55:44 -05:00
checkpoint Improve error/debug message 2019-10-10 10:32:45 -04:00
deployment/webhook Remove validating admission controller 2019-01-11 18:49:34 +09:00
doc Changes wait.ExponentialBackoff to wait.PollImmediate and exposes readinessindicatorfile via entrypoint parameter 2020-02-18 15:54:10 -05:00
examples changes sleep in docs to example that uses a trap INT 2019-06-10 21:35:15 +09:00
images Removes configuration invalidation 2020-03-02 10:19:09 -05:00
k8sclient Adds cursory unit test for default-route and cleans lint (and one errant test) 2019-10-29 13:34:24 -04:00
kubeletclient Improve error/debug message 2019-10-10 10:32:45 -04:00
logging Unit tests and update to quickstart guide (#354) 2019-08-05 15:04:35 -04:00
multus Adds readinessindicatorfile check on CNI DEL 2020-05-11 13:56:10 -04:00
netutils Adds cursory unit test for default-route and cleans lint (and one errant test) 2019-10-29 13:34:24 -04:00
testing Added tests to k8sclient.go (#357) 2019-08-20 13:54:08 -04:00
types Properly uses default-route in annotation to set the gateway. Fixes network status results. 2019-10-29 13:34:24 -04:00
vendor Merge branch 'ocp-43-features' into ocp-43-features-resolved 2019-10-29 15:11:35 -04:00
webhook Remove validating admission controller 2019-01-11 18:49:34 +09:00
.gitignore Removes duplicate NetworkAttachment CRD ref 2019-10-21 10:42:49 -04:00
.goreleaser.yml Change .goreleaser.yml to support go module build 2019-08-30 15:21:09 -04:00
.travis.yml [dockerfile] Use ENV GO111MODULE=off when building from openshift/origin-release:golang-1.10 2019-09-02 16:55:04 +09:00
build Merge branch 'ocp-43-features' into ocp-43-features-resolved 2019-10-29 15:11:35 -04:00
CONTRIBUTING.md Update CONTRIBUTING.md 2017-09-26 13:53:10 +01:00
Dockerfile Multi architecture image and CI job 2019-07-30 07:59:30 +09:00
Dockerfile.openshift Adds COMMIT environment variable, also required along with VERSION 2019-11-11 10:06:27 -05:00
Dockerfile.ppc64le Multi architecture image and CI job 2019-07-30 07:59:30 +09:00
go.mod Update k8s npwg repo name due to its change 2019-10-29 09:06:27 -04:00
go.sum Update k8s npwg repo name due to its change 2019-10-29 09:06:27 -04:00
LICENSE Initial commit 2016-12-13 14:48:12 +00:00
OWNERS Update OWNERS 2019-08-29 21:33:38 -04:00
README.md Added coveralls badge (#363) 2019-08-23 09:42:51 -04:00
test.sh Change .goreleaser.yml to support go module build 2019-08-30 15:21:09 -04:00

Multus-CNI

multus-cni Logo

Travis CIGo Report CardCoverage Status

Multus CNI enables attaching multiple network interfaces to pods in Kubernetes.

How it works

Multus CNI is a container network interface (CNI) plugin for Kubernetes that enables attaching multiple network interfaces to pods. Typically, in Kubernetes each pod only has one network interface (apart from a loopback) -- with Multus you can create a multi-homed pod that has multiple interfaces. This is accomplished by Multus acting as a "meta-plugin", a CNI plugin that can call multiple other CNI plugins.

Multus CNI follows the Kubernetes Network Custom Resource Definition De-facto Standard to provide a standardized method by which to specify the configurations for additional network interfaces. This standard is put forward by the Kubernetes Network Plumbing Working Group.

Multus is one of the projects in the Baremetal Container Experience kit

Multi-Homed pod

Here's an illustration of the network interfaces attached to a pod, as provisioned by Multus CNI. The diagram shows the pod with three interfaces: eth0, net0 and net1. eth0 connects kubernetes cluster network to connect with kubernetes server/services (e.g. kubernetes api-server, kubelet and so on). net0 and net1 are additional network attachments and connect to other networks by using other CNI plugins (e.g. vlan/vxlan/ptp).

multus-pod-image

Quickstart Installation Guide

The quickstart installation method for Multus requires that you have first installed a Kubernetes CNI plugin to serve as your pod-to-pod network, which we refer to as your "default network" (a network interface that every pod will be creatd with). Each network attachment created by Multus will be in addition to this default network interface. For more detail on installing a default network CNI plugins, refer to our quick-start guide.

Clone this GitHub repository, we'll apply a daemonset which installs Multus using to kubectl from this repo. From the root directory of the clone, apply the daemonset YAML file:

$ cat ./images/multus-daemonset.yml | kubectl apply -f -

This will configure your systems to be ready to use Multus CNI, but, to get started with adding additional interfaces to your pods, refer to our complete quick-start guide

Additional installation Options

  • Install via daemonset using the quick-start guide, above.
  • Download binaries from release page
  • By Docker image from Docker Hub
  • Or, roll-you-own and build from source

Comprehensive Documentation

Contact Us

For any questions about Multus CNI, feel free to ask a question in #general in the Intel-Corp Slack, or open up a GitHub issue.