Thursday, 2025-07-03

opendevreviewGhanshyam proposed openstack/tempest master: Add more server migration tests  https://review.opendev.org/c/openstack/tempest/+/95384701:06
*** mhen_ is now known as mhen01:14
opendevreviewMilana Levy proposed openstack/tempest master: Adding a password regex test for PCI DSS  https://review.opendev.org/c/openstack/tempest/+/95402911:44
opendevreviewMilana Levy proposed openstack/tempest master: Adding a password regex test for PCI DSS  https://review.opendev.org/c/openstack/tempest/+/95402911:54
opendevreviewMilana Levy proposed openstack/tempest master: Adding a password regex test for PCI DSS  https://review.opendev.org/c/openstack/tempest/+/95402911:59
opendevreviewEduardo Olivares proposed openstack/devstack-plugin-ceph master: DNM - dummy test  https://review.opendev.org/c/openstack/devstack-plugin-ceph/+/95403312:59
opendevreviewRajesh Tailor proposed openstack/tempest master: Add response schema for nova microversion v2.101  https://review.opendev.org/c/openstack/tempest/+/95333116:37
opendevreviewRajesh Tailor proposed openstack/tempest master: Add response schema for nova microversion v2.101  https://review.opendev.org/c/openstack/tempest/+/95333116:42
opendevreviewGhanshyam proposed openstack/tempest master: Add more server migration tests  https://review.opendev.org/c/openstack/tempest/+/95384717:35
sean-k-mooneygmaan: dumb question i did tempest run --serial -r ... 17:58
sean-k-mooneyi have 23 failures 17:58
sean-k-mooneyis there an easy way from me to find out which tests failed17:59
clarkbdoesn't tempest run stestr under hood? you can probably do stestr failing --list or whatever the command is18:00
sean-k-mooneyi think it does but it has a --subunit flag that i did not pass so i dont know if it wrote that db18:02
sean-k-mooneybut its defintly worth a try18:02
sean-k-mooney.stestr/failing exist so that a good sign18:03
gmaanyeah, there you can see, tempest run does not have failing option in cmd18:04
sean-k-mooneyclarkb ++ that works perfectly and i cna also get the subunit stream so i assume i could generate hte html report if i really wanted18:04
clarkbthe --subunit flag should only affect output not database recording18:04
sean-k-mooneyim prety sure some of these test are failing becasue my devstack cant actully run them18:08
sean-k-mooneylike i know for the encyption test to pass i actully need to create speciic volume types and update my tempest config to sue them18:08
sean-k-mooneydevstack get pretty close out of the box but its not perfect18:09
sean-k-mooneyrelated question some of the test leak resouce which i normally clean up via horizon but i see there is also a tempest clenup command18:13
sean-k-mooneythis is just a devstack but how safe is that in general18:13
gmaanyeah, ideally tests should not leak any resource that is bug in test but  you can run cleanup18:13
gmaanit is safe, it only clean resources created by tempest. 18:14
sean-k-mooneyok so does it just look for a tempest prefix or is it a littel smarter18:14
gmaanthere are multiple way yon run it. save-state before tempest run and then run cleanup after tempest run so cleanup cmd will cleanup only resources diff from saved-state and what all resources it has after tempest run18:15
gmaanalso prefix way you can run18:15
gmaanI prefer that one default prefix is tempest-18:15
gmaanyou can run in --dry-run mode and see what all resource it will clean18:16
sean-k-mooneyack 99% of the stuff got cleaned up but one of the volume snapshto/backput tests is leakign the snapshot/backups so its not properly deleting them18:17
sean-k-mooneythat might be related to the storage space i have alaibel or soemthing likethat18:17
gmaank, feel free to file bug also test should be auto clean resources in any situation18:18
sean-k-mooneyi think im hittign a cider issue not a tempest one18:18
gmaanohk18:18
sean-k-mooneyi mean it coudl be a bug in either or just but devstack env but to delete the voluem i have to force update a snaphsot then delete that with fornce and hten i can clean up the rest18:19
sean-k-mooneyso i have not check to see if im just runnnig out os space on that backend or soemthing simple like aht18:19
sean-k-mooneynormally i do not deploy with cinder backup so normally i dont run that test.18:21
sean-k-mooneyah Can not get Swift capabilities during backup driver initialization.: requests.exceptions.ConnectionError: HTTPConnectionPool(host='192.168.50.250', port=8080): Max retries exceeded with url: /info18:38
sean-k-mooneyi do not have swift installedcx18:39
sean-k-mooneyi guess that is what cidner backup uses by default18:39
sean-k-mooneyso that explains why test_snapshot_backup is failing for me18:41
sean-k-mooneygmaan: when i run tempest form the tempet directory in devstack am i using /opt/stack/tempest/etc/tempest.conf ?18:44
sean-k-mooneyi assume yes18:44
sean-k-mooneyso i shoudl just be able to set service_available/swift=false18:45
sean-k-mooneywell no CONF.volume_feature_enabled.backup=false woudl be better18:46
sean-k-mooneyswift = False was set by devstack corectly18:47
gmaansean-k-mooney: yeah, service enable/disable is controlled by devstack19:07
gmaanbut if you just want test to skip then CONF.service_available.swift=false will work19:10
*** profcorey is now known as Guest2131119:30
opendevreviewGhanshyam proposed openstack/tempest master: Add more server migration tests  https://review.opendev.org/c/openstack/tempest/+/95384721:22
opendevreviewGhanshyam proposed openstack/tempest master: Add multinode job for stable branches  https://review.opendev.org/c/openstack/tempest/+/95407021:30
opendevreviewGhanshyam proposed openstack/tempest master: Add multinode job for stable branches  https://review.opendev.org/c/openstack/tempest/+/95407021:33
*** haleyb is now known as haleyb|out21:52
sean-k-mooneygmaan: devstack did thei right thin and set swift as disabled however the default backend of cinder backend is swift so if you have that enabel wihtout swift then devstack does not configure a diffent backend so cinder backup does not work. the tempest test for backup dont assume the backend so they dont look at the service avaiable for swift which is correct23:47
sean-k-mooneyso the bug is more that https://github.com/openstack/devstack/tree/master/lib/cinder_backups sercvice can be deploy without the relevnet backend. bug since it could be multi node devsack there is no way for devstack to know any better. in other word the porblem was with how i wrote my local.conf23:49
sean-k-mooneyi alwasy turn of swift and cinder backup locall but this time i used a local.conf form a ci job and only turnd off swift23:50

Generated by irclog2html.py 4.0.0 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!