{"id":13647627,"url":"https://github.com/openstack/puppet-nova","last_synced_at":"2025-04-04T22:07:47.193Z","repository":{"id":7855959,"uuid":"9228014","full_name":"openstack/puppet-nova","owner":"openstack","description":"OpenStack Nova Puppet Module. Mirror of code maintained at opendev.org.","archived":false,"fork":false,"pushed_at":"2025-03-10T16:45:16.000Z","size":5620,"stargazers_count":72,"open_issues_count":0,"forks_count":125,"subscribers_count":17,"default_branch":"master","last_synced_at":"2025-03-18T00:07:44.305Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://opendev.org/openstack/puppet-nova","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-04-04T21:04:22.000Z","updated_at":"2025-03-10T16:45:20.000Z","dependencies_parsed_at":"2023-09-22T11:34:24.363Z","dependency_job_id":"c213c5b0-00eb-4d49-8cb7-0d27371e74c4","html_url":"https://github.com/openstack/puppet-nova","commit_stats":null,"previous_names":[],"tags_count":162,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpuppet-nova","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpuppet-nova/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpuppet-nova/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpuppet-nova/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/openstack","download_url":"https://codeload.github.com/openstack/puppet-nova/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247256112,"owners_count":20909240,"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.733Z","updated_at":"2025-04-04T22:07:47.173Z","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-nova.svg)](https://governance.openstack.org/tc/reference/tags/index.html)\n\n\u003c!-- Change things from this point on --\u003e\n\nnova\n====\n\n#### Table of Contents\n\n1. [Overview - What is the nova module?](#overview)\n2. [Module Description - What does the module do?](#module-description)\n3. [Setup - The basics of getting started with nova](#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. [Release Notes - Release notes for the project](#release-notes)\n8. [Contributors - Those with commits](#contributors)\n9. [Repository - The project source code repository](#repository)\n\nOverview\n--------\n\nThe nova 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 its self is used to flexibly configure and manage the compute service for OpenStack.\n\nModule Description\n------------------\n\nThe nova module is a thorough attempt to make Puppet capable of managing the entirety of nova.  This includes manifests to provision such things as keystone endpoints, RPC configurations specific to nova, and database connections.  Types are shipped as part of the nova module to assist in manipulation of configuration files.\n\nThis module is tested in combination with other modules needed to build and leverage an entire OpenStack software stack.\n\nSetup\n-----\n\n**What the nova module affects:**\n\n* [Nova](https://docs.openstack.org/nova/latest/), the compute service for OpenStack.\n\n### Installing nova\n\n    puppet module install openstack/nova\n\n### Beginning with nova\n\nTo utilize the nova module's functionality you will need to declare multiple resources. This is not an exhaustive list of all the components needed, we recommend you consult and understand the [core openstack](https://docs.openstack.org) documentation.\n\n```puppet\nclass { 'nova':\n  database_connection     =\u003e 'mysql://nova:a_big_secret@127.0.0.1/nova?charset=utf8',\n  api_database_connection =\u003e 'mysql://nova:a_big_secret@127.0.0.1/nova_api?charset=utf8',\n  default_transport_url   =\u003e 'rabbit://nova:an_even_bigger_secret@127.0.0.1:5672/nova',\n}\n\nclass { 'nova::compute':\n  enabled                       =\u003e true,\n  vnc_enabled                   =\u003e true,\n}\n\nclass { 'nova::compute::libvirt':\n  migration_support =\u003e true,\n}\n```\n\nImplementation\n--------------\n\n### nova\n\nnova is a combination of Puppet manifest and ruby code to delivery configuration and extra functionality through types and providers.\n\n### Types\n\n#### nova_config\n\nThe `nova_config` provider is a children of the ini_setting provider. It allows one to write an entry in the `/etc/nova/nova.conf` file.\n\n```puppet\nnova_config { 'DEFAULT/my_ip' :\n  value =\u003e '192.0.2.1',\n}\n```\n\nThis will write 'my_ip=192.0.2.1' in the `[DEFAULT]` section.\n\n##### name\n\nSection/setting name to manage from `nova.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\nLimitations\n-----------\n\n* Supports libvirt and vmware compute drivers.\n* Tested on EL and Debian derivatives.\n\nDevelopment\n-----------\n\nDeveloper documentation for the entire puppet-openstack project.\n\n* https://docs.openstack.org/puppet-openstack-guide/latest/\n\nRelease Notes\n-------------\n\n* https://docs.openstack.org/releasenotes/puppet-nova\n\nContributors\n------------\n\n* https://github.com/openstack/puppet-nova/graphs/contributors\n\nRepository\n----------\n\n* https://opendev.org/openstack/puppet-nova\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenstack%2Fpuppet-nova","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopenstack%2Fpuppet-nova","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenstack%2Fpuppet-nova/lists"}