{"id":13647626,"url":"https://github.com/openstack/puppet-vswitch","last_synced_at":"2025-04-06T16:12:32.707Z","repository":{"id":11145614,"uuid":"13513045","full_name":"openstack/puppet-vswitch","owner":"openstack","description":"Puppet provider for virtual switches. Mirror of code maintained at opendev.org.","archived":false,"fork":false,"pushed_at":"2025-01-26T08:53:44.000Z","size":578,"stargazers_count":45,"open_issues_count":0,"forks_count":30,"subscribers_count":10,"default_branch":"master","last_synced_at":"2025-03-17T23:39:50.159Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://opendev.org/openstack/puppet-vswitch","language":"Ruby","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/openstack.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.rst","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2013-10-12T00:58:54.000Z","updated_at":"2025-01-26T08:53:48.000Z","dependencies_parsed_at":"2023-02-10T00:15:53.645Z","dependency_job_id":"f362abac-2aeb-4fab-9587-d873092c7130","html_url":"https://github.com/openstack/puppet-vswitch","commit_stats":null,"previous_names":[],"tags_count":120,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpuppet-vswitch","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpuppet-vswitch/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpuppet-vswitch/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpuppet-vswitch/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/openstack","download_url":"https://codeload.github.com/openstack/puppet-vswitch/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247509232,"owners_count":20950232,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-02T01:03:40.682Z","updated_at":"2025-04-06T16:12:32.689Z","avatar_url":"https://github.com/openstack.png","language":"Ruby","funding_links":[],"categories":["Ruby"],"sub_categories":[],"readme":"Team and repository tags\n========================\n\n[![Team and repository tags](https://governance.openstack.org/tc/badges/puppet-vswitch.svg)](https://governance.openstack.org/tc/reference/tags/index.html)\n\n\u003c!-- Change things from this point on --\u003e\n\nVSwitch\n====\n\n#### Table of Contents\n\n1. [Overview - What is the AODH module?](#overview)\n2. [Development - Guide for contributing to the module](#development)\n3. [Contributors - Those with commits](#contributors)\n4. [Release Notes - Release notes for the project](#release-notes)\n5. [Repository - The project source code repository](#repository)\n6. [Usage - The usage of the module](#usage)\n7. [TODO - What to do next](#todo)\n\nOverview\n--------\n\n4.0.0 - 2016.1 - Mitaka\n\nA Puppet module providing things for vSwitches. At the moment OVS is the only\none I've added but please feel free to contribute new providers through\nStackforge. It's based upon types and providers so we can support more then just\nOVS or one vSwitch type.\n\nThe current layout is:\n\n* bridges - A \"Bridge\" is basically the thing you plug ports / interfaces into.\n* ports - A Port is a interface you plug into the bridge (switch).\n* configs - Configuration settings, if any\n\nDevelopment\n-----------\n\nDeveloper documentation for the entire puppet-openstack project.\n\n* https://docs.openstack.org/puppet-openstack-guide/latest/\n\nContributors\n------------\n\n* https://github.com/openstack/puppet-vswitch/graphs/contributors\n\nRelease Notes\n-------------\n\n* https://docs.openstack.org/releasenotes/puppet-vswitch\n\nRepository\n-------------\n\n* https://opendev.org/openstack/puppet-vswitch\n\nUsage\n-------------\nTo create a new bridge, use the `vs_bridge` type:\n\n```\nvs_bridge { 'br-ex':\n  ensure =\u003e present,\n}\n```\n\nYou can then attach a device to the bridge with a virtual port:\n```\nvs_port { 'eth2':\n  ensure =\u003e present,\n  bridge =\u003e 'br-ex',\n}\n```\n\nYou can change the vswitch configuration settings using.\n```\nvs_config { 'parameter_name':\n  ensure =\u003e present,\n  value =\u003e \"some_value\"\n}\n```\nFor configuration parameters that are 'hash' data type, the resource name\nshould be of the following format\n\n```\nparameter-name:key-name\n\nEx.\nvs_config { 'external_ids:ovn-remote':\n  ensure =\u003e present,\n  value =\u003e 'tcp:127.0.0.1:6640'\n}\n```\n\nFor 'set/array' data types, value should be in the following format\n\n```\n'[\u003cvalues\u003e]'\n\nEx.\nvs_config { 'array_key':\n  ensure =\u003e present,\n  value =\u003e '[2, 1, 6, 4]'\n}\n```\n\nTODO:\n-------------\n* OpenFlow controller settings\n* OpenFlow Settings\n* OpenFlow Tables\n* More facts\n* Others that are not named here\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenstack%2Fpuppet-vswitch","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopenstack%2Fpuppet-vswitch","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenstack%2Fpuppet-vswitch/lists"}