Merge "Multiple fixes: grenade job fix and python 3.8 drop"

This commit is contained in:
Zuul 2024-11-14 13:16:34 +00:00 committed by Gerrit Code Review
commit ba3929905d
3 changed files with 10 additions and 7 deletions

View File

@ -12,8 +12,6 @@
- vitrage-tempest-plugin-api-ipv6-only
- vitrage-tempest-plugin-datasources
- vitrage-grenade
- openstack-tox-py38
- openstack-tox-py310
gate:
jobs:
@ -21,8 +19,6 @@
- vitrage-tempest-plugin-api-ipv6-only
- vitrage-tempest-plugin-datasources
- vitrage-grenade
- openstack-tox-py38
- openstack-tox-py310
- job:
name: vitrage-grenade
@ -41,3 +37,10 @@
vars:
devstack_plugins:
vitrage: https://opendev.org/openstack/vitrage
devstack_services:
vitrage-api: true
vitrage-graph: true
vitrage-notifier: true
vitrage-ml: true
vitrage-persistor: true
vitrage-snmp-parsing: true

View File

@ -82,7 +82,7 @@ upgrade_project vitrage $RUN_DIR $BASE_DEVSTACK_BRANCH $TARGET_DEVSTACK_BRANCH
write_uwsgi_config "$VITRAGE_UWSGI_FILE" "$VITRAGE_PUBLIC_UWSGI" "/rca"
# Simulate init_vitrage()
VITRAGE_BIN_DIR=$(dirname $(which vitrage-dbsync))
VITRAGE_BIN_DIR=$(get_python_exec_prefix)
$VITRAGE_BIN_DIR/vitrage-dbsync --config-file $VITRAGE_CONF || die $LINENO "DB sync error"
# Start Vitrage

View File

@ -6,7 +6,7 @@ description_file =
author = OpenStack
author_email = openstack-discuss@lists.openstack.org
home_page = https://docs.openstack.org/vitrage/latest/
python_requires = >=3.8
python_requires = >=3.9
classifier =
Environment :: OpenStack
Intended Audience :: Information Technology
@ -17,10 +17,10 @@ classifier =
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: System :: Monitoring
[extras]