{"id":20111455,"url":"https://github.com/openstack/puppet-trove","last_synced_at":"2025-07-27T10:38:37.720Z","repository":{"id":18311684,"uuid":"21490466","full_name":"openstack/puppet-trove","owner":"openstack","description":"OpenStack Trove Puppet Module. Mirror of code maintained at opendev.org.","archived":false,"fork":false,"pushed_at":"2024-12-05T16:02:05.000Z","size":1191,"stargazers_count":40,"open_issues_count":0,"forks_count":13,"subscribers_count":10,"default_branch":"master","last_synced_at":"2024-12-05T17:19:01.632Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://opendev.org/openstack/puppet-trove","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":"2014-07-04T08:24:31.000Z","updated_at":"2024-11-04T20:17:14.000Z","dependencies_parsed_at":"2023-02-10T00:15:39.208Z","dependency_job_id":"7a9d57e1-8dde-40ea-b7b4-894145ac424a","html_url":"https://github.com/openstack/puppet-trove","commit_stats":null,"previous_names":[],"tags_count":106,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpuppet-trove","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpuppet-trove/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpuppet-trove/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpuppet-trove/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/openstack","download_url":"https://codeload.github.com/openstack/puppet-trove/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":230501172,"owners_count":18236061,"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-11-13T18:16:09.788Z","updated_at":"2024-12-19T21:09:05.628Z","avatar_url":"https://github.com/openstack.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"Team and repository tags\n========================\n\n[![Team and repository tags](https://governance.openstack.org/tc/badges/puppet-trove.svg)](https://governance.openstack.org/tc/reference/tags/index.html)\n\n\u003c!-- Change things from this point on --\u003e\n\npuppet-trove\n=============\n\n#### Table of Contents\n\n1. [Overview - What is the trove module?](#overview)\n2. [Module Description - What does the module do?](#module-description)\n3. [Setup - The basics of getting started with trove](#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 trove 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 database service for OpenStack.\n\nModule Description\n------------------\n\nSetup\n-----\n\n**What the trove module affects:**\n\n* [trove](https://docs.openstack.org/trove/latest/), the database service for OpenStack.\n\n### Installing trove\n\n    puppet module install openstack/trove\n\nImplementation\n--------------\n\n### trove\n\ntrove is a combination of Puppet manifest and ruby code to delivery configuration and extra functionality through types and providers.\n\n### Types\n\n#### trove_config\n\nThe `trove_config` provider is a child of the ini_setting provider. It allows one to write an entry in the `/etc/trove/trove.conf` file.\n\n```puppet\ntrove_config { 'DEFAULT/backlog' :\n  value =\u003e 4096,\n}\n```\n\nThis will write `backlog=4096` in the `[DEFAULT]` section.\n\n##### name\n\nSection/setting name to manage from `trove.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#### trove_guestagent_config\n\nThe `trove_guestagent_config` provider is a children of the ini_setting provider. It allows one to write an entry in the `/etc/trove/trove-guestagent.conf` file.\n\n```puppet\ntrove_guestagent_config { 'DEFAULT/trove_auth_url' :\n  value =\u003e http://localhost:5000/v3,\n}\n```\n\nThis will write `trove_auth_url=http://localhost:5000/v3` in the `[DEFAULT]` section.\n\n##### name\n\nSection/setting name to manage from `trove.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\nSecurity\n--------\n\nFor security reasons, a separate in-cloud RabbitMQ cluster should be set up for trove to use. The reason for this is that the guest agent needs to communicate with RabbitMQ, so it is not advisable to give instances access to the same RabbitMQ server that the core OpenStack services are using for communication.\n\nPlease note that puppet-trove cannot check if this rule is being followed, so it is the deployer's responsibility to do it.\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/enovance/puppet-trove/graphs/contributors\n\nRelease Notes\n-------------\n\n* https://docs.openstack.org/releasenotes/puppet-trove\n\nRepository\n----------\n\n* https://opendev.org/openstack/puppet-trove\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenstack%2Fpuppet-trove","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopenstack%2Fpuppet-trove","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenstack%2Fpuppet-trove/lists"}