{"id":13647629,"url":"https://github.com/openstack/puppet-neutron","last_synced_at":"2025-10-05T05:18:47.509Z","repository":{"id":10120173,"uuid":"12188917","full_name":"openstack/puppet-neutron","owner":"openstack","description":"OpenStack Neutron Puppet Module. Mirror of code maintained at opendev.org.","archived":false,"fork":false,"pushed_at":"2025-09-22T22:37:17.000Z","size":5365,"stargazers_count":64,"open_issues_count":0,"forks_count":106,"subscribers_count":19,"default_branch":"master","last_synced_at":"2025-09-23T00:21:54.389Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://opendev.org/openstack/puppet-neutron","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2013-08-18T02:04:09.000Z","updated_at":"2025-09-22T22:37:21.000Z","dependencies_parsed_at":"2023-02-16T20:46:02.483Z","dependency_job_id":"b2fa87a1-b58c-466f-b0eb-aa74ed004edd","html_url":"https://github.com/openstack/puppet-neutron","commit_stats":{"total_commits":1654,"total_committers":247,"mean_commits":6.696356275303644,"dds":0.8047158403869408,"last_synced_commit":"8b91541f2ab59f5b24ee4695b207e6089ccbbed8"},"previous_names":[],"tags_count":144,"template":false,"template_full_name":null,"purl":"pkg:github/openstack/puppet-neutron","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpuppet-neutron","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpuppet-neutron/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpuppet-neutron/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpuppet-neutron/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/openstack","download_url":"https://codeload.github.com/openstack/puppet-neutron/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpuppet-neutron/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278411261,"owners_count":25982368,"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","status":"online","status_checked_at":"2025-10-05T02:00:06.059Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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.767Z","updated_at":"2025-10-05T05:18:47.493Z","avatar_url":"https://github.com/openstack.png","language":"Ruby","readme":"Team and repository tags\n========================\n\n[![Team and repository tags](https://governance.openstack.org/tc/badges/puppet-neutron.svg)](https://governance.openstack.org/tc/reference/tags/index.html)\n\n\u003c!-- Change things from this point on --\u003e\n\nneutron\n=======\n\n#### Table of Contents\n\n1. [Overview - What is the neutron module?](#overview)\n2. [Module Description - What does the module do?](#module-description)\n3. [Setup - Tha basics of getting started with neutron.](#setup)\n4. [Implementation - An under-the-hood peek at what the module is doing.](#implementation)\n5. [Limitations - OS compatibility, etc.](#limitations)\n6. [Development - Guide for contributing to the module](#development)\n7. [Contributors - Those with commits](#contributors)\n8. [Release Notes - Release notes for the project](#release-notes)\n9. [Repository - The project source code repository](#repository)\n\nOverview\n--------\n\nThe neutron module is a part of [OpenStack](https://opendev.org/openstack), an effort by the OpenStack infrastructure team to provide continuous integration testing and code review for OpenStack and OpenStack community projects as part of the core software. The module itself is used to flexibly configure and manage the network service for OpenStack.\n\nModule Description\n------------------\n\nThe neutron module is an attempt to make Puppet capable of managing the entirety of neutron. This includes manifests to provision such things as keystone endpoints, RPC configurations specific to neutron, database connections, and network driver plugins. Types are shipped as part of the neutron module to assist in manipulation of the OpenStack configuration files.\n\nThis module is tested in combination with other modules needed to build and leverage an entire OpenStack installation.\n\nSetup\n-----\n\n**What the neutron module affects:**\n\n* [Neutron](https://docs.openstack.org/neutron/latest/), the network service for OpenStack.\n\n### Installing neutron\n\n    puppet module install openstack/neutron\n\n### Beginning with neutron\n\nTo utilize the neutron module's functionality you will need to declare multiple resources. The following example displays the setting up of an Open vSwitch neutron installation. This is not an exhaustive list of all the components needed. We recommend that you consult and understand the [core openstack](https://docs.openstack.org) documentation to assist you in understanding the available deployment options.\n\n```puppet\nclass { 'neutron':\n  bind_host             =\u003e '127.0.0.1',\n  default_transport_url =\u003e 'rabbit://neutron:passw0rd@localhost:5672/neutron',\n  debug                 =\u003e false,\n}\n\nclass { 'neutron::db':\n  database_connection =\u003e 'mysql+pymysql://neutron:neutron_sql_secret@127.0.0.1/neutron?charset=utf8',\n}\nclass { 'neutron::server':\n}\n\nclass { 'neutron::keystone::authtoken':\n  password =\u003e 'keystone_neutron_secret',\n}\n\n# ml2 plugin with vxlan as ml2 driver and ovs as mechanism driver\nclass { 'neutron::plugins::ml2':\n  type_drivers         =\u003e ['vxlan'],\n  tenant_network_types =\u003e ['vxlan'],\n  vxlan_group          =\u003e '239.1.1.1',\n  mechanism_drivers    =\u003e ['openvswitch'],\n  vni_ranges           =\u003e ['1:300']\n}\n```\n\nOther neutron network drivers include:\n\n* dhcp,\n* metadata,\n* and l3.\n\nThe `examples` directory also provides a quick tutorial on how to use this module.\n\nImplementation\n--------------\n\n### neutron\n\nneutron is a combination of Puppet manifest and ruby code to deliver configuration and extra functionality through *types* and *providers*.\n\n### Types\n\n#### neutron_config\n\nThe `neutron_config` provider is a children of the ini_setting provider. It allows one to write an entry in the `/etc/neutron/neutron.conf` file.\n\n```puppet\nneutron_config { 'DEFAULT/core_plugin' :\n  value =\u003e ml2,\n}\n```\n\nThis will write `core_plugin=ml2` in the `[DEFAULT]` section.\n\n##### name\n\nSection/setting name to manage from `neutron.conf`\n\n##### value\n\nThe value of the setting to be defined.\n\n##### secret\n\nWhether to hide the value from Puppet logs. Defaults to `false`.\n\n##### ensure_absent_val\n\nIf value is equal to ensure_absent_val then the resource will behave as if `ensure =\u003e absent` was specified. Defaults to `\u003cSERVICE DEFAULT\u003e`\n\n\nLimitations\n-----------\n\nThis module supports only the ml2 plugin, and its mechanism drivers listed below.\n\n* Arista\n* Baremetal\n* L2 Population\n* Macvtap\n* Open vSwitch\n* OVN\n* SR-IOV\n\nDevelopment\n-----------\n\nThe puppet-openstack modules follow the OpenStack development model. Developer documentation for the entire puppet-openstack project is at:\n\n* https://docs.openstack.org/puppet-openstack-guide/latest/\n\nContributors\n------------\nThe github [contributor graph](https://github.com/openstack/puppet-neutron/graphs/contributors).\n\nRelease Notes\n-------------\n\n* https://docs.openstack.org/releasenotes/puppet-neutron\n\nRepository\n----------\n\n* https://opendev.org/openstack/puppet-neutron\n","funding_links":[],"categories":["Ruby"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenstack%2Fpuppet-neutron","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopenstack%2Fpuppet-neutron","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenstack%2Fpuppet-neutron/lists"}