├── .gitignore ├── .gitreview ├── .pdkignore ├── .zuul.yaml ├── CHANGELOG.md ├── CONTRIBUTING.rst ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── bindep.txt ├── doc └── requirements.txt ├── examples ├── nova_with_pacemaker.pp └── nova_wsgi.pp ├── lib ├── facter │ └── libvirt_uuid.rb └── puppet │ ├── functions │ ├── encode_url_queries_for_python.rb │ └── to_array_of_json_strings.rb │ ├── provider │ ├── libvirtd_config │ │ └── ini_setting.rb │ ├── nova.rb │ ├── nova_aggregate │ │ └── openstack.rb │ ├── nova_api_metadata_uwsgi_config │ │ └── ini_setting.rb │ ├── nova_api_paste_ini │ │ └── ini_setting.rb │ ├── nova_api_uwsgi_config │ │ └── ini_setting.rb │ ├── nova_cell_v2 │ │ └── nova_manage.rb │ ├── nova_config │ │ └── openstackconfig.rb │ ├── nova_flavor │ │ └── openstack.rb │ ├── nova_rootwrap_config │ │ └── ini_setting.rb │ ├── nova_service │ │ └── openstack.rb │ ├── qemu_config │ │ └── ini_setting.rb │ ├── virtlockd_config │ │ └── ini_setting.rb │ ├── virtlogd_config │ │ └── ini_setting.rb │ ├── virtnodedevd_config │ │ └── ini_setting.rb │ ├── virtproxyd_config │ │ └── ini_setting.rb │ ├── virtqemud_config │ │ └── ini_setting.rb │ ├── virtsecretd_config │ │ └── ini_setting.rb │ └── virtstoraged_config │ │ └── ini_setting.rb │ └── type │ ├── libvirtd_config.rb │ ├── nova_aggregate.rb │ ├── nova_api_metadata_uwsgi_config.rb │ ├── nova_api_paste_ini.rb │ ├── nova_api_uwsgi_config.rb │ ├── nova_cell_v2.rb │ ├── nova_config.rb │ ├── nova_flavor.rb │ ├── nova_rootwrap_config.rb │ ├── nova_service.rb │ ├── qemu_config.rb │ ├── virtlockd_config.rb │ ├── virtlogd_config.rb │ ├── virtnodedevd_config.rb │ ├── virtproxyd_config.rb │ ├── virtqemud_config.rb │ ├── virtsecretd_config.rb │ └── virtstoraged_config.rb ├── manifests ├── api.pp ├── availability_zone.pp ├── cache.pp ├── cell_v2 │ ├── discover_hosts.pp │ ├── map_cell0.pp │ ├── map_cell_and_hosts.pp │ ├── map_instances.pp │ └── simple_setup.pp ├── cinder.pp ├── client.pp ├── compute.pp ├── compute │ ├── image_cache.pp │ ├── ironic.pp │ ├── libvirt.pp │ ├── libvirt │ │ ├── config.pp │ │ ├── libvirtd.pp │ │ ├── networks.pp │ │ ├── qemu.pp │ │ ├── secret_ceph.pp │ │ ├── services.pp │ │ ├── version.pp │ │ ├── virtlockd.pp │ │ ├── virtlogd.pp │ │ ├── virtnodedevd.pp │ │ ├── virtproxyd.pp │ │ ├── virtqemud.pp │ │ ├── virtsecretd.pp │ │ └── virtstoraged.pp │ ├── libvirt_guests.pp │ ├── mdev.pp │ ├── mdev_type.pp │ ├── pci.pp │ ├── provider.pp │ ├── rbd.pp │ ├── serial.pp │ └── spice.pp ├── conductor.pp ├── config.pp ├── consoleauth.pp ├── cors.pp ├── cron │ ├── archive_deleted_rows.pp │ └── purge_shadow_tables.pp ├── db.pp ├── db │ ├── mysql.pp │ ├── mysql_api.pp │ ├── online_data_migrations.pp │ ├── postgresql.pp │ ├── postgresql_api.pp │ ├── sync.pp │ └── sync_api.pp ├── deps.pp ├── generic_service.pp ├── glance.pp ├── init.pp ├── ironic │ └── common.pp ├── key_manager.pp ├── key_manager │ ├── barbican.pp │ └── barbican │ │ └── service_user.pp ├── keystone.pp ├── keystone │ ├── auth.pp │ ├── authtoken.pp │ └── service_user.pp ├── limit.pp ├── logging.pp ├── metadata.pp ├── migration │ ├── libvirt.pp │ └── qemu.pp ├── network │ └── neutron.pp ├── os_brick.pp ├── params.pp ├── pci.pp ├── placement.pp ├── policy.pp ├── quota.pp ├── reports.pp ├── scheduler.pp ├── scheduler │ └── filter.pp ├── serialproxy.pp ├── spicehtml5proxy.pp ├── vendordata.pp ├── vncproxy.pp ├── vncproxy │ └── common.pp ├── workarounds.pp └── wsgi │ ├── apache_api.pp │ ├── apache_metadata.pp │ ├── uwsgi_api.pp │ └── uwsgi_api_metadata.pp ├── metadata.json ├── releasenotes ├── notes │ ├── Add-new-vendordata-plugin-support-6880c73c27c87d74.yaml │ ├── Add-nova-placement-interface-config-option-cc6d444666f00111.yaml │ ├── Add-novajoin-auth-and-authtoken-settings-9cf98dc1a84bab26.yaml │ ├── Add-parameter-to-set-notification-format-861daec4cdb76e38.yaml │ ├── Use-novajoin-specific-user-and-directory-2141e8c0bfc68c24.yaml │ ├── access_log_env_var-d2d8ed2f6d542276.yaml │ ├── add-all-cells-archive-cron-065604f9953191ea.yaml │ ├── add-api-config-to-api-group-8713a9df13e84571.yaml │ ├── add-before-archive-cron-17b6ea01aaaa5156.yaml │ ├── add-cache-config-parameters-1e2229398720f77e.yaml │ ├── add-cell0-db-postgresql-8bb48f15e4e77554.yaml │ ├── add-cells-v1-deprecation-0f3aaa22f83b06e0.yaml │ ├── add-cinder-creds-91a50b74c8bdb541.yaml │ ├── add-console-ssl-cipher-protocol-params-2ad72898a85dbe17.yaml │ ├── add-cors-support-773226c628d06da6.yaml │ ├── add-cpu-weigher-49b610ff9a57695e.yaml │ ├── add-cross-az-attach-parameters-3ebc84f8882dd941.yaml │ ├── add-glance-image-verification-parameter-456df02dd26552d3.yaml │ ├── add-libvirt-live_migration_timeout_action-ba86ca0d5b25ba90.yaml │ ├── add-libvirtd-config-resource-d8b75e542769c138.yaml │ ├── add-libvirtd-host_uuid-ff1ab95e4586d176.yaml │ ├── add-live-migration-inbound-addr-and-scheme-b5f864ce3f0e58f9.yaml │ ├── add-log_file-for-logging-ab53c751b895dc0d.yaml │ ├── add-max_placement_results-be501252f1113d5e.yaml │ ├── add-nova-db-online-data-migrations-586a6f3c23dfefcb.yaml │ ├── add-nova-glance-valid_interfaces-ff6d123e075f7aee.yaml │ ├── add-nova-vnc-ssl-params-691909b8a2f2e18e.yaml │ ├── add-novajoin-support-63a21b983ec5704d.yaml │ ├── add-patch-config-407a53a9bb59e86c.yaml │ ├── add-poll-parameters-ironic-api-e4cbcc3c65291c3b.yaml │ ├── add-pool_timeout-option-for-db-a9c5bbeb7d243d5d.yaml │ ├── add-purge-to-cron-9b7c80e3e915fb4f.yaml │ ├── add-until-complete-archive-cron-f4e3ed2dfee64c5c.yaml │ ├── add-use_journal-option-for-logging-bd5e9e7654833c44.yaml │ ├── add-vendordata_dynamic_failure_fatal-e19eade6e6be79b2.yaml │ ├── add-workarounds-disable_compute_service_check_for_ffu-4c4cc458df3ca33b.yaml │ ├── add-workarounds-enable_qemu_monitor_announce_self-9e307efdb0061fce.yaml │ ├── add_MultiStrOpt_for_scheduler_available_filters-dc4b95337739526e.yaml │ ├── add_api_database_parameters-bab34198427af74b.yaml │ ├── add_cache_hashclient_retry_options-d0ce282343bb7fe9.yaml │ ├── add_cache_retry_options-0c96612c73d576cf.yaml │ ├── add_cell_v2_provider-d1e6f8226ae3401e.yaml │ ├── add_compute_default_ephemeral_format-c30f5463c1616903.yaml │ ├── add_compute_image_type_exclude_list-8e03916b7e4e4bf6.yaml │ ├── add_compute_monitors_option-454ba8fcc2d28744.yaml │ ├── add_compute_update_resources_interval_option-d09c6c88a99da827.yaml │ ├── add_db_sync_timeout-88f19f3a5c9f8a42.yaml │ ├── add_default_access_ip_network_name_option-9a20786776d0d402.yaml │ ├── add_enable_new_services_parameter-0174ea25ea8b5de7.yaml │ ├── add_flavor_provider-a7e12b6c3e9ca80f.yaml │ ├── add_images_type-d922a1886acdcd12.yaml │ ├── add_keepalive_options-3802510b6d4461e1.yaml │ ├── add_libvirt_hw_machine_type_parameter-a385e959c6aea16d.yaml │ ├── add_live_migration_with_native_tls-4293ca305e98cdc3.yaml │ ├── add_max_disk_devices_to_attach-061c48948416d8c5.yaml │ ├── add_messaging_default_parameters-51a35df791986123.yaml │ ├── add_migration_qemu_class-3b3386696dd597c2.yaml │ ├── add_migration_tunnelled_option-1314af56e1ff129c.yaml │ ├── add_mkisofs_cmd-9498e4d3b913a72a.yaml │ ├── add_more_image_related_options-37d640d3f76adbbd.yaml │ ├── add_more_instance_timeout_options-3f7f6f99a921ac71.yaml │ ├── add_more_migration_parameters-46291332615deb4f.yaml │ ├── add_mysql_enable_ndb-option-b20b3aee3ac8b604.yaml │ ├── add_nova_api_db-62e459588e14a92e.yaml │ ├── add_oslo_messaging_amqp-28dae136aba44f5d.yaml │ ├── add_ovsdb_connection_parameter-2f5ffa9e6e00ab42.yaml │ ├── add_pci_alias_compute-a7780fa3181e7749.yaml │ ├── add_pmem_namespaces-7c425a8c65ecd119.yaml │ ├── add_preallocate_images_option-24711e88218b09ca.yaml │ ├── add_qemu_nbd_parameters-f8b975e695d6efd9.yaml │ ├── add_rabbit_kombu_options-b43953e81f9516c0.yaml │ ├── add_reserved_huge_pages-883f6feb4e274814.yaml │ ├── add_resize_confirm_window_parameter-e89c246e2f0f9d85.yaml │ ├── add_resume_guests_state_on_host_boot_parameter-2fb7177a2898aed8.yaml │ ├── add_running_deleted_instance_options-060792280c684273.yaml │ ├── add_snapshot_image_format_option-a81397f91365e226.yaml │ ├── add_snapshots_directory_option-f67c0b93bb6b6d38.yaml │ ├── add_sync_power_state_pool_size_param-e61b3860a4e9b806.yaml │ ├── add_tls_options-9f4cd19db6a76a76.yaml │ ├── add_transport_url_parameters-162e824d6f048262.yaml │ ├── add_watch_log_file-option-935931045c6c0498.yaml │ ├── aggregate-unset-support-445c9a3794ca33d6.yaml │ ├── allow_resize_to_same_host_in_nova_api-b9c171d80404e009.yaml │ ├── amqp_auto_delete-c452bf98830afe1a.yaml │ ├── apache-headers-16bebb9da1fb6cb6.yaml │ ├── api-cell-params-e396713c6232705d.yaml │ ├── api_key_backend-c1cd58916c1ba43b.yaml │ ├── api_paste_ini-separator-6e3ea618663fcf0d.yaml │ ├── archive-sleep-c3de94ddd2066c01.yaml │ ├── archive_deleted_rows-task_log-39777328b2fbd8ee.yaml │ ├── authtoken-049381ec171680e4.yaml │ ├── authtoken_manage_memcache_package-66fdfb8c4204bbe9.yaml │ ├── barbican-356c86ac7a7a327c.yaml │ ├── barbican_service_user-887eb51cb8e9efce.yaml │ ├── block_device_allocate_retries-a12f17bd0121ef7d.yaml │ ├── bug-1853845-a1e25645af26242b.yaml │ ├── bug-1967713-69f905709f4410a5.yaml │ ├── bug-2012747-36e40b85697e7eb7.yaml │ ├── bug-2042383-76b5bd1579f9310d.yaml │ ├── bug-2067867-2ad9041975cff1b2.yaml │ ├── cache-backend-expiration-time-bc59320127854b52.yaml │ ├── cache-memcache-sasl-eaefc7d8d310d4da.yaml │ ├── cache-redis-opts-963910910cddfc94.yaml │ ├── cache-rename-hashclient-params-492c9f2d3fa0f00c.yaml │ ├── cap_workers-586a6d2168ddabca.yaml │ ├── cell_v2-additional-commands-7c2a455c9eb722d1.yaml │ ├── cell_v2-simple-cell-setup-025a90918590c872.yaml │ ├── cell_worker_thread_pool_size-0b0cb310bbcfcdbe.yaml │ ├── cellsv1-quota-driver-24498d3b83e9e824.yaml │ ├── centos-9-support-2402954dc9a017e3.yaml │ ├── change-purge-all-for-retention-policy-ff352f29c129844f.yaml │ ├── change_modular_libvirt_default_rhel-5984f51659edf2ec.yaml │ ├── cinder-http_retries-9e53569312f18cb8.yaml │ ├── cinder-parameters-62b1a4f2a3a8e4b8.yaml │ ├── cinder-region_name-5385736bf050dde3.yaml │ ├── clean-up-novaoin-api-494d685dde2fc108.yaml │ ├── clean-up-scheduler-filter-26406c2aabe92ea9.yaml │ ├── cleanup-baremetal-scheduling-opts-250e52ff28ae2fc3.yaml │ ├── cleanup-image_cache-opts-ebecdd4a18769dd3.yaml │ ├── cleanup-keymgr-6c936ff590a5226a.yaml │ ├── cleanup-neutron-opts-2471ddec1148f7ac.yaml │ ├── cleanup-nova-compute-libvirt-d109949308bb292d.yaml │ ├── cleanup-scheduler-opts-e8b8be670fba3f3c.yaml │ ├── compute-cpu-shared-set-30e2394d1af2dd47.yaml │ ├── compute-flat-injected-f6aafc9e59ab2728.yaml │ ├── compute-image_cache-11d66c225ce11596.yaml │ ├── compute-libvirt-cpu_models-55755b320b7a0379.yaml │ ├── compute-libvirt-guests-b51fdee7cf4d0289.yaml │ ├── compute-libvirt-max_queues-97a35922dbacb0b1.yaml │ ├── compute-libvirt-num_memory_encrypted_guests-cdd63ade872a1a01.yaml │ ├── compute-libvirt-os_service_default-9f5b72036276e9b1.yaml │ ├── compute-libvirt-rename-params-663631444f02c946.yaml │ ├── compute-max_concurrent_builds-5766b153dc9c0596.yaml │ ├── configure-build-disable-threshold-41d0ba2f8259d467.yaml │ ├── configure_service-2e5f1ad74f9adbdc.yaml │ ├── consistent-project-name-40ef75b7e11461f4.yaml │ ├── console-port-interger-2e902534adfec564.yaml │ ├── console_allowed_origins-440032ce51e96ab1.yaml │ ├── consoleauth-81bf3f52259e2468.yaml │ ├── count_usage_from_placement-0dfdb5b464d68f63.yaml │ ├── cpu-resources-39ce2f92ae6395ae.yaml │ ├── cpu_mode-for-virt_type=qemu-is-now-none-da2f1ada88d6d2c0.yaml │ ├── cpu_power-7ab984e60ac79eee.yaml │ ├── cron-archive-verbose-9ad22f6d02bb9ad5.yaml │ ├── cross_az_attach-in-cinder-2f13b4fce6a11f4d.yaml │ ├── custom_provider-29467d209802707d.yaml │ ├── default_domain-c3a77897aa75ab0d.yaml │ ├── delayed_nova_compute-23fe926e73fb3717.yaml │ ├── deprecate-client-cad4cec8032c789b.yaml │ ├── deprecate-compute-allow_resize_to_same_host-531b5d36ac13a29a.yaml │ ├── deprecate-compute-virtio_nic-004dcfb3791f17b4.yaml │ ├── deprecate-config_drive_format-967c9ff273dc854b.yaml │ ├── deprecate-consoleauth-7c39573925d3f6a7.yaml │ ├── deprecate-hypervisors-d820752c9d739bbe.yaml │ ├── deprecate-install-bridge-utils-141a24413b42cb0b.yaml │ ├── deprecate-install_cinder_client-9b5bc4f9f0ab416e.yaml │ ├── deprecate-live_migration_tunnelled-b1faa98b2f905d9b.yaml │ ├── deprecate-logging-in-init-3031e31ec5362e2c.yaml │ ├── deprecate-mdev_types_device_addresses_mapping-ecad870d64b3355d.yaml │ ├── deprecate-monkey_patch-8938ba80e7f2a339.yaml │ ├── deprecate-neutron-parameters-with-neutron-prefix-bffb514213fee792.yaml │ ├── deprecate-nova-console-e838b5bd58bdec61.yaml │ ├── deprecate-nova-network-quota-opts-dbdb1fc2e454ed83.yaml │ ├── deprecate-nova_floating-8d507b9214b2440d.yaml │ ├── deprecate-novajoin-c602cca8f07083cc.yaml │ ├── deprecate-num_memory_encrypted_guests-b92cf74a810ab8f6.yaml │ ├── deprecate-opts-for-standalone-api-2fb16814a77706f7.yaml │ ├── deprecate-passthrough-cdb90e96a74b6b79.yaml │ ├── deprecate-periodic_interval-2e57ffd7ce5decae.yaml │ ├── deprecate-query_placement_for_availability_zone-ce9c55a316a37ec6.yaml │ ├── deprecate-rabbit_heartbeat_in_pthread-213cca7f00274660.yaml │ ├── deprecate-ratelimit-a72ec8a2efc36e00.yaml │ ├── deprecate-removed-api-opts-47cc2cd25e9cf286.yaml │ ├── deprecate-removed-quota-opts-4827f4022a67d06b.yaml │ ├── deprecate-scheduler-periodic_task_interval-ca35e588c0cbe546.yaml │ ├── deprecate-scheduler_driver-8f2c60797709ad9a.yaml │ ├── deprecate-service-validation-30764e37f030aa9a.yaml │ ├── deprecate-upgrade_level_cert-6f7dc745cd652300.yaml │ ├── deprecate-upgrade_level_network-64301c66337d1ad0.yaml │ ├── deprecate-use_forwarded_for-d6b8f36bb949c051.yaml │ ├── deprecate-vmwareapi-8cc3f06ae45e6c2d.yaml │ ├── deprecate-watch_log_file-761812f9f9d1352c.yaml │ ├── deprecate_allow_insecure_clients-option-b5c923ad2661efc2.yaml │ ├── deprecate_auth_strategy-87bf439647037fbd.yaml │ ├── deprecate_auth_uri_parameter-82edf8271e3c276f.yaml │ ├── deprecate_cells_driver_option-3412a439fd137186.yaml │ ├── deprecate_database_min_pool_size-option-835cc30972dcd09c.yaml │ ├── deprecate_database_options-8caf6460b39a132a.yaml │ ├── deprecate_default_floating_pool-option-135a356e97f234d7.yaml │ ├── deprecate_fping_path_parameter-1d21fd37491db26f.yaml │ ├── deprecate_glance_api_servers-ae08e65b7ebac688.yaml │ ├── deprecate_idle_timeout_parameter-93d5ad93f8e43c2c.yaml │ ├── deprecate_image_service-3e54aa3283b3191c.yaml │ ├── deprecate_keymap_parameter-21b89e7b5d84ee21.yaml │ ├── deprecate_live_migration_progress_timeout-1892fd37e5761891.yaml │ ├── deprecate_migration_flags_parameters-41ef9156a4e77121.yaml │ ├── deprecate_network_api_class-557e9ac007c97feb.yaml │ ├── deprecate_notify_api_faults_parameter-f4110213f28e8596.yaml │ ├── deprecate_notify_on_api_faults-c7eb47adc3c92671.yaml │ ├── deprecate_os_region_name_parameter-a12b9e7b5d8cee38.yaml │ ├── deprecate_osapi_v3-6078cf5878b94265.yaml │ ├── deprecate_pki_related_parameters-bb4a91ed4d5068a5.yaml │ ├── deprecate_placement_deployment-2497e35aa7089a92.yaml │ ├── deprecate_revocation_cache_time_parameter-9f91fd37091db26f.yaml │ ├── deprecate_rpc_backend_parameter-4ba7bbc47d3df140.yaml │ ├── deprecate_scheduler_default_filters-79cade007780030f.yaml │ ├── deprecate_signing_dir_parameter-8131a23ef45d3113.yaml │ ├── deprecate_v3_params-94268c3453b4712b.yaml │ ├── deprecate_wsdl_location_option-23981a34fe891d36.yaml │ ├── deprecated-neutron-options-c506d893a1529ed5.yaml │ ├── deprecated-nova-network-1480284ccb3b93cf.yaml │ ├── deprecated_parameters-1275a2c1e42ad145.yaml │ ├── deprecating_management_of_rabbit_resources-e3ee5ea5ca7f3c18.yaml │ ├── dev_spice_proxy_url-b2cd58b9e3f96e2c.yaml │ ├── disable-apache-ssl-14a2e2c2c4d89dee.yaml │ ├── disable-live-migration-with-numa-66145efd46bdd146.yaml │ ├── discover_hosts_in_cells_interval-fcee1903fdaa4684.yaml │ ├── drop-fedora-6722ae14b04142a4.yaml │ ├── drop_qpid-e7e47f8525c6db6b.yaml │ ├── ed25519-key-ce510b4bbbd172b5.yaml │ ├── enable_cancel_on_failover-c44f0371af73613a.yaml │ ├── enable_perf_events-448c7c10e8965286.yaml │ ├── enabled_apis-55985bb85989601c.yaml │ ├── executor_thread_pool_size-8ad5ffa07de7b44d.yaml │ ├── extra_cpu_flags-2de6915770ac9514.yaml │ ├── fallback_to_redhat_intelligently-d3a158ae263f6103.yaml │ ├── filter-scheduler-multiplier-bobcat-04583f97be576173.yaml │ ├── fix-inconsistent-wsgi-apache-params-dfc0ecb5cf59efe3.yaml │ ├── fix-migration-libvirt-manage-service-3d205cd3772650b7.yaml │ ├── fix-pci-config-params-bfa54021a532c237.yaml │ ├── fix-quota-class-898e279b0b2251df.yaml │ ├── fix_log_dir_documentation-293f082d64a379f2.yaml │ ├── fix_region_name_in_providers-a0a3b7c579d163dc.yaml │ ├── fix_vncserver_listen-e48f7c8b9cda25e4.yaml │ ├── generic-mdevs-627ccb29320cd442.yaml │ ├── glance-num_retries-37361ce8905d01c8.yaml │ ├── glance-opts-cleanup-47de15f1bcd3a1b3.yaml │ ├── glance_image_copy-b4f888c8f981e6b3.yaml │ ├── httpd-logs-piped-syslog-ecd9fdbb8811c5ce.yaml │ ├── image-download-via-rbd-159f6ccd7fada555.yaml │ ├── implement_openstack_client_for_providers-5c83fdf2128197cb.yaml │ ├── independent-class-for-glance-0d62d05fe2477036.yaml │ ├── initial_allocation_ratio-27a45a6616382559.yaml │ ├── ironic-distribution-b36df55db3d952e5.yaml │ ├── ironic-more-opts-820a0c30817042b0.yaml │ ├── key-manager-session-options-a3cf6f292d5d0879.yaml │ ├── keymgr-opts-415025c5134a413b.yaml │ ├── keystone-auth-name-211cfa37fbe78c8c.yaml │ ├── keystone-authtoken-interface-eb3ffd7e39795f95.yaml │ ├── keystone-authtoken-service_type-6b60c7d5840cbefe.yaml │ ├── keystone-parameters-2222c1f0038d641b.yaml │ ├── keystone-service_type-b8615b63ba5ff197.yaml │ ├── keystone_authtoken-service_token_roles-12dbba5484efb7c6.yaml │ ├── keystone_v3_neutron-62f3f801039ddcc8.yaml │ ├── libvirt-ca-file-crl-file-c6672aa3d12382cb.yaml │ ├── libvirt-daemon-1cfe1bd9f29708fe.yaml │ ├── libvirt-device_detach-4873688e044e1aaf.yaml │ ├── libvirt-enabled-perf-events-fix-79be68140b4e9a81.yaml │ ├── libvirt-ensure_package-6136e2ae53a04974.yaml │ ├── libvirt-guests-params-e895c3e8d59384a3.yaml │ ├── libvirt-migration-downtime-1e9c2df595bb5cd3.yaml │ ├── libvirt-networks-742a45231f4ffdb3.yaml │ ├── libvirt-nfs_mount_point_base-c3349d11dcb6eae7.yaml │ ├── libvirt-num_volume_scan_tries-505bfb29de5dd468.yaml │ ├── libvirt-opts-cleanup-e0a0895882303e6f.yaml │ ├── libvirt-opts-further-cleanup-822207eb74910cff.yaml │ ├── libvirt-ovs_timeout-832a00ff71950dd3.yaml │ ├── libvirt-qemu-group-8430caa099147529.yaml │ ├── libvirt-qemu-limits-efb8668de1de48e8.yaml │ ├── libvirt-rbd-opts-95622d49f17bb5d1.yaml │ ├── libvirt-secret-ceph-b4b11706463f13c6.yaml │ ├── libvirt-swtpm-4306f35771b7d253.yaml │ ├── libvirt-systemd-socket-units-f7b0fc3a4f3c5219.yaml │ ├── libvirt-tls-key-and-cert-539e13253c28453d.yaml │ ├── libvirt-virtlogd-f4e2618a87fbab5a.yaml │ ├── libvirt-volume_enforce_multipath-14f9b3a1fb1473d2.yaml │ ├── libvirt-wait_soft_reboot_seconds-596390a15caf1c1e.yaml │ ├── libvirt_listen_address-ee1f4a0bef0c5bd1.yaml │ ├── libvirt_num_pcie_ports-427923117bd13a65.yaml │ ├── libvirt_sysinfo_serial-e1603d45446726c3.yaml │ ├── libvirtd-class-88111b4a2aa40336.yaml │ ├── libvirtd-log-outputs-cd93433d0bfe2e63.yaml │ ├── libvirtd-resource-types-e4feb2419dccc39a.yaml │ ├── libvirtd_log_filters-22e461e00f482d69.yaml │ ├── libvirtd_tls_priority-1e66515aa1da7977.yaml │ ├── libvit_micro_service-ba1cd4ad8bda4e0d.yaml │ ├── live_migration_bandwidth-a1c4e2f778cc542d.yaml │ ├── live_migration_inbound_addr_with_params-3529d460d5047c80.yaml │ ├── live_migration_parallel_connections-5f21da8af9d1416e.yaml │ ├── live_migration_ssh-00596d9c92a76759.yaml │ ├── live_migration_wait_for_vif_plug-b50f7840c4da6659.yaml │ ├── local_metadata_per_cell-5b8f56d8d97510a3.yaml │ ├── log-json-97ad59aa72f31a67.yaml │ ├── long_rpc_timeout-c7f3374055798971.yaml │ ├── manage-backend-param-b29e0be3dd8e14c3.yaml │ ├── max_request_body_size-97fb21a434aa250b.yaml │ ├── mdev-max_instances-eeba30ae38b782b4.yaml │ ├── mdev-opts-f0f62793096d890c.yaml │ ├── memcache_pool_flush_on_reconnect-a1bece77d65d68a1.yaml │ ├── memcache_socket_timeout-babb40e8ed001caf.yaml │ ├── migrate-parameters-to-nova-scheduler-58e73aede02f712b.yaml │ ├── migrate-policy-format-from-json-to-yaml-878c644d4a059c3e.yaml │ ├── migrate-verify_glance_signatures-3fbef6e4f0d7f49f.yaml │ ├── migration-libvirt-cleanup-6cf91ed5dd736420.yaml │ ├── migration_inbound_addr-2a6ee64ed0cc20b5.yaml │ ├── mitaka_drepecations-704e9befd68c3c6d.yaml │ ├── mitaka_features-ddeb388524fa6590.yaml │ ├── modular-libvirt-52048e6e9935c25c.yaml │ ├── move-instance_name_template-to-base-52516c9df907a8c6.yaml │ ├── move-pci-config-to-pci-group-441c47b2d1c36837.yaml │ ├── move-scheduler-ratios-to-top-level-76c6383d828e6d4a.yaml │ ├── neutron-http_retries-1fb5670b592e863f.yaml │ ├── neutron-service_type-1c16eae07b330f87.yaml │ ├── new-placement-package-handling-e7870bfe4132782f.yaml │ ├── newton_deprecations-10bab2059dd30043.yaml │ ├── newton_deprecations2-397e84f01b7a283e.yaml │ ├── notification-retry-a81525af6695b76b.yaml │ ├── nova-aggregate-hosts-fd40d74a46193941.yaml │ ├── nova-api-dhcp_domain-1e9cc68843aaaa35.yaml │ ├── nova-api-instance_name_template-default-01fb4a333ff60e19.yaml │ ├── nova-cert-72762e4f0850ad58.yaml │ ├── nova-compute-rbd-libvirt-secret-2c78325557a27411.yaml │ ├── nova-ironic-common-api_endpoint-be452cc86092eb4d.yaml │ ├── nova-ironic-common-region_name-4ba5bacbfdf5ed47.yaml │ ├── nova-ironic-common-updates-c855c6e82281de9d.yaml │ ├── nova-manage-user-16e7145d0c10bf57.yaml │ ├── nova-net-deprecation-349848b17e43b217.yaml │ ├── nova-placement-30566167309fd124.yaml │ ├── nova-placement-remove-deprecate-os_region-os_interface-c317fe197b186877.yaml │ ├── nova-placement-remove-os_interface-5b02ab5f968b94b7.yaml │ ├── nova-remove-deprecated-fa7d74be4fe4dcf9.yaml │ ├── nova-scheduler-filter-defaults-23de047328dfd629.yaml │ ├── nova-scheduler-filter-prefix-b3753153ab9e0f87.yaml │ ├── nova-utilities-ea3f8c15895cb820.yaml │ ├── nova_file_backed_memory_and_memory_backing_dir_support_for_qemu-a4cde7ab5297f3ac.yaml │ ├── nova_flavor-project_name-fbab75b57ad9d4b3.yaml │ ├── nova_libvirt_max_client_requests-1709c1d7a282264d.yaml │ ├── nova_libvirt_mem_stats_period_seconds-679de08855e07254.yaml │ ├── nova_libvirt_nfs_mount_options_support-97b15b09475b5b21.yaml │ ├── nova_metadata_deprecate_enabled_apis-1ec89bc5bee440ff.yaml │ ├── nova_metadata_deprecate_oslo_middleware-cf582b1dac0f0822.yaml │ ├── nova_metadata_wsgi-445c38efc7ba5f41.yaml │ ├── nova_network_provider-10b28e14d9db08f0.yaml │ ├── nova_scheduler_enable_isolated_aggregate_filtering-ccadc597f556db7d.yaml │ ├── nova_scheduler_limit_tenants_to_placement_aggregate-8886c514f0ebbb72.yaml │ ├── nova_scheduler_placement_aggregate_required_for_tenants-362ddd5777c44ab4.yaml │ ├── nova_scheduler_query_placement_for_availability_zone-701dcf6b0662351e.yaml │ ├── nova_service_provider-f9c1dc94c575692c.yaml │ ├── novajoin-authtoken-params-f5b5a77a39e7eccd.yaml │ ├── novajoin-common-auth-parameters-1d77e8a770041548.yaml │ ├── novajoin-policy-2c219cf32a322d4b.yaml │ ├── novnc-opts-877778502b8db25d.yaml │ ├── novncproxy_base_url-ec29bb6c3092a43b.yaml │ ├── numa-aware-vswitches-896f6d3bf8c8c123.yaml │ ├── openstack_db_tag-b26aeeb1ec92e5a0.yaml │ ├── os_brick-d7164dfcb0319654.yaml │ ├── os_workers_for_worker_count-46575cd2d0872cff.yaml │ ├── oslo-limit-query-endpoint-options-2d605f7a1450a054.yaml │ ├── oslo-reports-34324f27e342aa40.yaml │ ├── oslo_policy-enforce_scope-bf46392b4cb2055e.yaml │ ├── pci-report_in_placement-ad971d181e6d3c4f.yaml │ ├── pci_params_format-bf62bf47585ad1cc.yaml │ ├── periodic_fuzzy_delay-0e21c3c4235aa399.yaml │ ├── pike-cpu-removal-0cbcbf286de46228.yaml │ ├── policy-dirs-6f828a3a98b81a9f.yaml │ ├── policy-enforce_new_defaults-fe3556fffe458f34.yaml │ ├── policy_default_rule-1d34663bc7bcfa52.yaml │ ├── policy_purge_config-6b6302d91f8d58a9.yaml │ ├── prepare-to-change-apache-ssl-571d079722b20702.yaml │ ├── properties-hash-1d78c19fa202742b.yaml │ ├── provider-system-scope-f4b1966755c2277e.yaml │ ├── puppet-8-977d2b53da7fa8bd.yaml │ ├── puppet4-mysql-func-cb910313316f65ed.yaml │ ├── pymysql-e57bf1f0289dd426.yaml │ ├── qemu-block-extra-998bf6f1d9d75eda.yaml │ ├── qemu-default-cpu-mode-12f50dc53b32c5bb.yaml │ ├── qemu-default_tls_verify-57e7afd6670afec2.yaml │ ├── qemu-migration-opts-d4d52322ed7c705e.yaml │ ├── qemu-user-2dfecf8a9291b3a2.yaml │ ├── qemu_config-9c7a99cf69972152.yaml │ ├── qemu_monitor_announce_self-tunables-8c18e1b7d6cc1ec5.yaml │ ├── query_placement_for_image_type-351c3200235aa579.yaml │ ├── query_placement_for_routed_newtork_aggregates-82729db7fa4d6d35.yaml │ ├── queue_manager-and-stream_fanout-55a335733a52f7f6.yaml │ ├── quota-15b9ac2502b3c7c9.yaml │ ├── rabbit-connection-params-deprecation-930b59055a8a868f.yaml │ ├── rabbit-quorum-queue-d2d9757075da6767.yaml │ ├── rabbit_qos_prefetch_count-44460b92b2e52a4b.yaml │ ├── rabbit_retry_interval-7f42d6339afafdf1.yaml │ ├── rabbit_transient_queues_ttl-f1b43dda25844321.yaml │ ├── rabbit_transient_quorum_queue-105e50d5e512ce8f.yaml │ ├── rabbitmq-heartbeat-over-pthread-9b65893bf0406753.yaml │ ├── recheck_quota-5fed41afe991bd75.yaml │ ├── release-note-ubuntu-py3-79c7805cfb29dc0f.yaml │ ├── remove-amqp1-e66466c5110cac10.yaml │ ├── remove-amqp_allow_insecure_clients-37462e39cb6e73a5.yaml │ ├── remove-api-instance_name_template-8b3b1e0afdbbba1a.yaml │ ├── remove-api_port-09f5fd1769c94ae7.yaml │ ├── remove-auth-uri-6e98c7c2bf6a8932.yaml │ ├── remove-auth_strategy-68c0fd310891f1a2.yaml │ ├── remove-block-device-opts-from-base-c45cc254048f3392.yaml │ ├── remove-cells-v1-62de6d3d3a782df1.yaml │ ├── remove-cells-v2-upgrade-leve-opts-2bdb145cd56d0632.yaml │ ├── remove-centos-8-a6433d4b189d29ab.yaml │ ├── remove-cinder-opts-fa152e7b58c61bd8.yaml │ ├── remove-cinder-region_name-1edd4b931fe0e7ea.yaml │ ├── remove-compute-allow_resize_to_same_host-b5c77e6a44aae77f.yaml │ ├── remove-compute-pci_passthrough-967e7f041e433151.yaml │ ├── remove-compute-virtio_nic-33319c3a5b6e8cc3.yaml │ ├── remove-consoleauth-063eb73b3ec5c1e3.yaml │ ├── remove-database-params-ce46e46c43f7beca.yaml │ ├── remove-deprecated-api-opts-dalmetian-4d12162ebca98f9b.yaml │ ├── remove-deprecated-logging-e73e167161478f2a.yaml │ ├── remove-deprecated-network-neutron-3e31bdda08e9068f.yaml │ ├── remove-deprecated-network-neutron-dhcp_domain-8dbbc82ae667f11c.yaml │ ├── remove-deprecated-opts-for-failure-notification-8525eb14964260fd.yaml │ ├── remove-deprecated-quota-aee8756d8d13bd8b.yaml │ ├── remove-enabled_vgpu_types-8ba902975a329688.yaml │ ├── remove-install-bridge-utils-2043526f3cb40ad1.yaml │ ├── remove-install_cinder_client-a08aaa3045740ee9.yaml │ ├── remove-ipa_hostname-6b7a75a770e1d940.yaml │ ├── remove-ironic-api_endpoint-696cf06a78d7c2ad.yaml │ ├── remove-ironic-max_concurrent_builds-c1ca15bb24bba255.yaml │ ├── remove-mdev_types_device_addresses_mapping-f4032ec40dee5dde.yaml │ ├── remove-metadata-enabled_apis-c4527287a1876aa4.yaml │ ├── remove-monkey_patch-33c456287e8f0ef0.yaml │ ├── remove-nova-image_service-850481867b070ce9.yaml │ ├── remove-nova-network-ac5d104fd47e3efc.yaml │ ├── remove-nova-objectstore-options-20059f3096c168db.yaml │ ├── remove-nova_floating-bc0c6ace911f9c51.yaml │ ├── remove-nova_paste_api_ini-9b48d69078511b0e.yaml │ ├── remove-novajoin-21f76d1fe28c305e.yaml │ ├── remove-oslo_middleware-opts-from-metadata-dcb44704cc7e34ca.yaml │ ├── remove-periodic_interval-299ed428b67b45ba.yaml │ ├── remove-puppet-6-56e31b6afcb3547b.yaml │ ├── remove-puppet-7-213d2501df98117e.yaml │ ├── remove-query_placement_for_availability_zone-2362e261378d8a1d.yaml │ ├── remove-quota-params-084dba5d3dd63785.yaml │ ├── remove-rabbit_heartbeat_in_pthread-1815c2c9f0239a46.yaml │ ├── remove-ratelimit-13cd3c75f4d0d292.yaml │ ├── remove-rbd_keyring-8a918f435c29735e.yaml │ ├── remove-scheduler-periodic_task_interval-249e0a76423582f5.yaml │ ├── remove-separate-libvirtd-config-281da6b651740a61.yaml │ ├── remove-service-validation-b93f63908515c246.yaml │ ├── remove-sg-resource-types-de1a92488d6f1c19.yaml │ ├── remove-upgrade_level_console-b986209c74645308.yaml │ ├── remove-upgrade_level_network-e485e6fdb0c17c30.yaml │ ├── remove-use_forwarded_for-1249eace95ebf469.yaml │ ├── remove-useless-options-a93512d9834fe223.yaml │ ├── remove-v3api-endpoint-69f2e645efb0a7c8.yaml │ ├── remove-vcpu_pin_set-165a7b2d4230c978.yaml │ ├── remove-vendordata-from-compute-5751b84a5451164e.yaml │ ├── remove-vendordata_caller-4aef7b3fa6565e99.yaml │ ├── remove-vgpu-60c62ccfcfcfbf49.yaml │ ├── remove-virtlogd_config-54e32d679037ce9e.yaml │ ├── remove-vmware-864e23f5d6b030f3.yaml │ ├── remove-watch_log_file-d404d1e6c119afee.yaml │ ├── remove-xenapi-cd46a45a9a9718be.yaml │ ├── remove_baremetal_filters-1205c7259536c7bc.yaml │ ├── remove_class_nova::rabbitmq-3e04bc52ea21032d.yaml │ ├── remove_class_nova_network-ad07a2a73a9fd902.yaml │ ├── remove_class_nova_wsgi_apache-5385298a8245280b.yaml │ ├── remove_deprecated_cells_driver_option-14a58961ef261528.yaml │ ├── remove_deprecated_cells_manager_option-1a32b6e1c01d2958.yaml │ ├── remove_deprecated_ec2_related_option-47bda9520a888853.yaml │ ├── remove_deprecated_fping_path_option-86f90600cb43f5c2.yaml │ ├── remove_deprecated_ironic_auth_options-9e3a7afc21b2037d.yaml │ ├── remove_deprecated_keymap-option-96beecb094f35644.yaml │ ├── remove_deprecated_keymgr_api_class_option-e15d3602cb43f6c1.yaml │ ├── remove_deprecated_keystone_signing_dir_option-e545c1de128ea8a1.yaml │ ├── remove_deprecated_metadata_options-2eb2a69a4b85e27a.yaml │ ├── remove_deprecated_network_api_class_option-4af2916e918f5691.yaml │ ├── remove_deprecated_neutron_auth_options-13eae8cf564d6419.yaml │ ├── remove_deprecated_osapi_v3_option-ead16148dcadc0bf.yaml │ ├── remove_deprecated_pki_related_options-88466f6a00bbd2e3.yaml │ ├── remove_deprecated_quota_options-c689d10725739a6c.yaml │ ├── remove_deprecated_scheduler_filters-2c571c2e7a6a52e1.yaml │ ├── remove_deprecated_serial_console_listen_option-23a962e6f32861d3.yaml │ ├── remove_deprecated_vendordata_options-ce1999402a25804e.yaml │ ├── remove_deprecated_volume_api_class_option-671a562e918fd571.yaml │ ├── remove_extra_params-e4321bffd2a077ee.yaml │ ├── remove_idle_timeout_option-af7594b76d5ffdbf.yaml │ ├── remove_keymap_parameter-85462c966a30e7d9.yaml │ ├── remove_libvirt_migration_flags_option-49813a67ef23d781.yaml │ ├── remove_live_migration_progress_timeout-dc7e79056003c026.yaml │ ├── remove_nova_cert-bd8d0a14ff5e272e.yaml │ ├── remove_nova_start-92f62ea6d3087f86.yaml │ ├── remove_old_authtoken_options-f551ca427590e8b7.yaml │ ├── remove_pci_passthrough-72bc7002ec8436b2.yaml │ ├── remove_qpid-0b446db43fdea617.yaml │ ├── remove_qpid_references-0ce3d525e7e32ae4.yaml │ ├── remove_revocation_cache_time-1656a377690baaac.yaml │ ├── remove_revocation_cache_time-9acf28ac1fd14e83.yaml │ ├── remove_security_group_api-31ecb1a375826d92.yaml │ ├── remove_unused_kernels_option-1328af2a6938e712.yaml │ ├── remove_use_local-001a5010d68a58ed.yaml │ ├── remove_useless_method-6ad1b132053f7da9.yaml │ ├── remove_useless_parameter-b6a260ede152aa09.yaml │ ├── remove_useless_parameter-cfb0bc82dd6693e9.yaml │ ├── remove_verbose-ba40afdc93b87956.yaml │ ├── remove_wsdl_location-29bbd24e91c82bea.yaml │ ├── rename-to-nova_api_paste_ini-0e04a379c5c4157a.yaml │ ├── require-hash-instead-of-encoded-json-string-3c016bb1968c2aca.yaml │ ├── require-images_type-939719fcc3a5d37f.yaml │ ├── reserved_host_cpus-7a2c7ed3047834c2.yaml │ ├── reserved_host_disk-5caca50abf9e74b4.yaml │ ├── revert-provider-system-scope-502934bbfcbd2c66.yaml │ ├── rootwrap-7376efdc78fc6fdf.yaml │ ├── rx_tx_queue_size-80a24b35907e4f5e.yaml │ ├── scheduler-filter-build_failure_weight_multiplier-a2d2c112d7bfaee4.yaml │ ├── scheduler-filter-cross_cell_move_weight_multiplier-280eead3d1455f18.yaml │ ├── scheduler-filter-shuffle_best_same_weighed_hosts-eb328a7d95a0081b.yaml │ ├── scheduler-options-56584924232d7ab7.yaml │ ├── scheduler-workers-13c4cdee9f6de5da.yaml │ ├── scheduler_entrypoints-467a5083d8f65e3d.yaml │ ├── scheduler_filter-pci_in_placement-3a5681f811af430a.yaml │ ├── security_group_provider-50c27926baa9e015.yaml │ ├── service-role-505dbd92e69c44e9.yaml │ ├── service_token-aa4c96bd76469c56.yaml │ ├── service_token_roles_required-98f582fb58fe82ee.yaml │ ├── skip_hypervisor_version_check_on_lm-a33d7ac3d3e4a88f.yaml │ ├── spice-enabled-78f1bf8f333928aa.yaml │ ├── stop-installing-numpy-01d4f2256e822f1c.yaml │ ├── stop-reading-authtoken-opts-028c5c463f97b1fa.yaml │ ├── support_openstack_client-9868aa7535d65774.yaml │ ├── switch_default_api_21-292e1c46c011210f.yaml │ ├── switch_to_oslo_everywhere-f83b00deac0c149d.yaml │ ├── switch_to_oslo_messaging-3e5b3330534747ba.yaml │ ├── switch_upgrade_parameters_to_service_default-851e15a0bbc663a7.yaml │ ├── swtpm-7d012dfed4c5320a.yaml │ ├── sync_power_state_interval-8dcccedd67fad69c.yaml │ ├── system_scope-all-3d705c45620c2959.yaml │ ├── system_scope-barbincan_service_user-855ece0e25484297.yaml │ ├── system_scope-keystone-443335bece968e41.yaml │ ├── system_scope-keystone-ed62f90dc93ea10d.yaml │ ├── system_scope-neutron-6d5421393cbf7759.yaml │ ├── system_scope-novajoin-keystone-5be4c7f5240e74d9.yaml │ ├── system_scope-placement-e92481eb296c9e57.yaml │ ├── tb_cache_size-68e4d02b579a4a50.yaml │ ├── ubuntu-jammy-6f5ae2080baa0b41.yaml │ ├── ubuntu-libvirt-name-change-f9a15b1e5e67176c.yaml │ ├── ubuntu-noble-70fba03573d51260.yaml │ ├── undeprecate-vmwareapi-1e32ae1ad843433c.yaml │ ├── unified-limit-93329f1bccb6628e.yaml │ ├── unified-limits-opts-683eaf00a60d7b69.yaml │ ├── update-nova_metadata_wsgi_enabled-8eef0b780230bd4c.yaml │ ├── update_cinder_catalog_info_v2_to_v3-c5d442dbbae2327e.yaml │ ├── upgrade_level_cert-9b65143963092747.yaml │ ├── upgrade_levels-cells-v1-b411b2e4305dcd94.yaml │ ├── use-reno-1caaec4ba5aa4285.yaml │ ├── uwsgi-a9f90e3a5148a7f7.yaml │ ├── vendordata-dynamic-plugin-auth-149cd7ff53fc731b.yaml │ ├── verbose-deprecation-16e8fbc25c1d66b4.yaml │ ├── vgpu-devices-mapping-7553b329d58fa8c4.yaml │ ├── vgpu_devices-4441729018e59ee1.yaml │ ├── virsh-secret-uuid-c1e4c39473d45300.yaml │ ├── virtlock-virtlog-services-40ab5eae62817df7.yaml │ ├── virtlockd-d412855bb1536dea.yaml │ ├── virtlogd_config-1bcf0201932c2cb2.yaml │ ├── vmware-default-410fffde49744341.yaml │ ├── vmware_updates-9ead09cc33383d5f.yaml │ ├── vnc_tls-cfea520d82511758.yaml │ ├── volume_use_multipath-for-libvirt--a8e93a0bb83e0bc8.yaml │ ├── workarounds-ensure_libvirt_rbd_instance_dir_cleanup-17da2fc2a88ff5f1.yaml │ ├── workarounds-skip-cpu-compare-64471cc75d3175b3.yaml │ ├── workarounds-wait_for_vif_plugged_event_during_hard_reboot-092dada6f6a1e632.yaml │ ├── wsgi_process_options-f8e93a0bb83e0bc8.yaml │ └── xenserver-8eb20faa5f230dfd.yaml └── source │ ├── 2023.1.rst │ ├── 2023.2.rst │ ├── 2024.1.rst │ ├── 2024.2.rst │ ├── 2025.1.rst │ ├── 2025.2.rst │ ├── _static │ └── .placeholder │ ├── conf.py │ ├── index.rst │ ├── mitaka.rst │ ├── newton.rst │ ├── ocata.rst │ ├── pike.rst │ ├── queens.rst │ ├── rocky.rst │ ├── stein.rst │ ├── train.rst │ ├── unreleased.rst │ ├── ussuri.rst │ ├── victoria.rst │ ├── wallaby.rst │ ├── xena.rst │ ├── yoga.rst │ └── zed.rst ├── spec ├── acceptance │ ├── 10_nova_wsgi_apache_spec.rb │ ├── 98_libvirt_config_spec.rb │ └── 99_nova_config_spec.rb ├── classes │ ├── nova_api_spec.rb │ ├── nova_availability_zone_spec.rb │ ├── nova_cache_spec.rb │ ├── nova_cell_v2_discover_hosts_spec.rb │ ├── nova_cell_v2_map_cell0_spec.rb │ ├── nova_cell_v2_map_cell_and_hosts_spec.rb │ ├── nova_cell_v2_map_instances_spec.rb │ ├── nova_cell_v2_simple_setup_spec.rb │ ├── nova_cinder_spec.rb │ ├── nova_client_spec.rb │ ├── nova_compute_image_cache_spec.rb │ ├── nova_compute_ironic_spec.rb │ ├── nova_compute_libvirt_config_spec.rb │ ├── nova_compute_libvirt_guests_spec.rb │ ├── nova_compute_libvirt_libvirtd_spec.rb │ ├── nova_compute_libvirt_networks_spec.rb │ ├── nova_compute_libvirt_qemu_spec.rb │ ├── nova_compute_libvirt_services_spec.rb │ ├── nova_compute_libvirt_spec.rb │ ├── nova_compute_libvirt_virtlockd_spec.rb │ ├── nova_compute_libvirt_virtlogd_spec.rb │ ├── nova_compute_libvirt_virtnodedevd_spec.rb │ ├── nova_compute_libvirt_virtproxyd_spec.rb │ ├── nova_compute_libvirt_virtqemud_spec.rb │ ├── nova_compute_libvirt_virtsecretd_spec.rb │ ├── nova_compute_libvirt_virtstoraged_spec.rb │ ├── nova_compute_mdev_spec.rb │ ├── nova_compute_pci_spec.rb │ ├── nova_compute_provider_spec.rb │ ├── nova_compute_rbd_spec.rb │ ├── nova_compute_serial_spec.rb │ ├── nova_compute_spec.rb │ ├── nova_compute_spice_spec.rb │ ├── nova_conductor_spec.rb │ ├── nova_config_spec.rb │ ├── nova_consoleauth_spec.rb │ ├── nova_cors_spec.rb │ ├── nova_cron_archive_deleted_rows_spec.rb │ ├── nova_cron_purge_shadow_tables_spec.rb │ ├── nova_db_mysql_api_spec.rb │ ├── nova_db_mysql_spec.rb │ ├── nova_db_online_data_migrations_spec.rb │ ├── nova_db_postgresql_api_spec.rb │ ├── nova_db_postgresql_spec.rb │ ├── nova_db_spec.rb │ ├── nova_db_sync_api_spec.rb │ ├── nova_db_sync_spec.rb │ ├── nova_glance_spec.rb │ ├── nova_init_spec.rb │ ├── nova_ironic_common_spec.rb │ ├── nova_key_manager_barbican_service_user_spec.rb │ ├── nova_key_manager_barbican_spec.rb │ ├── nova_key_manager_spec.rb │ ├── nova_keystone_auth_spec.rb │ ├── nova_keystone_authtoken_spec.rb │ ├── nova_keystone_service_user_spec.rb │ ├── nova_keystone_spec.rb │ ├── nova_limit_spec.rb │ ├── nova_logging_spec.rb │ ├── nova_metadata_spec.rb │ ├── nova_migration_libvirt_spec.rb │ ├── nova_migration_qemu_spec.rb │ ├── nova_network_neutron_spec.rb │ ├── nova_os_brick_spec.rb │ ├── nova_pci_spec.rb │ ├── nova_placement_spec.rb │ ├── nova_policy_spec.rb │ ├── nova_quota_spec.rb │ ├── nova_reports_spec.rb │ ├── nova_scheduler_filter_spec.rb │ ├── nova_scheduler_spec.rb │ ├── nova_serial_proxy_spec.rb │ ├── nova_spicehtml5proxy_spec.rb │ ├── nova_vendordata_spec.rb │ ├── nova_vncproxy_spec.rb │ ├── nova_workarounds_spec.rb │ ├── nova_wsgi_apache_api_spec.rb │ ├── nova_wsgi_apache_metadata_spec.rb │ ├── nova_wsgi_uwsgi_api_metadata_spec.rb │ └── nova_wsgi_uwsgi_api_spec.rb ├── defines │ ├── nova_compute_libvirt_secret_ceph_spec.rb │ └── nova_generic_service_spec.rb ├── functions │ └── to_array_of_json_strings_spec.rb ├── shared_examples.rb ├── spec_helper.rb ├── spec_helper_acceptance.rb ├── type_aliases │ └── sshkey_spec.rb └── unit │ ├── functions │ └── encode_url_queries_for_python_spec.rb │ ├── provider │ ├── libvirtd_config │ │ └── ini_setting_spec.rb │ ├── nova_aggregate │ │ └── openstack_spec.rb │ ├── nova_api_metadata_uwsgi_config │ │ └── ini_setting_spec.rb │ ├── nova_api_paste_ini │ │ └── ini_setting_spec.rb │ ├── nova_api_uwsgi_config │ │ └── ini_setting_spec.rb │ ├── nova_config │ │ └── openstackconfig_spec.rb │ ├── nova_flavor │ │ └── openstack_spec.rb │ ├── nova_rootwrap_config │ │ └── ini_setting_spec.rb │ └── nova_service │ │ └── openstack_spec.rb │ └── type │ ├── libvirtd_config_spec.rb │ ├── nova_aggregate_spec.rb │ ├── nova_api_metadata_uwsgi_config_spec.rb │ ├── nova_api_paste_spec.rb │ ├── nova_api_uwsgi_config_spec.rb │ ├── nova_cell_v2_spec.rb │ ├── nova_config_spec.rb │ ├── nova_rootwrap_config_spec.rb │ ├── nova_service_spec.rb │ ├── qemu_config_spec.rb │ ├── virtlockd_config_spec.rb │ ├── virtlogd_config_spec.rb │ ├── virtnodedevd_config_spec.rb │ ├── virtproxyd_config_spec.rb │ ├── virtqemud_config_spec.rb │ └── virtsecretd_config_spec.rb ├── templates ├── libvirt-secret-ceph.xml.epp └── provider.yaml.erb ├── tox.ini └── types ├── cpumode.pp ├── sshkey.pp └── virttype.pp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/.gitreview -------------------------------------------------------------------------------- /.pdkignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/.pdkignore -------------------------------------------------------------------------------- /.zuul.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/.zuul.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppet-openstack_spec_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /bindep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/bindep.txt -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /examples/nova_with_pacemaker.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/examples/nova_with_pacemaker.pp -------------------------------------------------------------------------------- /examples/nova_wsgi.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/examples/nova_wsgi.pp -------------------------------------------------------------------------------- /lib/facter/libvirt_uuid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/facter/libvirt_uuid.rb -------------------------------------------------------------------------------- /lib/puppet/functions/encode_url_queries_for_python.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/functions/encode_url_queries_for_python.rb -------------------------------------------------------------------------------- /lib/puppet/functions/to_array_of_json_strings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/functions/to_array_of_json_strings.rb -------------------------------------------------------------------------------- /lib/puppet/provider/libvirtd_config/ini_setting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/provider/libvirtd_config/ini_setting.rb -------------------------------------------------------------------------------- /lib/puppet/provider/nova.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/provider/nova.rb -------------------------------------------------------------------------------- /lib/puppet/provider/nova_aggregate/openstack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/provider/nova_aggregate/openstack.rb -------------------------------------------------------------------------------- /lib/puppet/provider/nova_api_metadata_uwsgi_config/ini_setting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/provider/nova_api_metadata_uwsgi_config/ini_setting.rb -------------------------------------------------------------------------------- /lib/puppet/provider/nova_api_paste_ini/ini_setting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/provider/nova_api_paste_ini/ini_setting.rb -------------------------------------------------------------------------------- /lib/puppet/provider/nova_api_uwsgi_config/ini_setting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/provider/nova_api_uwsgi_config/ini_setting.rb -------------------------------------------------------------------------------- /lib/puppet/provider/nova_cell_v2/nova_manage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/provider/nova_cell_v2/nova_manage.rb -------------------------------------------------------------------------------- /lib/puppet/provider/nova_config/openstackconfig.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/provider/nova_config/openstackconfig.rb -------------------------------------------------------------------------------- /lib/puppet/provider/nova_flavor/openstack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/provider/nova_flavor/openstack.rb -------------------------------------------------------------------------------- /lib/puppet/provider/nova_rootwrap_config/ini_setting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/provider/nova_rootwrap_config/ini_setting.rb -------------------------------------------------------------------------------- /lib/puppet/provider/nova_service/openstack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/provider/nova_service/openstack.rb -------------------------------------------------------------------------------- /lib/puppet/provider/qemu_config/ini_setting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/provider/qemu_config/ini_setting.rb -------------------------------------------------------------------------------- /lib/puppet/provider/virtlockd_config/ini_setting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/provider/virtlockd_config/ini_setting.rb -------------------------------------------------------------------------------- /lib/puppet/provider/virtlogd_config/ini_setting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/provider/virtlogd_config/ini_setting.rb -------------------------------------------------------------------------------- /lib/puppet/provider/virtnodedevd_config/ini_setting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/provider/virtnodedevd_config/ini_setting.rb -------------------------------------------------------------------------------- /lib/puppet/provider/virtproxyd_config/ini_setting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/provider/virtproxyd_config/ini_setting.rb -------------------------------------------------------------------------------- /lib/puppet/provider/virtqemud_config/ini_setting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/provider/virtqemud_config/ini_setting.rb -------------------------------------------------------------------------------- /lib/puppet/provider/virtsecretd_config/ini_setting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/provider/virtsecretd_config/ini_setting.rb -------------------------------------------------------------------------------- /lib/puppet/provider/virtstoraged_config/ini_setting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/provider/virtstoraged_config/ini_setting.rb -------------------------------------------------------------------------------- /lib/puppet/type/libvirtd_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/type/libvirtd_config.rb -------------------------------------------------------------------------------- /lib/puppet/type/nova_aggregate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/type/nova_aggregate.rb -------------------------------------------------------------------------------- /lib/puppet/type/nova_api_metadata_uwsgi_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/type/nova_api_metadata_uwsgi_config.rb -------------------------------------------------------------------------------- /lib/puppet/type/nova_api_paste_ini.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/type/nova_api_paste_ini.rb -------------------------------------------------------------------------------- /lib/puppet/type/nova_api_uwsgi_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/type/nova_api_uwsgi_config.rb -------------------------------------------------------------------------------- /lib/puppet/type/nova_cell_v2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/type/nova_cell_v2.rb -------------------------------------------------------------------------------- /lib/puppet/type/nova_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/type/nova_config.rb -------------------------------------------------------------------------------- /lib/puppet/type/nova_flavor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/type/nova_flavor.rb -------------------------------------------------------------------------------- /lib/puppet/type/nova_rootwrap_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/type/nova_rootwrap_config.rb -------------------------------------------------------------------------------- /lib/puppet/type/nova_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/type/nova_service.rb -------------------------------------------------------------------------------- /lib/puppet/type/qemu_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/type/qemu_config.rb -------------------------------------------------------------------------------- /lib/puppet/type/virtlockd_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/type/virtlockd_config.rb -------------------------------------------------------------------------------- /lib/puppet/type/virtlogd_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/type/virtlogd_config.rb -------------------------------------------------------------------------------- /lib/puppet/type/virtnodedevd_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/type/virtnodedevd_config.rb -------------------------------------------------------------------------------- /lib/puppet/type/virtproxyd_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/type/virtproxyd_config.rb -------------------------------------------------------------------------------- /lib/puppet/type/virtqemud_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/type/virtqemud_config.rb -------------------------------------------------------------------------------- /lib/puppet/type/virtsecretd_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/type/virtsecretd_config.rb -------------------------------------------------------------------------------- /lib/puppet/type/virtstoraged_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/lib/puppet/type/virtstoraged_config.rb -------------------------------------------------------------------------------- /manifests/api.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/api.pp -------------------------------------------------------------------------------- /manifests/availability_zone.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/availability_zone.pp -------------------------------------------------------------------------------- /manifests/cache.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/cache.pp -------------------------------------------------------------------------------- /manifests/cell_v2/discover_hosts.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/cell_v2/discover_hosts.pp -------------------------------------------------------------------------------- /manifests/cell_v2/map_cell0.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/cell_v2/map_cell0.pp -------------------------------------------------------------------------------- /manifests/cell_v2/map_cell_and_hosts.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/cell_v2/map_cell_and_hosts.pp -------------------------------------------------------------------------------- /manifests/cell_v2/map_instances.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/cell_v2/map_instances.pp -------------------------------------------------------------------------------- /manifests/cell_v2/simple_setup.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/cell_v2/simple_setup.pp -------------------------------------------------------------------------------- /manifests/cinder.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/cinder.pp -------------------------------------------------------------------------------- /manifests/client.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/client.pp -------------------------------------------------------------------------------- /manifests/compute.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/compute.pp -------------------------------------------------------------------------------- /manifests/compute/image_cache.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/compute/image_cache.pp -------------------------------------------------------------------------------- /manifests/compute/ironic.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/compute/ironic.pp -------------------------------------------------------------------------------- /manifests/compute/libvirt.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/compute/libvirt.pp -------------------------------------------------------------------------------- /manifests/compute/libvirt/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/compute/libvirt/config.pp -------------------------------------------------------------------------------- /manifests/compute/libvirt/libvirtd.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/compute/libvirt/libvirtd.pp -------------------------------------------------------------------------------- /manifests/compute/libvirt/networks.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/compute/libvirt/networks.pp -------------------------------------------------------------------------------- /manifests/compute/libvirt/qemu.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/compute/libvirt/qemu.pp -------------------------------------------------------------------------------- /manifests/compute/libvirt/secret_ceph.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/compute/libvirt/secret_ceph.pp -------------------------------------------------------------------------------- /manifests/compute/libvirt/services.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/compute/libvirt/services.pp -------------------------------------------------------------------------------- /manifests/compute/libvirt/version.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/compute/libvirt/version.pp -------------------------------------------------------------------------------- /manifests/compute/libvirt/virtlockd.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/compute/libvirt/virtlockd.pp -------------------------------------------------------------------------------- /manifests/compute/libvirt/virtlogd.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/compute/libvirt/virtlogd.pp -------------------------------------------------------------------------------- /manifests/compute/libvirt/virtnodedevd.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/compute/libvirt/virtnodedevd.pp -------------------------------------------------------------------------------- /manifests/compute/libvirt/virtproxyd.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/compute/libvirt/virtproxyd.pp -------------------------------------------------------------------------------- /manifests/compute/libvirt/virtqemud.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/compute/libvirt/virtqemud.pp -------------------------------------------------------------------------------- /manifests/compute/libvirt/virtsecretd.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/compute/libvirt/virtsecretd.pp -------------------------------------------------------------------------------- /manifests/compute/libvirt/virtstoraged.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/compute/libvirt/virtstoraged.pp -------------------------------------------------------------------------------- /manifests/compute/libvirt_guests.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/compute/libvirt_guests.pp -------------------------------------------------------------------------------- /manifests/compute/mdev.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/compute/mdev.pp -------------------------------------------------------------------------------- /manifests/compute/mdev_type.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/compute/mdev_type.pp -------------------------------------------------------------------------------- /manifests/compute/pci.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/compute/pci.pp -------------------------------------------------------------------------------- /manifests/compute/provider.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/compute/provider.pp -------------------------------------------------------------------------------- /manifests/compute/rbd.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/compute/rbd.pp -------------------------------------------------------------------------------- /manifests/compute/serial.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/compute/serial.pp -------------------------------------------------------------------------------- /manifests/compute/spice.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/compute/spice.pp -------------------------------------------------------------------------------- /manifests/conductor.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/conductor.pp -------------------------------------------------------------------------------- /manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/config.pp -------------------------------------------------------------------------------- /manifests/consoleauth.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/consoleauth.pp -------------------------------------------------------------------------------- /manifests/cors.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/cors.pp -------------------------------------------------------------------------------- /manifests/cron/archive_deleted_rows.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/cron/archive_deleted_rows.pp -------------------------------------------------------------------------------- /manifests/cron/purge_shadow_tables.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/cron/purge_shadow_tables.pp -------------------------------------------------------------------------------- /manifests/db.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/db.pp -------------------------------------------------------------------------------- /manifests/db/mysql.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/db/mysql.pp -------------------------------------------------------------------------------- /manifests/db/mysql_api.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/db/mysql_api.pp -------------------------------------------------------------------------------- /manifests/db/online_data_migrations.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/db/online_data_migrations.pp -------------------------------------------------------------------------------- /manifests/db/postgresql.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/db/postgresql.pp -------------------------------------------------------------------------------- /manifests/db/postgresql_api.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/db/postgresql_api.pp -------------------------------------------------------------------------------- /manifests/db/sync.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/db/sync.pp -------------------------------------------------------------------------------- /manifests/db/sync_api.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/db/sync_api.pp -------------------------------------------------------------------------------- /manifests/deps.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/deps.pp -------------------------------------------------------------------------------- /manifests/generic_service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/generic_service.pp -------------------------------------------------------------------------------- /manifests/glance.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/glance.pp -------------------------------------------------------------------------------- /manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/init.pp -------------------------------------------------------------------------------- /manifests/ironic/common.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/ironic/common.pp -------------------------------------------------------------------------------- /manifests/key_manager.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/key_manager.pp -------------------------------------------------------------------------------- /manifests/key_manager/barbican.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/key_manager/barbican.pp -------------------------------------------------------------------------------- /manifests/key_manager/barbican/service_user.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/key_manager/barbican/service_user.pp -------------------------------------------------------------------------------- /manifests/keystone.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/keystone.pp -------------------------------------------------------------------------------- /manifests/keystone/auth.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/keystone/auth.pp -------------------------------------------------------------------------------- /manifests/keystone/authtoken.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/keystone/authtoken.pp -------------------------------------------------------------------------------- /manifests/keystone/service_user.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/keystone/service_user.pp -------------------------------------------------------------------------------- /manifests/limit.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/limit.pp -------------------------------------------------------------------------------- /manifests/logging.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/logging.pp -------------------------------------------------------------------------------- /manifests/metadata.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/metadata.pp -------------------------------------------------------------------------------- /manifests/migration/libvirt.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/migration/libvirt.pp -------------------------------------------------------------------------------- /manifests/migration/qemu.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/migration/qemu.pp -------------------------------------------------------------------------------- /manifests/network/neutron.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/network/neutron.pp -------------------------------------------------------------------------------- /manifests/os_brick.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/os_brick.pp -------------------------------------------------------------------------------- /manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/params.pp -------------------------------------------------------------------------------- /manifests/pci.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/pci.pp -------------------------------------------------------------------------------- /manifests/placement.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/placement.pp -------------------------------------------------------------------------------- /manifests/policy.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/policy.pp -------------------------------------------------------------------------------- /manifests/quota.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/quota.pp -------------------------------------------------------------------------------- /manifests/reports.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/reports.pp -------------------------------------------------------------------------------- /manifests/scheduler.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/scheduler.pp -------------------------------------------------------------------------------- /manifests/scheduler/filter.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/scheduler/filter.pp -------------------------------------------------------------------------------- /manifests/serialproxy.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/serialproxy.pp -------------------------------------------------------------------------------- /manifests/spicehtml5proxy.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/spicehtml5proxy.pp -------------------------------------------------------------------------------- /manifests/vendordata.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/vendordata.pp -------------------------------------------------------------------------------- /manifests/vncproxy.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/vncproxy.pp -------------------------------------------------------------------------------- /manifests/vncproxy/common.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/vncproxy/common.pp -------------------------------------------------------------------------------- /manifests/workarounds.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/workarounds.pp -------------------------------------------------------------------------------- /manifests/wsgi/apache_api.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/wsgi/apache_api.pp -------------------------------------------------------------------------------- /manifests/wsgi/apache_metadata.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/wsgi/apache_metadata.pp -------------------------------------------------------------------------------- /manifests/wsgi/uwsgi_api.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/wsgi/uwsgi_api.pp -------------------------------------------------------------------------------- /manifests/wsgi/uwsgi_api_metadata.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/manifests/wsgi/uwsgi_api_metadata.pp -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/metadata.json -------------------------------------------------------------------------------- /releasenotes/notes/Add-new-vendordata-plugin-support-6880c73c27c87d74.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/Add-new-vendordata-plugin-support-6880c73c27c87d74.yaml -------------------------------------------------------------------------------- /releasenotes/notes/access_log_env_var-d2d8ed2f6d542276.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/access_log_env_var-d2d8ed2f6d542276.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-all-cells-archive-cron-065604f9953191ea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add-all-cells-archive-cron-065604f9953191ea.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-api-config-to-api-group-8713a9df13e84571.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add-api-config-to-api-group-8713a9df13e84571.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-before-archive-cron-17b6ea01aaaa5156.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add-before-archive-cron-17b6ea01aaaa5156.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-cache-config-parameters-1e2229398720f77e.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add ability to configure cache parameters 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-cell0-db-postgresql-8bb48f15e4e77554.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add-cell0-db-postgresql-8bb48f15e4e77554.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-cells-v1-deprecation-0f3aaa22f83b06e0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add-cells-v1-deprecation-0f3aaa22f83b06e0.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-cinder-creds-91a50b74c8bdb541.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add-cinder-creds-91a50b74c8bdb541.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-cors-support-773226c628d06da6.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add CORS configuration support 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-cpu-weigher-49b610ff9a57695e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add-cpu-weigher-49b610ff9a57695e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-cross-az-attach-parameters-3ebc84f8882dd941.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add-cross-az-attach-parameters-3ebc84f8882dd941.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-libvirtd-config-resource-d8b75e542769c138.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add-libvirtd-config-resource-d8b75e542769c138.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-libvirtd-host_uuid-ff1ab95e4586d176.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add-libvirtd-host_uuid-ff1ab95e4586d176.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-log_file-for-logging-ab53c751b895dc0d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add-log_file-for-logging-ab53c751b895dc0d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-max_placement_results-be501252f1113d5e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add-max_placement_results-be501252f1113d5e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-nova-db-online-data-migrations-586a6f3c23dfefcb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add-nova-db-online-data-migrations-586a6f3c23dfefcb.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-nova-glance-valid_interfaces-ff6d123e075f7aee.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add-nova-glance-valid_interfaces-ff6d123e075f7aee.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-nova-vnc-ssl-params-691909b8a2f2e18e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add-nova-vnc-ssl-params-691909b8a2f2e18e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-novajoin-support-63a21b983ec5704d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add-novajoin-support-63a21b983ec5704d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-patch-config-407a53a9bb59e86c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add-patch-config-407a53a9bb59e86c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-poll-parameters-ironic-api-e4cbcc3c65291c3b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add-poll-parameters-ironic-api-e4cbcc3c65291c3b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-pool_timeout-option-for-db-a9c5bbeb7d243d5d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add-pool_timeout-option-for-db-a9c5bbeb7d243d5d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-purge-to-cron-9b7c80e3e915fb4f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add-purge-to-cron-9b7c80e3e915fb4f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-until-complete-archive-cron-f4e3ed2dfee64c5c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add-until-complete-archive-cron-f4e3ed2dfee64c5c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-use_journal-option-for-logging-bd5e9e7654833c44.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add-use_journal-option-for-logging-bd5e9e7654833c44.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_MultiStrOpt_for_scheduler_available_filters-dc4b95337739526e.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | upgrade: 3 | - Add MultiStrOpt for scheduler_available_filters parameter. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add_api_database_parameters-bab34198427af74b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_api_database_parameters-bab34198427af74b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_cache_hashclient_retry_options-d0ce282343bb7fe9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_cache_hashclient_retry_options-d0ce282343bb7fe9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_cache_retry_options-0c96612c73d576cf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_cache_retry_options-0c96612c73d576cf.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_cell_v2_provider-d1e6f8226ae3401e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_cell_v2_provider-d1e6f8226ae3401e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_compute_monitors_option-454ba8fcc2d28744.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_compute_monitors_option-454ba8fcc2d28744.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_db_sync_timeout-88f19f3a5c9f8a42.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_db_sync_timeout-88f19f3a5c9f8a42.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_enable_new_services_parameter-0174ea25ea8b5de7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_enable_new_services_parameter-0174ea25ea8b5de7.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_flavor_provider-a7e12b6c3e9ca80f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_flavor_provider-a7e12b6c3e9ca80f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_images_type-d922a1886acdcd12.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_images_type-d922a1886acdcd12.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_keepalive_options-3802510b6d4461e1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_keepalive_options-3802510b6d4461e1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_live_migration_with_native_tls-4293ca305e98cdc3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_live_migration_with_native_tls-4293ca305e98cdc3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_max_disk_devices_to_attach-061c48948416d8c5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_max_disk_devices_to_attach-061c48948416d8c5.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_messaging_default_parameters-51a35df791986123.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_messaging_default_parameters-51a35df791986123.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_migration_qemu_class-3b3386696dd597c2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_migration_qemu_class-3b3386696dd597c2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_migration_tunnelled_option-1314af56e1ff129c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_migration_tunnelled_option-1314af56e1ff129c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_mkisofs_cmd-9498e4d3b913a72a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_mkisofs_cmd-9498e4d3b913a72a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_more_image_related_options-37d640d3f76adbbd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_more_image_related_options-37d640d3f76adbbd.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_more_instance_timeout_options-3f7f6f99a921ac71.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_more_instance_timeout_options-3f7f6f99a921ac71.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_more_migration_parameters-46291332615deb4f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_more_migration_parameters-46291332615deb4f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_mysql_enable_ndb-option-b20b3aee3ac8b604.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_mysql_enable_ndb-option-b20b3aee3ac8b604.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_nova_api_db-62e459588e14a92e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_nova_api_db-62e459588e14a92e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_oslo_messaging_amqp-28dae136aba44f5d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_oslo_messaging_amqp-28dae136aba44f5d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_ovsdb_connection_parameter-2f5ffa9e6e00ab42.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_ovsdb_connection_parameter-2f5ffa9e6e00ab42.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_pci_alias_compute-a7780fa3181e7749.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_pci_alias_compute-a7780fa3181e7749.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_pmem_namespaces-7c425a8c65ecd119.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_pmem_namespaces-7c425a8c65ecd119.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_preallocate_images_option-24711e88218b09ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_preallocate_images_option-24711e88218b09ca.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_qemu_nbd_parameters-f8b975e695d6efd9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_qemu_nbd_parameters-f8b975e695d6efd9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_rabbit_kombu_options-b43953e81f9516c0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_rabbit_kombu_options-b43953e81f9516c0.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_reserved_huge_pages-883f6feb4e274814.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_reserved_huge_pages-883f6feb4e274814.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_snapshot_image_format_option-a81397f91365e226.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_snapshot_image_format_option-a81397f91365e226.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_snapshots_directory_option-f67c0b93bb6b6d38.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_snapshots_directory_option-f67c0b93bb6b6d38.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_tls_options-9f4cd19db6a76a76.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add TLS options to oslo.cache 5 | -------------------------------------------------------------------------------- /releasenotes/notes/add_transport_url_parameters-162e824d6f048262.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_transport_url_parameters-162e824d6f048262.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_watch_log_file-option-935931045c6c0498.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/add_watch_log_file-option-935931045c6c0498.yaml -------------------------------------------------------------------------------- /releasenotes/notes/aggregate-unset-support-445c9a3794ca33d6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/aggregate-unset-support-445c9a3794ca33d6.yaml -------------------------------------------------------------------------------- /releasenotes/notes/amqp_auto_delete-c452bf98830afe1a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/amqp_auto_delete-c452bf98830afe1a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/apache-headers-16bebb9da1fb6cb6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/apache-headers-16bebb9da1fb6cb6.yaml -------------------------------------------------------------------------------- /releasenotes/notes/api-cell-params-e396713c6232705d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/api-cell-params-e396713c6232705d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/api_key_backend-c1cd58916c1ba43b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/api_key_backend-c1cd58916c1ba43b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/api_paste_ini-separator-6e3ea618663fcf0d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/api_paste_ini-separator-6e3ea618663fcf0d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/archive-sleep-c3de94ddd2066c01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/archive-sleep-c3de94ddd2066c01.yaml -------------------------------------------------------------------------------- /releasenotes/notes/archive_deleted_rows-task_log-39777328b2fbd8ee.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/archive_deleted_rows-task_log-39777328b2fbd8ee.yaml -------------------------------------------------------------------------------- /releasenotes/notes/authtoken-049381ec171680e4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/authtoken-049381ec171680e4.yaml -------------------------------------------------------------------------------- /releasenotes/notes/authtoken_manage_memcache_package-66fdfb8c4204bbe9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/authtoken_manage_memcache_package-66fdfb8c4204bbe9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/barbican-356c86ac7a7a327c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/barbican-356c86ac7a7a327c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/barbican_service_user-887eb51cb8e9efce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/barbican_service_user-887eb51cb8e9efce.yaml -------------------------------------------------------------------------------- /releasenotes/notes/block_device_allocate_retries-a12f17bd0121ef7d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/block_device_allocate_retries-a12f17bd0121ef7d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1853845-a1e25645af26242b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/bug-1853845-a1e25645af26242b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1967713-69f905709f4410a5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/bug-1967713-69f905709f4410a5.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-2012747-36e40b85697e7eb7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/bug-2012747-36e40b85697e7eb7.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-2042383-76b5bd1579f9310d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/bug-2042383-76b5bd1579f9310d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-2067867-2ad9041975cff1b2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/bug-2067867-2ad9041975cff1b2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/cache-backend-expiration-time-bc59320127854b52.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/cache-backend-expiration-time-bc59320127854b52.yaml -------------------------------------------------------------------------------- /releasenotes/notes/cache-memcache-sasl-eaefc7d8d310d4da.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/cache-memcache-sasl-eaefc7d8d310d4da.yaml -------------------------------------------------------------------------------- /releasenotes/notes/cache-redis-opts-963910910cddfc94.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/cache-redis-opts-963910910cddfc94.yaml -------------------------------------------------------------------------------- /releasenotes/notes/cache-rename-hashclient-params-492c9f2d3fa0f00c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/cache-rename-hashclient-params-492c9f2d3fa0f00c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/cap_workers-586a6d2168ddabca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/cap_workers-586a6d2168ddabca.yaml -------------------------------------------------------------------------------- /releasenotes/notes/cell_v2-additional-commands-7c2a455c9eb722d1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/cell_v2-additional-commands-7c2a455c9eb722d1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/cell_v2-simple-cell-setup-025a90918590c872.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/cell_v2-simple-cell-setup-025a90918590c872.yaml -------------------------------------------------------------------------------- /releasenotes/notes/cell_worker_thread_pool_size-0b0cb310bbcfcdbe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/cell_worker_thread_pool_size-0b0cb310bbcfcdbe.yaml -------------------------------------------------------------------------------- /releasenotes/notes/cellsv1-quota-driver-24498d3b83e9e824.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/cellsv1-quota-driver-24498d3b83e9e824.yaml -------------------------------------------------------------------------------- /releasenotes/notes/centos-9-support-2402954dc9a017e3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/centos-9-support-2402954dc9a017e3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/cinder-http_retries-9e53569312f18cb8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/cinder-http_retries-9e53569312f18cb8.yaml -------------------------------------------------------------------------------- /releasenotes/notes/cinder-parameters-62b1a4f2a3a8e4b8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/cinder-parameters-62b1a4f2a3a8e4b8.yaml -------------------------------------------------------------------------------- /releasenotes/notes/cinder-region_name-5385736bf050dde3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/cinder-region_name-5385736bf050dde3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/clean-up-novaoin-api-494d685dde2fc108.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/clean-up-novaoin-api-494d685dde2fc108.yaml -------------------------------------------------------------------------------- /releasenotes/notes/clean-up-scheduler-filter-26406c2aabe92ea9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/clean-up-scheduler-filter-26406c2aabe92ea9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/cleanup-baremetal-scheduling-opts-250e52ff28ae2fc3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/cleanup-baremetal-scheduling-opts-250e52ff28ae2fc3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/cleanup-image_cache-opts-ebecdd4a18769dd3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/cleanup-image_cache-opts-ebecdd4a18769dd3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/cleanup-keymgr-6c936ff590a5226a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/cleanup-keymgr-6c936ff590a5226a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/cleanup-neutron-opts-2471ddec1148f7ac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/cleanup-neutron-opts-2471ddec1148f7ac.yaml -------------------------------------------------------------------------------- /releasenotes/notes/cleanup-nova-compute-libvirt-d109949308bb292d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/cleanup-nova-compute-libvirt-d109949308bb292d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/cleanup-scheduler-opts-e8b8be670fba3f3c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/cleanup-scheduler-opts-e8b8be670fba3f3c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/compute-cpu-shared-set-30e2394d1af2dd47.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/compute-cpu-shared-set-30e2394d1af2dd47.yaml -------------------------------------------------------------------------------- /releasenotes/notes/compute-flat-injected-f6aafc9e59ab2728.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/compute-flat-injected-f6aafc9e59ab2728.yaml -------------------------------------------------------------------------------- /releasenotes/notes/compute-image_cache-11d66c225ce11596.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/compute-image_cache-11d66c225ce11596.yaml -------------------------------------------------------------------------------- /releasenotes/notes/compute-libvirt-cpu_models-55755b320b7a0379.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/compute-libvirt-cpu_models-55755b320b7a0379.yaml -------------------------------------------------------------------------------- /releasenotes/notes/compute-libvirt-guests-b51fdee7cf4d0289.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/compute-libvirt-guests-b51fdee7cf4d0289.yaml -------------------------------------------------------------------------------- /releasenotes/notes/compute-libvirt-max_queues-97a35922dbacb0b1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/compute-libvirt-max_queues-97a35922dbacb0b1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/compute-libvirt-os_service_default-9f5b72036276e9b1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/compute-libvirt-os_service_default-9f5b72036276e9b1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/compute-libvirt-rename-params-663631444f02c946.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/compute-libvirt-rename-params-663631444f02c946.yaml -------------------------------------------------------------------------------- /releasenotes/notes/compute-max_concurrent_builds-5766b153dc9c0596.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/compute-max_concurrent_builds-5766b153dc9c0596.yaml -------------------------------------------------------------------------------- /releasenotes/notes/configure-build-disable-threshold-41d0ba2f8259d467.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/configure-build-disable-threshold-41d0ba2f8259d467.yaml -------------------------------------------------------------------------------- /releasenotes/notes/configure_service-2e5f1ad74f9adbdc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/configure_service-2e5f1ad74f9adbdc.yaml -------------------------------------------------------------------------------- /releasenotes/notes/consistent-project-name-40ef75b7e11461f4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/consistent-project-name-40ef75b7e11461f4.yaml -------------------------------------------------------------------------------- /releasenotes/notes/console-port-interger-2e902534adfec564.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/console-port-interger-2e902534adfec564.yaml -------------------------------------------------------------------------------- /releasenotes/notes/console_allowed_origins-440032ce51e96ab1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/console_allowed_origins-440032ce51e96ab1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/consoleauth-81bf3f52259e2468.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/consoleauth-81bf3f52259e2468.yaml -------------------------------------------------------------------------------- /releasenotes/notes/count_usage_from_placement-0dfdb5b464d68f63.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/count_usage_from_placement-0dfdb5b464d68f63.yaml -------------------------------------------------------------------------------- /releasenotes/notes/cpu-resources-39ce2f92ae6395ae.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/cpu-resources-39ce2f92ae6395ae.yaml -------------------------------------------------------------------------------- /releasenotes/notes/cpu_power-7ab984e60ac79eee.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/cpu_power-7ab984e60ac79eee.yaml -------------------------------------------------------------------------------- /releasenotes/notes/cron-archive-verbose-9ad22f6d02bb9ad5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/cron-archive-verbose-9ad22f6d02bb9ad5.yaml -------------------------------------------------------------------------------- /releasenotes/notes/cross_az_attach-in-cinder-2f13b4fce6a11f4d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/cross_az_attach-in-cinder-2f13b4fce6a11f4d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/custom_provider-29467d209802707d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/custom_provider-29467d209802707d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/default_domain-c3a77897aa75ab0d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/default_domain-c3a77897aa75ab0d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/delayed_nova_compute-23fe926e73fb3717.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/delayed_nova_compute-23fe926e73fb3717.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-client-cad4cec8032c789b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate-client-cad4cec8032c789b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-compute-virtio_nic-004dcfb3791f17b4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate-compute-virtio_nic-004dcfb3791f17b4.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-config_drive_format-967c9ff273dc854b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate-config_drive_format-967c9ff273dc854b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-consoleauth-7c39573925d3f6a7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate-consoleauth-7c39573925d3f6a7.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-hypervisors-d820752c9d739bbe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate-hypervisors-d820752c9d739bbe.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-install-bridge-utils-141a24413b42cb0b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate-install-bridge-utils-141a24413b42cb0b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-install_cinder_client-9b5bc4f9f0ab416e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate-install_cinder_client-9b5bc4f9f0ab416e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-live_migration_tunnelled-b1faa98b2f905d9b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate-live_migration_tunnelled-b1faa98b2f905d9b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-logging-in-init-3031e31ec5362e2c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate-logging-in-init-3031e31ec5362e2c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-monkey_patch-8938ba80e7f2a339.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate-monkey_patch-8938ba80e7f2a339.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-nova-console-e838b5bd58bdec61.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate-nova-console-e838b5bd58bdec61.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-nova-network-quota-opts-dbdb1fc2e454ed83.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate-nova-network-quota-opts-dbdb1fc2e454ed83.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-nova_floating-8d507b9214b2440d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate-nova_floating-8d507b9214b2440d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-novajoin-c602cca8f07083cc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate-novajoin-c602cca8f07083cc.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-opts-for-standalone-api-2fb16814a77706f7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate-opts-for-standalone-api-2fb16814a77706f7.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-passthrough-cdb90e96a74b6b79.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate-passthrough-cdb90e96a74b6b79.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-periodic_interval-2e57ffd7ce5decae.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate-periodic_interval-2e57ffd7ce5decae.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-ratelimit-a72ec8a2efc36e00.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate-ratelimit-a72ec8a2efc36e00.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-removed-api-opts-47cc2cd25e9cf286.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate-removed-api-opts-47cc2cd25e9cf286.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-removed-quota-opts-4827f4022a67d06b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate-removed-quota-opts-4827f4022a67d06b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-scheduler_driver-8f2c60797709ad9a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate-scheduler_driver-8f2c60797709ad9a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-service-validation-30764e37f030aa9a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate-service-validation-30764e37f030aa9a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-upgrade_level_cert-6f7dc745cd652300.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate-upgrade_level_cert-6f7dc745cd652300.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-upgrade_level_network-64301c66337d1ad0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate-upgrade_level_network-64301c66337d1ad0.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-use_forwarded_for-d6b8f36bb949c051.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate-use_forwarded_for-d6b8f36bb949c051.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-vmwareapi-8cc3f06ae45e6c2d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate-vmwareapi-8cc3f06ae45e6c2d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-watch_log_file-761812f9f9d1352c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate-watch_log_file-761812f9f9d1352c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate_auth_strategy-87bf439647037fbd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate_auth_strategy-87bf439647037fbd.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate_auth_uri_parameter-82edf8271e3c276f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate_auth_uri_parameter-82edf8271e3c276f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate_cells_driver_option-3412a439fd137186.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate_cells_driver_option-3412a439fd137186.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate_database_options-8caf6460b39a132a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate_database_options-8caf6460b39a132a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate_fping_path_parameter-1d21fd37491db26f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate_fping_path_parameter-1d21fd37491db26f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate_glance_api_servers-ae08e65b7ebac688.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate_glance_api_servers-ae08e65b7ebac688.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate_idle_timeout_parameter-93d5ad93f8e43c2c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate_idle_timeout_parameter-93d5ad93f8e43c2c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate_image_service-3e54aa3283b3191c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate_image_service-3e54aa3283b3191c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate_keymap_parameter-21b89e7b5d84ee21.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate_keymap_parameter-21b89e7b5d84ee21.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate_network_api_class-557e9ac007c97feb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate_network_api_class-557e9ac007c97feb.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate_notify_on_api_faults-c7eb47adc3c92671.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate_notify_on_api_faults-c7eb47adc3c92671.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate_os_region_name_parameter-a12b9e7b5d8cee38.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate_os_region_name_parameter-a12b9e7b5d8cee38.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate_osapi_v3-6078cf5878b94265.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate_osapi_v3-6078cf5878b94265.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate_pki_related_parameters-bb4a91ed4d5068a5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate_pki_related_parameters-bb4a91ed4d5068a5.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate_placement_deployment-2497e35aa7089a92.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate_placement_deployment-2497e35aa7089a92.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate_rpc_backend_parameter-4ba7bbc47d3df140.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate_rpc_backend_parameter-4ba7bbc47d3df140.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate_signing_dir_parameter-8131a23ef45d3113.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate_signing_dir_parameter-8131a23ef45d3113.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate_v3_params-94268c3453b4712b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate_v3_params-94268c3453b4712b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate_wsdl_location_option-23981a34fe891d36.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecate_wsdl_location_option-23981a34fe891d36.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecated-neutron-options-c506d893a1529ed5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecated-neutron-options-c506d893a1529ed5.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecated-nova-network-1480284ccb3b93cf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecated-nova-network-1480284ccb3b93cf.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecated_parameters-1275a2c1e42ad145.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/deprecated_parameters-1275a2c1e42ad145.yaml -------------------------------------------------------------------------------- /releasenotes/notes/dev_spice_proxy_url-b2cd58b9e3f96e2c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/dev_spice_proxy_url-b2cd58b9e3f96e2c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/disable-apache-ssl-14a2e2c2c4d89dee.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/disable-apache-ssl-14a2e2c2c4d89dee.yaml -------------------------------------------------------------------------------- /releasenotes/notes/disable-live-migration-with-numa-66145efd46bdd146.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/disable-live-migration-with-numa-66145efd46bdd146.yaml -------------------------------------------------------------------------------- /releasenotes/notes/discover_hosts_in_cells_interval-fcee1903fdaa4684.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/discover_hosts_in_cells_interval-fcee1903fdaa4684.yaml -------------------------------------------------------------------------------- /releasenotes/notes/drop-fedora-6722ae14b04142a4.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | upgrade: 3 | - | 4 | Fedora is no longer supported. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/drop_qpid-e7e47f8525c6db6b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/drop_qpid-e7e47f8525c6db6b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/ed25519-key-ce510b4bbbd172b5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/ed25519-key-ce510b4bbbd172b5.yaml -------------------------------------------------------------------------------- /releasenotes/notes/enable_cancel_on_failover-c44f0371af73613a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/enable_cancel_on_failover-c44f0371af73613a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/enable_perf_events-448c7c10e8965286.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/enable_perf_events-448c7c10e8965286.yaml -------------------------------------------------------------------------------- /releasenotes/notes/enabled_apis-55985bb85989601c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/enabled_apis-55985bb85989601c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/executor_thread_pool_size-8ad5ffa07de7b44d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/executor_thread_pool_size-8ad5ffa07de7b44d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/extra_cpu_flags-2de6915770ac9514.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/extra_cpu_flags-2de6915770ac9514.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fallback_to_redhat_intelligently-d3a158ae263f6103.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/fallback_to_redhat_intelligently-d3a158ae263f6103.yaml -------------------------------------------------------------------------------- /releasenotes/notes/filter-scheduler-multiplier-bobcat-04583f97be576173.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/filter-scheduler-multiplier-bobcat-04583f97be576173.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-pci-config-params-bfa54021a532c237.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/fix-pci-config-params-bfa54021a532c237.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-quota-class-898e279b0b2251df.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/fix-quota-class-898e279b0b2251df.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix_log_dir_documentation-293f082d64a379f2.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | fixes: 3 | - Fixed documentation for log_dir parameter 4 | -------------------------------------------------------------------------------- /releasenotes/notes/fix_region_name_in_providers-a0a3b7c579d163dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/fix_region_name_in_providers-a0a3b7c579d163dc.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix_vncserver_listen-e48f7c8b9cda25e4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/fix_vncserver_listen-e48f7c8b9cda25e4.yaml -------------------------------------------------------------------------------- /releasenotes/notes/generic-mdevs-627ccb29320cd442.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/generic-mdevs-627ccb29320cd442.yaml -------------------------------------------------------------------------------- /releasenotes/notes/glance-num_retries-37361ce8905d01c8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/glance-num_retries-37361ce8905d01c8.yaml -------------------------------------------------------------------------------- /releasenotes/notes/glance-opts-cleanup-47de15f1bcd3a1b3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/glance-opts-cleanup-47de15f1bcd3a1b3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/glance_image_copy-b4f888c8f981e6b3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/glance_image_copy-b4f888c8f981e6b3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/httpd-logs-piped-syslog-ecd9fdbb8811c5ce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/httpd-logs-piped-syslog-ecd9fdbb8811c5ce.yaml -------------------------------------------------------------------------------- /releasenotes/notes/image-download-via-rbd-159f6ccd7fada555.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/image-download-via-rbd-159f6ccd7fada555.yaml -------------------------------------------------------------------------------- /releasenotes/notes/implement_openstack_client_for_providers-5c83fdf2128197cb.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Using OpenStack client for Nova providers 4 | -------------------------------------------------------------------------------- /releasenotes/notes/independent-class-for-glance-0d62d05fe2477036.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/independent-class-for-glance-0d62d05fe2477036.yaml -------------------------------------------------------------------------------- /releasenotes/notes/initial_allocation_ratio-27a45a6616382559.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/initial_allocation_ratio-27a45a6616382559.yaml -------------------------------------------------------------------------------- /releasenotes/notes/ironic-distribution-b36df55db3d952e5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/ironic-distribution-b36df55db3d952e5.yaml -------------------------------------------------------------------------------- /releasenotes/notes/ironic-more-opts-820a0c30817042b0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/ironic-more-opts-820a0c30817042b0.yaml -------------------------------------------------------------------------------- /releasenotes/notes/key-manager-session-options-a3cf6f292d5d0879.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/key-manager-session-options-a3cf6f292d5d0879.yaml -------------------------------------------------------------------------------- /releasenotes/notes/keymgr-opts-415025c5134a413b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/keymgr-opts-415025c5134a413b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/keystone-auth-name-211cfa37fbe78c8c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/keystone-auth-name-211cfa37fbe78c8c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/keystone-authtoken-interface-eb3ffd7e39795f95.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/keystone-authtoken-interface-eb3ffd7e39795f95.yaml -------------------------------------------------------------------------------- /releasenotes/notes/keystone-authtoken-service_type-6b60c7d5840cbefe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/keystone-authtoken-service_type-6b60c7d5840cbefe.yaml -------------------------------------------------------------------------------- /releasenotes/notes/keystone-parameters-2222c1f0038d641b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/keystone-parameters-2222c1f0038d641b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/keystone-service_type-b8615b63ba5ff197.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/keystone-service_type-b8615b63ba5ff197.yaml -------------------------------------------------------------------------------- /releasenotes/notes/keystone_v3_neutron-62f3f801039ddcc8.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Align nova/neutron configuration for Keystone v3. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/libvirt-ca-file-crl-file-c6672aa3d12382cb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvirt-ca-file-crl-file-c6672aa3d12382cb.yaml -------------------------------------------------------------------------------- /releasenotes/notes/libvirt-daemon-1cfe1bd9f29708fe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvirt-daemon-1cfe1bd9f29708fe.yaml -------------------------------------------------------------------------------- /releasenotes/notes/libvirt-device_detach-4873688e044e1aaf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvirt-device_detach-4873688e044e1aaf.yaml -------------------------------------------------------------------------------- /releasenotes/notes/libvirt-enabled-perf-events-fix-79be68140b4e9a81.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvirt-enabled-perf-events-fix-79be68140b4e9a81.yaml -------------------------------------------------------------------------------- /releasenotes/notes/libvirt-ensure_package-6136e2ae53a04974.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvirt-ensure_package-6136e2ae53a04974.yaml -------------------------------------------------------------------------------- /releasenotes/notes/libvirt-guests-params-e895c3e8d59384a3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvirt-guests-params-e895c3e8d59384a3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/libvirt-migration-downtime-1e9c2df595bb5cd3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvirt-migration-downtime-1e9c2df595bb5cd3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/libvirt-networks-742a45231f4ffdb3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvirt-networks-742a45231f4ffdb3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/libvirt-nfs_mount_point_base-c3349d11dcb6eae7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvirt-nfs_mount_point_base-c3349d11dcb6eae7.yaml -------------------------------------------------------------------------------- /releasenotes/notes/libvirt-num_volume_scan_tries-505bfb29de5dd468.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvirt-num_volume_scan_tries-505bfb29de5dd468.yaml -------------------------------------------------------------------------------- /releasenotes/notes/libvirt-opts-cleanup-e0a0895882303e6f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvirt-opts-cleanup-e0a0895882303e6f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/libvirt-opts-further-cleanup-822207eb74910cff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvirt-opts-further-cleanup-822207eb74910cff.yaml -------------------------------------------------------------------------------- /releasenotes/notes/libvirt-ovs_timeout-832a00ff71950dd3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvirt-ovs_timeout-832a00ff71950dd3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/libvirt-qemu-group-8430caa099147529.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvirt-qemu-group-8430caa099147529.yaml -------------------------------------------------------------------------------- /releasenotes/notes/libvirt-qemu-limits-efb8668de1de48e8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvirt-qemu-limits-efb8668de1de48e8.yaml -------------------------------------------------------------------------------- /releasenotes/notes/libvirt-rbd-opts-95622d49f17bb5d1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvirt-rbd-opts-95622d49f17bb5d1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/libvirt-secret-ceph-b4b11706463f13c6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvirt-secret-ceph-b4b11706463f13c6.yaml -------------------------------------------------------------------------------- /releasenotes/notes/libvirt-swtpm-4306f35771b7d253.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvirt-swtpm-4306f35771b7d253.yaml -------------------------------------------------------------------------------- /releasenotes/notes/libvirt-systemd-socket-units-f7b0fc3a4f3c5219.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvirt-systemd-socket-units-f7b0fc3a4f3c5219.yaml -------------------------------------------------------------------------------- /releasenotes/notes/libvirt-tls-key-and-cert-539e13253c28453d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvirt-tls-key-and-cert-539e13253c28453d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/libvirt-virtlogd-f4e2618a87fbab5a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvirt-virtlogd-f4e2618a87fbab5a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/libvirt-volume_enforce_multipath-14f9b3a1fb1473d2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvirt-volume_enforce_multipath-14f9b3a1fb1473d2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/libvirt-wait_soft_reboot_seconds-596390a15caf1c1e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvirt-wait_soft_reboot_seconds-596390a15caf1c1e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/libvirt_listen_address-ee1f4a0bef0c5bd1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvirt_listen_address-ee1f4a0bef0c5bd1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/libvirt_num_pcie_ports-427923117bd13a65.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvirt_num_pcie_ports-427923117bd13a65.yaml -------------------------------------------------------------------------------- /releasenotes/notes/libvirt_sysinfo_serial-e1603d45446726c3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvirt_sysinfo_serial-e1603d45446726c3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/libvirtd-class-88111b4a2aa40336.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvirtd-class-88111b4a2aa40336.yaml -------------------------------------------------------------------------------- /releasenotes/notes/libvirtd-log-outputs-cd93433d0bfe2e63.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvirtd-log-outputs-cd93433d0bfe2e63.yaml -------------------------------------------------------------------------------- /releasenotes/notes/libvirtd-resource-types-e4feb2419dccc39a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvirtd-resource-types-e4feb2419dccc39a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/libvirtd_log_filters-22e461e00f482d69.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvirtd_log_filters-22e461e00f482d69.yaml -------------------------------------------------------------------------------- /releasenotes/notes/libvirtd_tls_priority-1e66515aa1da7977.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvirtd_tls_priority-1e66515aa1da7977.yaml -------------------------------------------------------------------------------- /releasenotes/notes/libvit_micro_service-ba1cd4ad8bda4e0d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/libvit_micro_service-ba1cd4ad8bda4e0d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/live_migration_bandwidth-a1c4e2f778cc542d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/live_migration_bandwidth-a1c4e2f778cc542d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/live_migration_ssh-00596d9c92a76759.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/live_migration_ssh-00596d9c92a76759.yaml -------------------------------------------------------------------------------- /releasenotes/notes/live_migration_wait_for_vif_plug-b50f7840c4da6659.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/live_migration_wait_for_vif_plug-b50f7840c4da6659.yaml -------------------------------------------------------------------------------- /releasenotes/notes/local_metadata_per_cell-5b8f56d8d97510a3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/local_metadata_per_cell-5b8f56d8d97510a3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/log-json-97ad59aa72f31a67.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/log-json-97ad59aa72f31a67.yaml -------------------------------------------------------------------------------- /releasenotes/notes/long_rpc_timeout-c7f3374055798971.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/long_rpc_timeout-c7f3374055798971.yaml -------------------------------------------------------------------------------- /releasenotes/notes/manage-backend-param-b29e0be3dd8e14c3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/manage-backend-param-b29e0be3dd8e14c3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/max_request_body_size-97fb21a434aa250b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/max_request_body_size-97fb21a434aa250b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/mdev-max_instances-eeba30ae38b782b4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/mdev-max_instances-eeba30ae38b782b4.yaml -------------------------------------------------------------------------------- /releasenotes/notes/mdev-opts-f0f62793096d890c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/mdev-opts-f0f62793096d890c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/memcache_pool_flush_on_reconnect-a1bece77d65d68a1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/memcache_pool_flush_on_reconnect-a1bece77d65d68a1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/memcache_socket_timeout-babb40e8ed001caf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/memcache_socket_timeout-babb40e8ed001caf.yaml -------------------------------------------------------------------------------- /releasenotes/notes/migrate-verify_glance_signatures-3fbef6e4f0d7f49f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/migrate-verify_glance_signatures-3fbef6e4f0d7f49f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/migration-libvirt-cleanup-6cf91ed5dd736420.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | upgrade: 3 | - | 4 | Now puppet-nova requires libvirt 5.6 or later. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/migration_inbound_addr-2a6ee64ed0cc20b5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/migration_inbound_addr-2a6ee64ed0cc20b5.yaml -------------------------------------------------------------------------------- /releasenotes/notes/mitaka_drepecations-704e9befd68c3c6d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/mitaka_drepecations-704e9befd68c3c6d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/mitaka_features-ddeb388524fa6590.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/mitaka_features-ddeb388524fa6590.yaml -------------------------------------------------------------------------------- /releasenotes/notes/modular-libvirt-52048e6e9935c25c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/modular-libvirt-52048e6e9935c25c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/move-pci-config-to-pci-group-441c47b2d1c36837.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/move-pci-config-to-pci-group-441c47b2d1c36837.yaml -------------------------------------------------------------------------------- /releasenotes/notes/move-scheduler-ratios-to-top-level-76c6383d828e6d4a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/move-scheduler-ratios-to-top-level-76c6383d828e6d4a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/neutron-http_retries-1fb5670b592e863f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/neutron-http_retries-1fb5670b592e863f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/neutron-service_type-1c16eae07b330f87.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/neutron-service_type-1c16eae07b330f87.yaml -------------------------------------------------------------------------------- /releasenotes/notes/new-placement-package-handling-e7870bfe4132782f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/new-placement-package-handling-e7870bfe4132782f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/newton_deprecations-10bab2059dd30043.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/newton_deprecations-10bab2059dd30043.yaml -------------------------------------------------------------------------------- /releasenotes/notes/newton_deprecations2-397e84f01b7a283e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/newton_deprecations2-397e84f01b7a283e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/notification-retry-a81525af6695b76b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/notification-retry-a81525af6695b76b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/nova-aggregate-hosts-fd40d74a46193941.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/nova-aggregate-hosts-fd40d74a46193941.yaml -------------------------------------------------------------------------------- /releasenotes/notes/nova-api-dhcp_domain-1e9cc68843aaaa35.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/nova-api-dhcp_domain-1e9cc68843aaaa35.yaml -------------------------------------------------------------------------------- /releasenotes/notes/nova-cert-72762e4f0850ad58.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/nova-cert-72762e4f0850ad58.yaml -------------------------------------------------------------------------------- /releasenotes/notes/nova-compute-rbd-libvirt-secret-2c78325557a27411.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/nova-compute-rbd-libvirt-secret-2c78325557a27411.yaml -------------------------------------------------------------------------------- /releasenotes/notes/nova-ironic-common-api_endpoint-be452cc86092eb4d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/nova-ironic-common-api_endpoint-be452cc86092eb4d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/nova-ironic-common-region_name-4ba5bacbfdf5ed47.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/nova-ironic-common-region_name-4ba5bacbfdf5ed47.yaml -------------------------------------------------------------------------------- /releasenotes/notes/nova-ironic-common-updates-c855c6e82281de9d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/nova-ironic-common-updates-c855c6e82281de9d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/nova-manage-user-16e7145d0c10bf57.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/nova-manage-user-16e7145d0c10bf57.yaml -------------------------------------------------------------------------------- /releasenotes/notes/nova-net-deprecation-349848b17e43b217.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/nova-net-deprecation-349848b17e43b217.yaml -------------------------------------------------------------------------------- /releasenotes/notes/nova-placement-30566167309fd124.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/nova-placement-30566167309fd124.yaml -------------------------------------------------------------------------------- /releasenotes/notes/nova-placement-remove-os_interface-5b02ab5f968b94b7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/nova-placement-remove-os_interface-5b02ab5f968b94b7.yaml -------------------------------------------------------------------------------- /releasenotes/notes/nova-remove-deprecated-fa7d74be4fe4dcf9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/nova-remove-deprecated-fa7d74be4fe4dcf9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/nova-scheduler-filter-defaults-23de047328dfd629.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/nova-scheduler-filter-defaults-23de047328dfd629.yaml -------------------------------------------------------------------------------- /releasenotes/notes/nova-scheduler-filter-prefix-b3753153ab9e0f87.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/nova-scheduler-filter-prefix-b3753153ab9e0f87.yaml -------------------------------------------------------------------------------- /releasenotes/notes/nova-utilities-ea3f8c15895cb820.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | other: 3 | - Remove nova::utilities class and tests. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/nova_flavor-project_name-fbab75b57ad9d4b3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/nova_flavor-project_name-fbab75b57ad9d4b3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/nova_libvirt_max_client_requests-1709c1d7a282264d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/nova_libvirt_max_client_requests-1709c1d7a282264d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/nova_metadata_wsgi-445c38efc7ba5f41.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/nova_metadata_wsgi-445c38efc7ba5f41.yaml -------------------------------------------------------------------------------- /releasenotes/notes/nova_network_provider-10b28e14d9db08f0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/nova_network_provider-10b28e14d9db08f0.yaml -------------------------------------------------------------------------------- /releasenotes/notes/nova_service_provider-f9c1dc94c575692c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/nova_service_provider-f9c1dc94c575692c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/novajoin-authtoken-params-f5b5a77a39e7eccd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/novajoin-authtoken-params-f5b5a77a39e7eccd.yaml -------------------------------------------------------------------------------- /releasenotes/notes/novajoin-common-auth-parameters-1d77e8a770041548.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/novajoin-common-auth-parameters-1d77e8a770041548.yaml -------------------------------------------------------------------------------- /releasenotes/notes/novajoin-policy-2c219cf32a322d4b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/novajoin-policy-2c219cf32a322d4b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/novnc-opts-877778502b8db25d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/novnc-opts-877778502b8db25d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/novncproxy_base_url-ec29bb6c3092a43b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/novncproxy_base_url-ec29bb6c3092a43b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/numa-aware-vswitches-896f6d3bf8c8c123.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/numa-aware-vswitches-896f6d3bf8c8c123.yaml -------------------------------------------------------------------------------- /releasenotes/notes/openstack_db_tag-b26aeeb1ec92e5a0.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add openstack-db tag to Exec that run db-sync. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/os_brick-d7164dfcb0319654.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/os_brick-d7164dfcb0319654.yaml -------------------------------------------------------------------------------- /releasenotes/notes/os_workers_for_worker_count-46575cd2d0872cff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/os_workers_for_worker_count-46575cd2d0872cff.yaml -------------------------------------------------------------------------------- /releasenotes/notes/oslo-reports-34324f27e342aa40.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/oslo-reports-34324f27e342aa40.yaml -------------------------------------------------------------------------------- /releasenotes/notes/oslo_policy-enforce_scope-bf46392b4cb2055e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/oslo_policy-enforce_scope-bf46392b4cb2055e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/pci-report_in_placement-ad971d181e6d3c4f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/pci-report_in_placement-ad971d181e6d3c4f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/pci_params_format-bf62bf47585ad1cc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/pci_params_format-bf62bf47585ad1cc.yaml -------------------------------------------------------------------------------- /releasenotes/notes/periodic_fuzzy_delay-0e21c3c4235aa399.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/periodic_fuzzy_delay-0e21c3c4235aa399.yaml -------------------------------------------------------------------------------- /releasenotes/notes/pike-cpu-removal-0cbcbf286de46228.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/pike-cpu-removal-0cbcbf286de46228.yaml -------------------------------------------------------------------------------- /releasenotes/notes/policy-dirs-6f828a3a98b81a9f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/policy-dirs-6f828a3a98b81a9f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/policy-enforce_new_defaults-fe3556fffe458f34.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/policy-enforce_new_defaults-fe3556fffe458f34.yaml -------------------------------------------------------------------------------- /releasenotes/notes/policy_default_rule-1d34663bc7bcfa52.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/policy_default_rule-1d34663bc7bcfa52.yaml -------------------------------------------------------------------------------- /releasenotes/notes/policy_purge_config-6b6302d91f8d58a9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/policy_purge_config-6b6302d91f8d58a9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/prepare-to-change-apache-ssl-571d079722b20702.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/prepare-to-change-apache-ssl-571d079722b20702.yaml -------------------------------------------------------------------------------- /releasenotes/notes/properties-hash-1d78c19fa202742b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/properties-hash-1d78c19fa202742b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/provider-system-scope-f4b1966755c2277e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/provider-system-scope-f4b1966755c2277e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/puppet-8-977d2b53da7fa8bd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/puppet-8-977d2b53da7fa8bd.yaml -------------------------------------------------------------------------------- /releasenotes/notes/puppet4-mysql-func-cb910313316f65ed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/puppet4-mysql-func-cb910313316f65ed.yaml -------------------------------------------------------------------------------- /releasenotes/notes/pymysql-e57bf1f0289dd426.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/pymysql-e57bf1f0289dd426.yaml -------------------------------------------------------------------------------- /releasenotes/notes/qemu-block-extra-998bf6f1d9d75eda.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/qemu-block-extra-998bf6f1d9d75eda.yaml -------------------------------------------------------------------------------- /releasenotes/notes/qemu-default-cpu-mode-12f50dc53b32c5bb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/qemu-default-cpu-mode-12f50dc53b32c5bb.yaml -------------------------------------------------------------------------------- /releasenotes/notes/qemu-default_tls_verify-57e7afd6670afec2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/qemu-default_tls_verify-57e7afd6670afec2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/qemu-migration-opts-d4d52322ed7c705e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/qemu-migration-opts-d4d52322ed7c705e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/qemu-user-2dfecf8a9291b3a2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/qemu-user-2dfecf8a9291b3a2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/qemu_config-9c7a99cf69972152.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/qemu_config-9c7a99cf69972152.yaml -------------------------------------------------------------------------------- /releasenotes/notes/query_placement_for_image_type-351c3200235aa579.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/query_placement_for_image_type-351c3200235aa579.yaml -------------------------------------------------------------------------------- /releasenotes/notes/queue_manager-and-stream_fanout-55a335733a52f7f6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/queue_manager-and-stream_fanout-55a335733a52f7f6.yaml -------------------------------------------------------------------------------- /releasenotes/notes/quota-15b9ac2502b3c7c9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/quota-15b9ac2502b3c7c9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/rabbit-quorum-queue-d2d9757075da6767.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/rabbit-quorum-queue-d2d9757075da6767.yaml -------------------------------------------------------------------------------- /releasenotes/notes/rabbit_qos_prefetch_count-44460b92b2e52a4b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/rabbit_qos_prefetch_count-44460b92b2e52a4b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/rabbit_retry_interval-7f42d6339afafdf1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/rabbit_retry_interval-7f42d6339afafdf1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/rabbit_transient_queues_ttl-f1b43dda25844321.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/rabbit_transient_queues_ttl-f1b43dda25844321.yaml -------------------------------------------------------------------------------- /releasenotes/notes/rabbit_transient_quorum_queue-105e50d5e512ce8f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/rabbit_transient_quorum_queue-105e50d5e512ce8f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/rabbitmq-heartbeat-over-pthread-9b65893bf0406753.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/rabbitmq-heartbeat-over-pthread-9b65893bf0406753.yaml -------------------------------------------------------------------------------- /releasenotes/notes/recheck_quota-5fed41afe991bd75.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/recheck_quota-5fed41afe991bd75.yaml -------------------------------------------------------------------------------- /releasenotes/notes/release-note-ubuntu-py3-79c7805cfb29dc0f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/release-note-ubuntu-py3-79c7805cfb29dc0f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-amqp1-e66466c5110cac10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-amqp1-e66466c5110cac10.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-api_port-09f5fd1769c94ae7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-api_port-09f5fd1769c94ae7.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-auth-uri-6e98c7c2bf6a8932.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-auth-uri-6e98c7c2bf6a8932.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-auth_strategy-68c0fd310891f1a2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-auth_strategy-68c0fd310891f1a2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-cells-v1-62de6d3d3a782df1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-cells-v1-62de6d3d3a782df1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-centos-8-a6433d4b189d29ab.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-centos-8-a6433d4b189d29ab.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-cinder-opts-fa152e7b58c61bd8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-cinder-opts-fa152e7b58c61bd8.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-cinder-region_name-1edd4b931fe0e7ea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-cinder-region_name-1edd4b931fe0e7ea.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-compute-pci_passthrough-967e7f041e433151.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-compute-pci_passthrough-967e7f041e433151.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-compute-virtio_nic-33319c3a5b6e8cc3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-compute-virtio_nic-33319c3a5b6e8cc3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-consoleauth-063eb73b3ec5c1e3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-consoleauth-063eb73b3ec5c1e3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-database-params-ce46e46c43f7beca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-database-params-ce46e46c43f7beca.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-deprecated-logging-e73e167161478f2a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-deprecated-logging-e73e167161478f2a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-deprecated-quota-aee8756d8d13bd8b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-deprecated-quota-aee8756d8d13bd8b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-enabled_vgpu_types-8ba902975a329688.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-enabled_vgpu_types-8ba902975a329688.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-install-bridge-utils-2043526f3cb40ad1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-install-bridge-utils-2043526f3cb40ad1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-install_cinder_client-a08aaa3045740ee9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-install_cinder_client-a08aaa3045740ee9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-ipa_hostname-6b7a75a770e1d940.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-ipa_hostname-6b7a75a770e1d940.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-ironic-api_endpoint-696cf06a78d7c2ad.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-ironic-api_endpoint-696cf06a78d7c2ad.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-metadata-enabled_apis-c4527287a1876aa4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-metadata-enabled_apis-c4527287a1876aa4.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-monkey_patch-33c456287e8f0ef0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-monkey_patch-33c456287e8f0ef0.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-nova-image_service-850481867b070ce9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-nova-image_service-850481867b070ce9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-nova-network-ac5d104fd47e3efc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-nova-network-ac5d104fd47e3efc.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-nova-objectstore-options-20059f3096c168db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-nova-objectstore-options-20059f3096c168db.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-nova_floating-bc0c6ace911f9c51.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-nova_floating-bc0c6ace911f9c51.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-nova_paste_api_ini-9b48d69078511b0e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-nova_paste_api_ini-9b48d69078511b0e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-novajoin-21f76d1fe28c305e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-novajoin-21f76d1fe28c305e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-periodic_interval-299ed428b67b45ba.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-periodic_interval-299ed428b67b45ba.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-puppet-6-56e31b6afcb3547b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-puppet-6-56e31b6afcb3547b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-puppet-7-213d2501df98117e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-puppet-7-213d2501df98117e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-quota-params-084dba5d3dd63785.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-quota-params-084dba5d3dd63785.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-ratelimit-13cd3c75f4d0d292.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-ratelimit-13cd3c75f4d0d292.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-rbd_keyring-8a918f435c29735e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-rbd_keyring-8a918f435c29735e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-separate-libvirtd-config-281da6b651740a61.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-separate-libvirtd-config-281da6b651740a61.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-service-validation-b93f63908515c246.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-service-validation-b93f63908515c246.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-sg-resource-types-de1a92488d6f1c19.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-sg-resource-types-de1a92488d6f1c19.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-upgrade_level_console-b986209c74645308.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-upgrade_level_console-b986209c74645308.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-upgrade_level_network-e485e6fdb0c17c30.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-upgrade_level_network-e485e6fdb0c17c30.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-use_forwarded_for-1249eace95ebf469.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-use_forwarded_for-1249eace95ebf469.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-useless-options-a93512d9834fe223.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-useless-options-a93512d9834fe223.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-v3api-endpoint-69f2e645efb0a7c8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-v3api-endpoint-69f2e645efb0a7c8.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-vcpu_pin_set-165a7b2d4230c978.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-vcpu_pin_set-165a7b2d4230c978.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-vendordata-from-compute-5751b84a5451164e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-vendordata-from-compute-5751b84a5451164e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-vendordata_caller-4aef7b3fa6565e99.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-vendordata_caller-4aef7b3fa6565e99.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-vgpu-60c62ccfcfcfbf49.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-vgpu-60c62ccfcfcfbf49.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-virtlogd_config-54e32d679037ce9e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-virtlogd_config-54e32d679037ce9e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-vmware-864e23f5d6b030f3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-vmware-864e23f5d6b030f3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-watch_log_file-d404d1e6c119afee.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-watch_log_file-d404d1e6c119afee.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-xenapi-cd46a45a9a9718be.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove-xenapi-cd46a45a9a9718be.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove_baremetal_filters-1205c7259536c7bc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove_baremetal_filters-1205c7259536c7bc.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove_class_nova::rabbitmq-3e04bc52ea21032d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove_class_nova::rabbitmq-3e04bc52ea21032d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove_class_nova_network-ad07a2a73a9fd902.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove_class_nova_network-ad07a2a73a9fd902.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove_class_nova_wsgi_apache-5385298a8245280b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove_class_nova_wsgi_apache-5385298a8245280b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove_deprecated_cells_driver_option-14a58961ef261528.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | upgrade: 3 | - The 'driver' option in [cells] is removed in Ocata. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/remove_deprecated_ironic_auth_options-9e3a7afc21b2037d.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | upgrade: 3 | - Removes Ironic deprecated admin_* authtoken options. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/remove_deprecated_keymap-option-96beecb094f35644.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | upgrade: 3 | - Deprecated keymap option has been removed. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/remove_deprecated_quota_options-c689d10725739a6c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove_deprecated_quota_options-c689d10725739a6c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove_extra_params-e4321bffd2a077ee.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove_extra_params-e4321bffd2a077ee.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove_idle_timeout_option-af7594b76d5ffdbf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove_idle_timeout_option-af7594b76d5ffdbf.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove_keymap_parameter-85462c966a30e7d9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove_keymap_parameter-85462c966a30e7d9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove_nova_cert-bd8d0a14ff5e272e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove_nova_cert-bd8d0a14ff5e272e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove_nova_start-92f62ea6d3087f86.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove_nova_start-92f62ea6d3087f86.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove_old_authtoken_options-f551ca427590e8b7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove_old_authtoken_options-f551ca427590e8b7.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove_pci_passthrough-72bc7002ec8436b2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove_pci_passthrough-72bc7002ec8436b2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove_qpid-0b446db43fdea617.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove_qpid-0b446db43fdea617.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove_qpid_references-0ce3d525e7e32ae4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove_qpid_references-0ce3d525e7e32ae4.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove_revocation_cache_time-1656a377690baaac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove_revocation_cache_time-1656a377690baaac.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove_revocation_cache_time-9acf28ac1fd14e83.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove_revocation_cache_time-9acf28ac1fd14e83.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove_security_group_api-31ecb1a375826d92.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove_security_group_api-31ecb1a375826d92.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove_unused_kernels_option-1328af2a6938e712.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove_unused_kernels_option-1328af2a6938e712.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove_use_local-001a5010d68a58ed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove_use_local-001a5010d68a58ed.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove_useless_method-6ad1b132053f7da9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove_useless_method-6ad1b132053f7da9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove_useless_parameter-b6a260ede152aa09.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove_useless_parameter-b6a260ede152aa09.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove_useless_parameter-cfb0bc82dd6693e9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove_useless_parameter-cfb0bc82dd6693e9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove_verbose-ba40afdc93b87956.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove_verbose-ba40afdc93b87956.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove_wsdl_location-29bbd24e91c82bea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/remove_wsdl_location-29bbd24e91c82bea.yaml -------------------------------------------------------------------------------- /releasenotes/notes/rename-to-nova_api_paste_ini-0e04a379c5c4157a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/rename-to-nova_api_paste_ini-0e04a379c5c4157a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/require-images_type-939719fcc3a5d37f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/require-images_type-939719fcc3a5d37f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/reserved_host_cpus-7a2c7ed3047834c2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/reserved_host_cpus-7a2c7ed3047834c2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/reserved_host_disk-5caca50abf9e74b4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/reserved_host_disk-5caca50abf9e74b4.yaml -------------------------------------------------------------------------------- /releasenotes/notes/revert-provider-system-scope-502934bbfcbd2c66.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/revert-provider-system-scope-502934bbfcbd2c66.yaml -------------------------------------------------------------------------------- /releasenotes/notes/rootwrap-7376efdc78fc6fdf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/rootwrap-7376efdc78fc6fdf.yaml -------------------------------------------------------------------------------- /releasenotes/notes/rx_tx_queue_size-80a24b35907e4f5e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/rx_tx_queue_size-80a24b35907e4f5e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/scheduler-options-56584924232d7ab7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/scheduler-options-56584924232d7ab7.yaml -------------------------------------------------------------------------------- /releasenotes/notes/scheduler-workers-13c4cdee9f6de5da.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/scheduler-workers-13c4cdee9f6de5da.yaml -------------------------------------------------------------------------------- /releasenotes/notes/scheduler_entrypoints-467a5083d8f65e3d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/scheduler_entrypoints-467a5083d8f65e3d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/security_group_provider-50c27926baa9e015.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/security_group_provider-50c27926baa9e015.yaml -------------------------------------------------------------------------------- /releasenotes/notes/service-role-505dbd92e69c44e9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/service-role-505dbd92e69c44e9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/service_token-aa4c96bd76469c56.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/service_token-aa4c96bd76469c56.yaml -------------------------------------------------------------------------------- /releasenotes/notes/service_token_roles_required-98f582fb58fe82ee.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/service_token_roles_required-98f582fb58fe82ee.yaml -------------------------------------------------------------------------------- /releasenotes/notes/spice-enabled-78f1bf8f333928aa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/spice-enabled-78f1bf8f333928aa.yaml -------------------------------------------------------------------------------- /releasenotes/notes/stop-installing-numpy-01d4f2256e822f1c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/stop-installing-numpy-01d4f2256e822f1c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/stop-reading-authtoken-opts-028c5c463f97b1fa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/stop-reading-authtoken-opts-028c5c463f97b1fa.yaml -------------------------------------------------------------------------------- /releasenotes/notes/support_openstack_client-9868aa7535d65774.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | other: 3 | - Add support of OpenStack client for Nova providers. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/switch_default_api_21-292e1c46c011210f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/switch_default_api_21-292e1c46c011210f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/switch_to_oslo_everywhere-f83b00deac0c149d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/switch_to_oslo_everywhere-f83b00deac0c149d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/switch_to_oslo_messaging-3e5b3330534747ba.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/switch_to_oslo_messaging-3e5b3330534747ba.yaml -------------------------------------------------------------------------------- /releasenotes/notes/swtpm-7d012dfed4c5320a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/swtpm-7d012dfed4c5320a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/sync_power_state_interval-8dcccedd67fad69c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/sync_power_state_interval-8dcccedd67fad69c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/system_scope-all-3d705c45620c2959.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/system_scope-all-3d705c45620c2959.yaml -------------------------------------------------------------------------------- /releasenotes/notes/system_scope-keystone-443335bece968e41.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/system_scope-keystone-443335bece968e41.yaml -------------------------------------------------------------------------------- /releasenotes/notes/system_scope-keystone-ed62f90dc93ea10d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/system_scope-keystone-ed62f90dc93ea10d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/system_scope-neutron-6d5421393cbf7759.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/system_scope-neutron-6d5421393cbf7759.yaml -------------------------------------------------------------------------------- /releasenotes/notes/system_scope-novajoin-keystone-5be4c7f5240e74d9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/system_scope-novajoin-keystone-5be4c7f5240e74d9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/system_scope-placement-e92481eb296c9e57.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/system_scope-placement-e92481eb296c9e57.yaml -------------------------------------------------------------------------------- /releasenotes/notes/tb_cache_size-68e4d02b579a4a50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/tb_cache_size-68e4d02b579a4a50.yaml -------------------------------------------------------------------------------- /releasenotes/notes/ubuntu-jammy-6f5ae2080baa0b41.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/ubuntu-jammy-6f5ae2080baa0b41.yaml -------------------------------------------------------------------------------- /releasenotes/notes/ubuntu-libvirt-name-change-f9a15b1e5e67176c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/ubuntu-libvirt-name-change-f9a15b1e5e67176c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/ubuntu-noble-70fba03573d51260.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/ubuntu-noble-70fba03573d51260.yaml -------------------------------------------------------------------------------- /releasenotes/notes/undeprecate-vmwareapi-1e32ae1ad843433c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/undeprecate-vmwareapi-1e32ae1ad843433c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/unified-limit-93329f1bccb6628e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/unified-limit-93329f1bccb6628e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/unified-limits-opts-683eaf00a60d7b69.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/unified-limits-opts-683eaf00a60d7b69.yaml -------------------------------------------------------------------------------- /releasenotes/notes/upgrade_level_cert-9b65143963092747.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/upgrade_level_cert-9b65143963092747.yaml -------------------------------------------------------------------------------- /releasenotes/notes/upgrade_levels-cells-v1-b411b2e4305dcd94.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/upgrade_levels-cells-v1-b411b2e4305dcd94.yaml -------------------------------------------------------------------------------- /releasenotes/notes/use-reno-1caaec4ba5aa4285.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/use-reno-1caaec4ba5aa4285.yaml -------------------------------------------------------------------------------- /releasenotes/notes/uwsgi-a9f90e3a5148a7f7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/uwsgi-a9f90e3a5148a7f7.yaml -------------------------------------------------------------------------------- /releasenotes/notes/vendordata-dynamic-plugin-auth-149cd7ff53fc731b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/vendordata-dynamic-plugin-auth-149cd7ff53fc731b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/verbose-deprecation-16e8fbc25c1d66b4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/verbose-deprecation-16e8fbc25c1d66b4.yaml -------------------------------------------------------------------------------- /releasenotes/notes/vgpu-devices-mapping-7553b329d58fa8c4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/vgpu-devices-mapping-7553b329d58fa8c4.yaml -------------------------------------------------------------------------------- /releasenotes/notes/vgpu_devices-4441729018e59ee1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/vgpu_devices-4441729018e59ee1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/virsh-secret-uuid-c1e4c39473d45300.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/virsh-secret-uuid-c1e4c39473d45300.yaml -------------------------------------------------------------------------------- /releasenotes/notes/virtlock-virtlog-services-40ab5eae62817df7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/virtlock-virtlog-services-40ab5eae62817df7.yaml -------------------------------------------------------------------------------- /releasenotes/notes/virtlockd-d412855bb1536dea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/virtlockd-d412855bb1536dea.yaml -------------------------------------------------------------------------------- /releasenotes/notes/virtlogd_config-1bcf0201932c2cb2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/virtlogd_config-1bcf0201932c2cb2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/vmware-default-410fffde49744341.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/vmware-default-410fffde49744341.yaml -------------------------------------------------------------------------------- /releasenotes/notes/vmware_updates-9ead09cc33383d5f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/vmware_updates-9ead09cc33383d5f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/vnc_tls-cfea520d82511758.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/vnc_tls-cfea520d82511758.yaml -------------------------------------------------------------------------------- /releasenotes/notes/workarounds-skip-cpu-compare-64471cc75d3175b3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/workarounds-skip-cpu-compare-64471cc75d3175b3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/wsgi_process_options-f8e93a0bb83e0bc8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/wsgi_process_options-f8e93a0bb83e0bc8.yaml -------------------------------------------------------------------------------- /releasenotes/notes/xenserver-8eb20faa5f230dfd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/notes/xenserver-8eb20faa5f230dfd.yaml -------------------------------------------------------------------------------- /releasenotes/source/2023.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/source/2023.1.rst -------------------------------------------------------------------------------- /releasenotes/source/2023.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/source/2023.2.rst -------------------------------------------------------------------------------- /releasenotes/source/2024.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/source/2024.1.rst -------------------------------------------------------------------------------- /releasenotes/source/2024.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/source/2024.2.rst -------------------------------------------------------------------------------- /releasenotes/source/2025.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/source/2025.1.rst -------------------------------------------------------------------------------- /releasenotes/source/2025.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/source/2025.2.rst -------------------------------------------------------------------------------- /releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /releasenotes/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/source/conf.py -------------------------------------------------------------------------------- /releasenotes/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/source/index.rst -------------------------------------------------------------------------------- /releasenotes/source/mitaka.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/source/mitaka.rst -------------------------------------------------------------------------------- /releasenotes/source/newton.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/source/newton.rst -------------------------------------------------------------------------------- /releasenotes/source/ocata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/source/ocata.rst -------------------------------------------------------------------------------- /releasenotes/source/pike.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/source/pike.rst -------------------------------------------------------------------------------- /releasenotes/source/queens.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/source/queens.rst -------------------------------------------------------------------------------- /releasenotes/source/rocky.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/source/rocky.rst -------------------------------------------------------------------------------- /releasenotes/source/stein.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/source/stein.rst -------------------------------------------------------------------------------- /releasenotes/source/train.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/source/train.rst -------------------------------------------------------------------------------- /releasenotes/source/unreleased.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/source/unreleased.rst -------------------------------------------------------------------------------- /releasenotes/source/ussuri.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/source/ussuri.rst -------------------------------------------------------------------------------- /releasenotes/source/victoria.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/source/victoria.rst -------------------------------------------------------------------------------- /releasenotes/source/wallaby.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/source/wallaby.rst -------------------------------------------------------------------------------- /releasenotes/source/xena.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/source/xena.rst -------------------------------------------------------------------------------- /releasenotes/source/yoga.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/source/yoga.rst -------------------------------------------------------------------------------- /releasenotes/source/zed.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/releasenotes/source/zed.rst -------------------------------------------------------------------------------- /spec/acceptance/10_nova_wsgi_apache_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/acceptance/10_nova_wsgi_apache_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/98_libvirt_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/acceptance/98_libvirt_config_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/99_nova_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/acceptance/99_nova_config_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_api_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_api_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_availability_zone_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_availability_zone_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_cache_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_cache_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_cell_v2_discover_hosts_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_cell_v2_discover_hosts_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_cell_v2_map_cell0_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_cell_v2_map_cell0_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_cell_v2_map_cell_and_hosts_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_cell_v2_map_cell_and_hosts_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_cell_v2_map_instances_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_cell_v2_map_instances_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_cell_v2_simple_setup_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_cell_v2_simple_setup_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_cinder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_cinder_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_client_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_client_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_compute_image_cache_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_compute_image_cache_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_compute_ironic_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_compute_ironic_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_compute_libvirt_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_compute_libvirt_config_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_compute_libvirt_guests_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_compute_libvirt_guests_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_compute_libvirt_libvirtd_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_compute_libvirt_libvirtd_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_compute_libvirt_networks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_compute_libvirt_networks_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_compute_libvirt_qemu_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_compute_libvirt_qemu_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_compute_libvirt_services_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_compute_libvirt_services_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_compute_libvirt_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_compute_libvirt_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_compute_libvirt_virtlockd_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_compute_libvirt_virtlockd_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_compute_libvirt_virtlogd_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_compute_libvirt_virtlogd_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_compute_libvirt_virtnodedevd_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_compute_libvirt_virtnodedevd_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_compute_libvirt_virtproxyd_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_compute_libvirt_virtproxyd_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_compute_libvirt_virtqemud_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_compute_libvirt_virtqemud_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_compute_libvirt_virtsecretd_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_compute_libvirt_virtsecretd_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_compute_libvirt_virtstoraged_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_compute_libvirt_virtstoraged_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_compute_mdev_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_compute_mdev_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_compute_pci_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_compute_pci_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_compute_provider_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_compute_provider_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_compute_rbd_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_compute_rbd_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_compute_serial_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_compute_serial_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_compute_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_compute_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_compute_spice_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_compute_spice_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_conductor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_conductor_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_config_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_consoleauth_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_consoleauth_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_cors_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_cors_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_cron_archive_deleted_rows_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_cron_archive_deleted_rows_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_cron_purge_shadow_tables_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_cron_purge_shadow_tables_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_db_mysql_api_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_db_mysql_api_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_db_mysql_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_db_mysql_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_db_online_data_migrations_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_db_online_data_migrations_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_db_postgresql_api_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_db_postgresql_api_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_db_postgresql_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_db_postgresql_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_db_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_db_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_db_sync_api_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_db_sync_api_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_db_sync_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_db_sync_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_glance_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_glance_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_init_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_init_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_ironic_common_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_ironic_common_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_key_manager_barbican_service_user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_key_manager_barbican_service_user_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_key_manager_barbican_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_key_manager_barbican_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_key_manager_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_key_manager_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_keystone_auth_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_keystone_auth_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_keystone_authtoken_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_keystone_authtoken_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_keystone_service_user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_keystone_service_user_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_keystone_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_keystone_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_limit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_limit_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_logging_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_logging_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_metadata_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_metadata_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_migration_libvirt_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_migration_libvirt_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_migration_qemu_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_migration_qemu_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_network_neutron_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_network_neutron_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_os_brick_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_os_brick_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_pci_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_pci_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_placement_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_placement_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_policy_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_quota_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_quota_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_reports_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_reports_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_scheduler_filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_scheduler_filter_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_scheduler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_scheduler_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_serial_proxy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_serial_proxy_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_spicehtml5proxy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_spicehtml5proxy_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_vendordata_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_vendordata_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_vncproxy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_vncproxy_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_workarounds_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_workarounds_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_wsgi_apache_api_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_wsgi_apache_api_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_wsgi_apache_metadata_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_wsgi_apache_metadata_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_wsgi_uwsgi_api_metadata_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_wsgi_uwsgi_api_metadata_spec.rb -------------------------------------------------------------------------------- /spec/classes/nova_wsgi_uwsgi_api_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/classes/nova_wsgi_uwsgi_api_spec.rb -------------------------------------------------------------------------------- /spec/defines/nova_compute_libvirt_secret_ceph_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/defines/nova_compute_libvirt_secret_ceph_spec.rb -------------------------------------------------------------------------------- /spec/defines/nova_generic_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/defines/nova_generic_service_spec.rb -------------------------------------------------------------------------------- /spec/functions/to_array_of_json_strings_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/functions/to_array_of_json_strings_spec.rb -------------------------------------------------------------------------------- /spec/shared_examples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/shared_examples.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper_acceptance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/spec_helper_acceptance.rb -------------------------------------------------------------------------------- /spec/type_aliases/sshkey_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/type_aliases/sshkey_spec.rb -------------------------------------------------------------------------------- /spec/unit/functions/encode_url_queries_for_python_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/unit/functions/encode_url_queries_for_python_spec.rb -------------------------------------------------------------------------------- /spec/unit/provider/libvirtd_config/ini_setting_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/unit/provider/libvirtd_config/ini_setting_spec.rb -------------------------------------------------------------------------------- /spec/unit/provider/nova_aggregate/openstack_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/unit/provider/nova_aggregate/openstack_spec.rb -------------------------------------------------------------------------------- /spec/unit/provider/nova_api_metadata_uwsgi_config/ini_setting_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/unit/provider/nova_api_metadata_uwsgi_config/ini_setting_spec.rb -------------------------------------------------------------------------------- /spec/unit/provider/nova_api_paste_ini/ini_setting_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/unit/provider/nova_api_paste_ini/ini_setting_spec.rb -------------------------------------------------------------------------------- /spec/unit/provider/nova_api_uwsgi_config/ini_setting_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/unit/provider/nova_api_uwsgi_config/ini_setting_spec.rb -------------------------------------------------------------------------------- /spec/unit/provider/nova_config/openstackconfig_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/unit/provider/nova_config/openstackconfig_spec.rb -------------------------------------------------------------------------------- /spec/unit/provider/nova_flavor/openstack_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/unit/provider/nova_flavor/openstack_spec.rb -------------------------------------------------------------------------------- /spec/unit/provider/nova_rootwrap_config/ini_setting_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/unit/provider/nova_rootwrap_config/ini_setting_spec.rb -------------------------------------------------------------------------------- /spec/unit/provider/nova_service/openstack_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/unit/provider/nova_service/openstack_spec.rb -------------------------------------------------------------------------------- /spec/unit/type/libvirtd_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/unit/type/libvirtd_config_spec.rb -------------------------------------------------------------------------------- /spec/unit/type/nova_aggregate_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/unit/type/nova_aggregate_spec.rb -------------------------------------------------------------------------------- /spec/unit/type/nova_api_metadata_uwsgi_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/unit/type/nova_api_metadata_uwsgi_config_spec.rb -------------------------------------------------------------------------------- /spec/unit/type/nova_api_paste_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/unit/type/nova_api_paste_spec.rb -------------------------------------------------------------------------------- /spec/unit/type/nova_api_uwsgi_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/unit/type/nova_api_uwsgi_config_spec.rb -------------------------------------------------------------------------------- /spec/unit/type/nova_cell_v2_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/unit/type/nova_cell_v2_spec.rb -------------------------------------------------------------------------------- /spec/unit/type/nova_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/unit/type/nova_config_spec.rb -------------------------------------------------------------------------------- /spec/unit/type/nova_rootwrap_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/unit/type/nova_rootwrap_config_spec.rb -------------------------------------------------------------------------------- /spec/unit/type/nova_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/unit/type/nova_service_spec.rb -------------------------------------------------------------------------------- /spec/unit/type/qemu_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/unit/type/qemu_config_spec.rb -------------------------------------------------------------------------------- /spec/unit/type/virtlockd_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/unit/type/virtlockd_config_spec.rb -------------------------------------------------------------------------------- /spec/unit/type/virtlogd_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/unit/type/virtlogd_config_spec.rb -------------------------------------------------------------------------------- /spec/unit/type/virtnodedevd_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/unit/type/virtnodedevd_config_spec.rb -------------------------------------------------------------------------------- /spec/unit/type/virtproxyd_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/unit/type/virtproxyd_config_spec.rb -------------------------------------------------------------------------------- /spec/unit/type/virtqemud_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/unit/type/virtqemud_config_spec.rb -------------------------------------------------------------------------------- /spec/unit/type/virtsecretd_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/spec/unit/type/virtsecretd_config_spec.rb -------------------------------------------------------------------------------- /templates/libvirt-secret-ceph.xml.epp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/templates/libvirt-secret-ceph.xml.epp -------------------------------------------------------------------------------- /templates/provider.yaml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/templates/provider.yaml.erb -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/tox.ini -------------------------------------------------------------------------------- /types/cpumode.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/types/cpumode.pp -------------------------------------------------------------------------------- /types/sshkey.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/types/sshkey.pp -------------------------------------------------------------------------------- /types/virttype.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/puppet-nova/HEAD/types/virttype.pp --------------------------------------------------------------------------------