Skip to content

Releases: flannel-io/flannel

AWS VPC Backend

25 Apr 01:01
Compare
Choose a tag to compare
  • Rohan Singh contributed aws-vpc backend (thanks, Rohan). It works by programming the VPC router to forward a subnet to the VM. It allows for elimination of encapsulation overhead while still providing a machine with full subnet.
  • Switched over to using master branch of go-etcd

Maintenance release

10 Apr 01:13
Compare
Choose a tag to compare
  • flannel will try to recreate VXLAN device every second on startup. Allows for the interface that it's enslaving to come up after flannel (thank you, John W. Linville)
  • fix for etcd sockets being leaked (thank you, Lv Lv)

Better IP Masq support and host-gw backend added

12 Feb 01:51
Compare
Choose a tag to compare
  1. --ip-masq now works for all backends. Previously it was only
    working properly for UDP backend.
  2. Addition of new "host-gw" backend -- thank you, Angus Lees. This
    new backend avoids encapsulation and uses the host's interface as a
    gateway. As a subnet is added or removed, each flannel daemon will
    manipulate the host's routing table to reflect the change. As an
    example, if a host that has an IP 192.168.1.5 adds a flannel subnet
    10.1.8.0/24, the following route would be added to each host:
    10.1.8.0/24 via 192.168.1.5 dev eth0

Addition of VXLAN

23 Dec 23:44
Compare
Choose a tag to compare
  • Added VXLAN backend to move encapsulation into the kernel
  • Support for multiple etcd endpoints
  • Support for TLS between flannel and etcd
  • Support for older version of iptables