Puppet provider for virtual switches.
Go to file
OpenStack Release Bot 53deacaf3e reno: Update master for unmaintained/yoga
Update the yoga release notes configuration to build from
unmaintained/yoga.

Change-Id: I20cd31a8354b79d282a4cb547789e1d650cffeec
2024-02-21 16:53:24 +00:00
data Replace params by hieradata 2023-10-17 11:05:19 +09:00
doc Update openstackdocstheme to the latest version 2021-09-29 16:06:51 +08:00
lib vs_port: Remove redundant list-port check in RHEL/CentOS 2023-12-04 16:59:46 +09:00
manifests Fix minimum value of handler/revalidator_cores 2023-11-10 02:25:32 +09:00
releasenotes reno: Update master for unmaintained/yoga 2024-02-21 16:53:24 +00:00
spec Create the base ovs provider 2023-11-28 11:06:39 +09:00
.gitignore Dissuade .gitignore references to personal tools 2018-10-08 11:39:25 +08:00
.gitreview OpenDev Migration Patch 2019-04-19 19:34:07 +00:00
.pdkignore Exclude release note files 2023-08-11 18:01:47 +09:00
.zuul.yaml Re-enable scenario 003 integration job 2022-07-17 11:08:23 +09:00
CHANGELOG.md Release 4.0.0 2016-03-23 14:50:57 -04:00
CONTRIBUTING.rst [ussuri][goal] Add CONTRIBUTING.rst 2020-05-10 22:55:19 +02:00
Gemfile Use openstack_spec_helper from zuul checkout 2020-08-30 23:07:57 +02:00
LICENSE Added LICENSE file 2013-01-16 21:39:20 -08:00
README.md Add Puppet Litmus 2020-09-14 23:42:42 +02: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
hiera.yaml Replace params by hieradata 2023-10-17 11:05:19 +09:00
metadata.json Bump supported Debian version to 12 (Bookworm) 2023-11-18 09:26:05 +00:00
setup.cfg Add information technology in the setup.cfg 2021-10-01 06:54:50 +08:00
setup.py setuptools: Disable auto discovery 2022-03-29 11:19:25 +00:00
tox.ini Stop configuring install_command in tox. 2021-09-29 18:22:06 +09: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. 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]'
}

TODO:

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