Update compute driver name for Ironic#1
Open
heidsoft wants to merge 7074 commits into
Open
Conversation
67fd81a to
1147300
Compare
9a6ae34 to
7a0fa4f
Compare
Neutron is moving all the jobs to use the Neutron API WSGI module, thus this module is no longer an experimental configuration. Change-Id: Iaf708cd5e6ab414b262a0daecb3909ace2376f68
$LOGDIR --> $DEST Change-Id: I461422f48525edf4ecb388b2f962edb03795db50
Depends-on: https://review.opendev.org/c/openstack/keystone/+/932060 Change-Id: I10bea74fb0bce1888d324a61f23c25b8f7082e97
python-etcd3 can't be used since etcd3 driver was removed from tooz in tooz 5.0.0 [1]. [1] 6bc02cda5b452bbf4821621eafc031bd676f8a2f Change-Id: I30b895b4473e2676085e27969a43b91be9b1e413
It was kept for compatibility in renaming which was merged long ago[1], and is no longer necessary. [1] 3ed99c0 Depends-on: https://review.opendev.org/c/openstack/grenade/+/936095 Change-Id: I6a66359c19d0385beafb4c5e57b6ec3cd6d9cc54
Change-Id: I344c3492159d53c68002b78ac3c385c1beca0e61
This new variable "start-time" is initialized when the WSGI starts and is the timestamp in seconds. Related-Bug: #2083570 Change-Id: I1b984b93d1352683097c1417b22d64341a68f72a
It was fixed in past for ubuntu 22.04 with [1], removing the check for jammy so it applies to all ubuntu versions since jammy. The checks now only refer debian distros so those can be adjusted with new debian releases. [1] https://review.opendev.org/c/openstack/devstack/+/866944 Related-Bug: #1999090 Closes-Bug: #2090835 Change-Id: Iff843c5c3f9c081aa1cec6c399a6ed8c05e06abe
Under as-yet-unidentified conditions, we can end up with a version of packaging that is too old for the version of latest version of setuptools. This is a known issue and expected behavior and per [1] $subject is the preferred resolution. [1] pypa/setuptools#4483 (comment) Change-Id: I9232f3fae1598297e83c4ea37339896f7dcbd44f Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
This reverts commit 6990b06. This should no longer be necessary as packages are requiring simplejson. Change-Id: I74b0f93457f91e7d53d54737d52f67075088faca Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
Change-Id: If9e2cc9247d707a451ef394615e547515115f9e0 Signed-off-by: Stephen Finucane <sfinucan@redhat.com> Depends-on: https://review.opendev.org/c/openstack/placement/+/919569
Change-Id: I494dae51c65318299d4fe2ff5887c97ac2be3224 Signed-off-by: Stephen Finucane <sfinucan@redhat.com> Depends-on: https://review.opendev.org/c/openstack/cinder/+/902876
These were removed when glance-registry was removed[1]. [1] 30680961994b36ed12713c0f106b661535ce41c6 Change-Id: Iaa4a35fddcd4763e12e5140b71e4022421c476fc
The function _start_ovn is responsible for starting the OVS/OVN services. However, its final action is a call to _start_ovn_services, which restarts all OVS/OVN services without any justified reason. This patch removes that call to avoid unnecessarily restarting all OVS/OVN services immediately after they have been started. Closes-Bug: #2091614 Change-Id: Ia791ecb734531fa933c570d687ac9224ed6b27e4
As discussed in Epoxy PTG[1] switching jobs to run with latest OVS/OVN LTS branches. Ubuntu noble and CentOS 9-stream also including these LTS versions. [1] https://etherpad.opendev.org/p/oct2024-ptg-neutron Change-Id: Iecb33628641cd33b6e46d09759e3180cc0bd55e9
The yum command has been replaced by the dnf command in recent releases of Fedora-based distributions. Use the native command instead of the alias kept for compatibility. Change-Id: I0a1dfdaca91164eff2c25795f66976ec70356574
The image size limit for glance using the unified limits is set to 1000MB (~1GB). This is pretty low given that a volume's minimum size is 1GB and when uploaded to glance fills out the whole limit. The limit issue can also be seen by a recent tempest change[1] where uploading two volumes failed[2] across various jobs due to this limit. We do have a config option in devstack ``GLANCE_LIMIT_IMAGE_SIZE_TOTAL`` but that will need to be configured for various jobs and a 2GB seems to be a sensible default which this patch configures. [1] https://review.opendev.org/c/openstack/tempest/+/938592 [2] Jan 07 23:05:33 devstack-ceph cinder-volume[909965]: ERROR oslo_messaging.rpc.server cinder.exception.ImageLimitExceeded: HTTP 413 Request Entity Too Large: The request returned a 413 Request Entity Too Large. This generally means that rate limiting or a quota threshold was breached.: The response body:: Project dfe8648c188d46409349eac2c449c0b4 is over a limit for [Resource image_size_total is over limit of 1000 due to current usage 1024 and delta 0] Change-Id: I533b7444e5f71275ea3d5c18914e306b1dbbc5cb
This variable overrides the `ENABLED_SERVICES` global variable only for the `configure_tempest()` function from `lib/tempest`. If the `SERVICES_FOR_TEMPEST` variable is not defined then `ENABLED_SERVICES` is used as it had used it before. This is useful for cases where Tempest is executed from a remote node. Change-Id: Ic62e48f2f1eb861ec64f51e03353868076cbcc04
Initially, this patch ensured that the custom configuration and readiness checks were applied after every restart of the OVN North services. However, after removing the call that triggered the restarting of the OVN/OVS services in [1], this patch now serves as a refactor, separating the readiness checks and custom configuration into a dedicated function. [1] https://review.opendev.org/c/openstack/devstack/+/937606 Related-bug: #2091614 Related-bug: #2091019 Change-Id: Icba271292830204da94aa3353e93d52088d82eec
Use a raw string to avoid SyntaxWarnings being issued by this script. Change-Id: I81557158013aa36fe27235c461486dfbc37c9f27
Isolate dependencies for generate-devstack-plugins-list.sh by creating a dedicated Python virtual environment with required packages. This ensures the script uses the correct version of dependencies regardless of system Python configuration. Closes-Bug: #2138869 Change-Id: I8a7e49b0b908aec7c95b7fbfb6c9a16375f267a6 Signed-off-by: Abhishek Bongale <abhishekbongale@outlook.com>
Change-Id: I440ae4bfbb97202f3b6ddca99d58fb3ff4604352 Signed-off-by: OpenStack Proposal Bot <openstack-infra@lists.openstack.org> Generated-By: openstack/project-config:playbooks/proposal/propose_update.sh
The comment indicates that tox is used to generate config files, but it's actually not. Change-Id: Iddd45e084641bb3711985484e988ed533965f4f4 Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
Currently PYTHON3_VERSION was not honored while preparing venv, this patch fixes it. Change-Id: I3f9db8cfa38572cdc80d4973ed3b5908335ef6e8 Signed-off-by: Yatin Karel <ykarel@redhat.com>
Depends-On: https://review.opendev.org/c/openstack/cinder/+/502190 Change-Id: I8a04f7fa8b0af1f38774e8d14a52c2adc0bc988f Signed-off-by: Ivan Anfimov <lazekteam@gmail.com>
The file itself has no functional impact. Also add appropriate escape so that '.' is treated as a real period strictly. Change-Id: I9a8a7cb1e4719f6a39b70d4b3889aa0ac019650e Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
In the nova library, some calls to ``configure_keystoneauth`` are called using a non existing local variable $conf. This should be the $NOVA_CONF variable instead. Closes-Bug: #2143929 Signed-off-by: Rodolfo Alonso Hernandez <ralonsoh@redhat.com> Change-Id: I7844237d511154f917f236b8f122bc2bf514991d
stable/2026.1 branch has been created now and current master is 2026.2. Change-Id: Ie6dbbea7c423819cbfda1964593ab56aebc6a286 Signed-off-by: Ghanshyam Maan <gmaan.os14@gmail.com>
Placement was split from nova long time ago and maintains its own config directory. Remove the directory during clean up, following what is done for /etc/nova. Change-Id: I366ace7d8186eda4062253c75dbd2097c1b89958 Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
Ironic renamed the ironic-tempest-bios-ipmi-direct job and zuul stop running it in this repo gate without any notice. - https://review.opendev.org/c/openstack/ironic/+/974260 Fixing the job name to run it again. Change-Id: Ic2e194c2cbcf049fe3bee223f1f520764f0d6b02 Signed-off-by: Ghanshyam Maan <gmaan.os14@gmail.com>
Some of the services (eg. glance) supports customizing the directory. Make sure we use the one actually used during installation. Also use a variable for /etc/openstack (where the clouds.yaml is created) for consistency. Change-Id: I0ca5083a773e8a47c72c09a7819d286f4e0873b7 Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
Related-Bug: #2111276 Co-Authored-By: Jakub Libosvar <jlibosva@redhat.com> Change-Id: I71f95a2fab89dcb04fe99795da5d85d295b8cb82 Signed-off-by: Eduardo Olivares <eolivare@redhat.com>
These were all predominantly used for configuring the eventlet servers and as such are no longer necessary. We also remove a function, '_config_keystone_apache_wsgi', which should have been removed in change I2409385a87ee7cc7869bba9711bf95ab5fe77dc7, some cinder configuration that only applies to the eventlet server ( which is no longer supported as a deployment mechanism is devstack and, eventually, Cinder itself), and finally an 'ssl_ca' option that should have been removed in change Ibf1c8b2ee6b6618f77cd8486e9c687993d7cb4a0. Change-Id: I534c50ec2c7dfa188920a7e3ee6d684316ec5ef2 Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
It was deprecated in favor of the cpu_models option. Change-Id: I2cbbbf95f132b3279a24f120a7d0d756ba550542 Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
Since c0f6cb5 devstack enable debian 12 backports in bookworm. As a consequence we need to explicitly install the qemu-system-modules-spice package to keep supporting spice in qemu. The same is true for debian 13 as well. Related-Bug: #2121941 Signed-off-by: Balazs Gibizer <gibi@redhat.com> Change-Id: I05df50bb6dcf263eb387daaaf277cae1c80438b9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Commit 08448e3 mistakenly updated the location of the Ironic compute
driver to be loaded from within the Nova tree. However, no such module
exists as the compute and scheduler drivers both live in the Ironic tree.
This reverts that and adds a note explaining the setting.
Change-Id: I7f32f77bd7e5fd1f6b41014ac71bbf6e1a7d84cf