Puppet provider for virtual switches.
Go to file
Takashi Kajinami 2cc977b9cc Add missing openstacklib to dependencies
The vswitch::params class includes the openstacklib::defaults class,
thus puppet-openstacklib should be included in dependencies.

Closes-Bug: #1922026
Change-Id: I3000400e380537f0979c19009dc6c354639c2394
(cherry picked from commit 675cdecba2)
(cherry picked from commit ade37fb8af)
(cherry picked from commit 41706a3c85)
(cherry picked from commit 7a119c21cd)
2021-04-06 13:18:23 +02:00
doc Bump the openstackdocstheme extension to 1.20 2019-08-13 11:29:08 +08:00
lib Fix the undefined method 'chomp' for nil:NilClass error seen with ovs 2.10 2018-08-28 14:25:25 +05:30
manifests OVS Revalidator and handler threads config 2019-05-14 15:47:05 +05:30
releasenotes Bump the openstackdocstheme extension to 1.20 2019-08-13 11:29:08 +08:00
spec Provide option to disable EMC in puppet-vswitch 2019-03-29 07:06:55 +05:30
.gitignore Dissuade .gitignore references to personal tools 2018-10-08 11:39:25 +08:00
.gitreview Update .gitreview for stable/train 2019-10-04 13:39:19 +00:00
.zuul.yaml switch documentation job to new PTI 2018-08-31 08:24:48 -04:00
CHANGELOG.md Release 4.0.0 2016-03-23 14:50:57 -04:00
Gemfile Switch to Train 2019-10-10 01:20:54 +02:00
LICENSE Added LICENSE file 2013-01-16 21:39:20 -08:00
README.md Fix Repository 2019-04-21 12:59:11 +08:00
Rakefile modulesync: sync and add nodepool-bionic for beaker 2018-07-23 12:27:26 +00:00
bindep.txt modulesync: sync and add nodepool-bionic for beaker 2018-07-23 12:27:26 +00:00
metadata.json Add missing openstacklib to dependencies 2021-04-06 13:18:23 +02:00
setup.cfg Change openstack-dev to openstack-discuss 2018-12-02 18:20:49 +01:00
setup.py Add basic structure for ReNo 2016-03-14 08:36:45 -04:00
tox.ini Update TOX/UPPER_CONSTRAINTS_FILE for stable/train 2019-10-04 13:39:24 +00:00

README.md

Team and repository tags

Team and repository tags

VSwitch

Table of Contents

  1. Overview - What is the AODH module?
  2. Development - Guide for contributing to the module
  3. Contributors - Those with commits
  4. Release Notes - Release notes for the project
  5. Repository - The project source code repository
  6. Usage - The usage of the module
  7. Beaker-Rspec - Beaker-rspec tests for the project
  8. TODO - What to do next

Overview

4.0.0 - 2016.1 - Mitaka

A Puppet module providing things for vSwitches. At the moment OVS is the only one I've added but please feel free to contribute new providers through Stackforge. It's based upon types and providers so we can support more then just OVS or one vSwitch type.

The 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).
  • configs - Configuration settings, if any

Development

Developer documentation for the entire puppet-openstack project.

Contributors

Release Notes

Repository

Usage

To create a new bridge, use the vs_bridge type:

vs_bridge { 'br-ex':
  ensure => present,
}

You can then attach a device to the bridge with a virtual port:

vs_port { 'eth2':
  ensure => present,
  bridge => 'br-ex',
}

You can change the vswitch configuration settings using.

vs_config { 'parameter_name':
  ensure => present,
  value => "some_value"
}

For configuration parameters that are 'hash' data type, the resource name should be of the following format

parameter-name:key-name

Ex.
vs_config { 'external_ids:ovn-remote':
  ensure => present,
  value => 'tcp:127.0.0.1:6640'
}

For 'set/array' data types, value should be in the following format

'[<values>]'

Ex.
vs_config { 'array_key':
  ensure => present,
  value => '[2, 1, 6, 4]'
}

Beaker-Rspec

This module has beaker-rspec tests

To run:

bundle install
bundle exec rspec spec/acceptance

TODO:

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