Puppet provider for virtual switches.
Go to file
Ian Wells 8a64ef2df8 Added LICENSE file
Apache license added, per the declaration already in Modulefile.
2013-01-16 21:39:20 -08:00
lib Confine to existence of /proc/modules, not kernel. 2012-10-17 16:37:09 -05:00
manifests Bring dkms rebuild out into its own task, as it doesn't run reliably during the install step; save its output; change deps around; sort package ensure for kernel headers 2013-01-15 08:39:41 -08:00
LICENSE Added LICENSE file 2013-01-16 21:39:20 -08:00
Modulefile Update Modulefile 2013-01-16 21:37:04 -08:00
README.md README.. 2012-10-05 14:52:54 +02:00

Puppet module providing things for vSwitches. At the moment OVS is the only one I've added but please feel free to pull request this!

It's based upon types & providers so we can support more then just OVS or one vSwitch type.

Current layout is: bridges - A "Bridge" is basically the thing you plug ports / interfaces into. ports - A Port is a interface you plug into the bridge (switch).

USAGE: Place this directory at: /vswitch

Then in your manifest you can either use the things as parameterized classes: class {"vswitch::bridge": name => "br-ex" } class {"vswitch::port": interface => "eth0", bridge => "br-ex" }

Or you can use them as "Providers": vs_bridge {"br-ex":} vs_port {"eth0": bridge => "br-ex"}

TODO:

  • OpenFlow controller settings
  • OpenFlow Settings
  • OpenFlow Tables
  • More facts
  • Others that are not named here