Wednesday, 2019-07-03

*** vegasq has joined #openstack-qa00:04
*** yamamoto has joined #openstack-qa00:04
*** slaweq has joined #openstack-qa00:16
*** slaweq has quit IRC00:21
*** brinzhang has joined #openstack-qa00:47
*** ramishra has quit IRC00:56
*** yamamoto has quit IRC00:59
*** yamamoto has joined #openstack-qa00:59
*** imacdonn has quit IRC01:11
*** imacdonn has joined #openstack-qa01:11
*** yamamoto has quit IRC01:30
*** yamamoto has joined #openstack-qa01:40
openstackgerritMerged openstack/devstack stable/stein: Fix rdo-release install  https://review.opendev.org/66872001:49
*** yamamoto has quit IRC01:51
*** lbragstad has quit IRC02:04
*** yamamoto has joined #openstack-qa02:15
*** haixin has joined #openstack-qa02:35
*** yamamoto has quit IRC02:36
*** dasp has quit IRC02:46
*** rfolco has quit IRC02:47
*** dasp has joined #openstack-qa03:03
*** xinranwang has joined #openstack-qa03:04
openstackgerritMerged openstack/tempest master: Raise non 404 Error in generate-tempest-plugin-list.py  https://review.opendev.org/66701903:13
*** yamamoto has joined #openstack-qa03:15
*** yamamoto has quit IRC03:25
*** ramishra has joined #openstack-qa03:42
*** toabctl has quit IRC04:31
*** whoami-rajat has joined #openstack-qa04:34
*** brinzhang_ has joined #openstack-qa04:47
*** brinzhang has quit IRC04:50
amotokiis there any reason the current devstack does not clean up VMs?05:00
amotokiIIRC previously DevStack cleaned up VMs but it is not now.05:01
amotokiThis requires us to clean up VMs manually. Otherwise, after stack.sh a new nova server launch sometimes fails due to libvirt name conflict.05:01
amotokiAnother example is stack.sh failure due to in-use LVM volume.05:02
*** gcheresh_ has joined #openstack-qa05:05
*** brinzhang_ has quit IRC05:05
*** brinzhang_ has joined #openstack-qa05:05
*** pcaruana has joined #openstack-qa05:06
masayukigamotoki: I'm not sure.. but clean.sh doesn't help it?05:17
*** e0ne has joined #openstack-qa05:20
openstackgerritGoutham Pacha Ravi proposed openstack/devstack stable/rocky: Fix rdo-release install  https://review.opendev.org/66878705:34
amotokimasayukig: clean.sh does too much including uninstalling all related packages. It requires more time for stack.sh... perhaps I should write a custom wrapper.05:37
amotoki(otherwise the change is not intentional)05:38
*** artom has joined #openstack-qa05:41
*** artom is now known as artom|gmtplus305:41
*** Luzi has joined #openstack-qa05:54
*** ramishra has quit IRC06:08
*** e0ne has quit IRC06:12
openstackgerritOpenStack Proposal Bot proposed openstack/devstack master: Updated from generate-devstack-plugins-list  https://review.opendev.org/65416406:12
*** haixin has quit IRC06:13
*** ramishra has joined #openstack-qa06:16
*** snapiri has quit IRC06:26
*** snapiri has joined #openstack-qa06:26
*** early` has quit IRC06:27
*** early has joined #openstack-qa06:29
*** cshen has joined #openstack-qa06:30
gmannamotoki: cleanup.sh do cleanup  - https://opendev.org/openstack/devstack/src/branch/master/clean.sh#L9006:40
gmannclean.sh06:41
gmannamotoki: i am not sure if it was cleaning up the resources as part of stop services06:43
amotokigmann: so, should we clean up resources created by openstack between unstack and stack? is it the recommended way?06:44
amotokigmann: I am in a dilemma between volume clean up failure and non-cleanup of nova VMs...06:44
gmannamotoki: no. you can run clean.sh if you want to clean everything. otherwise start/stop service can be used with keeping the resources06:45
amotokithere are two levels of cleanup: system level (including removing conf files, uninstall packages) and resources created by OpenStack.06:46
*** slaweq has joined #openstack-qa06:46
amotokiokay, you recommend me to write a custom script to cleanup resources by OpenStack. got it.06:46
amotokigmann: so, do you suggest to stop LVM cleanup during stack.sh?06:47
gmannamotoki: do you get error everytime you re stack.sh06:47
amotokigmann: for example. I create a vm with boot from volume, unstack.sh and then stack.sh. stack.sh fails because LVM volume cannot be removed as it is used by KVM intance.06:48
amotokiso we must do some manual clean up (either of deleting nova servers before unstack.sh or of cleaning up KVM instances before stack.sh)06:49
amotokimore tricky case is something like creating a nova VM without volume, unstack.sh, stack.sh. stack.sh succeeds but "nova server create" will fail at some time due to KVM name conflict (if instance-00000003 is created during the first stack.sh, third server creation results in an error)06:53
gmannyeah i agree with that use case06:54
gmannamotoki: i was checking history and nova cleanup was never done during unstack.sh while other does like cinder, neytron etc06:54
gmannI am thinking any rational to not to do the nova cleanup in unstack.sh06:55
amotokigmann: https://review.opendev.org/#/c/494355/ moves cleanup_nova to clean.sh06:55
amotokiKVM instance cleanup seems side effect of this change.06:55
amotokiI agree that system level cleanup should be done in clean.sh.06:56
gmannamotoki: i am thinking to do here - https://opendev.org/openstack/devstack/src/branch/master/unstack.sh#L10106:58
amotokigmann: that is one idea. Anotherr idea is to clean up resources by OpenStack during stack.sh.07:00
amotokistack.sh drops all databases and recreates again, so we will lose all openstack resources at this timing.07:01
amotokiLVM cleanup in lib/cinder is done at this timing.07:01
amotokiI am not sure which is better.07:01
amotokion the other hand, cleanup_neutron is called during unstack.sh07:04
gmannamotoki: yeah we can do that also and should not be issue for instance cleanup from hypervisor ?07:04
gmannamotoki: yeah, cleanup_cinder also07:04
gmanni was thinking delete-all-resource-by-project could be easier to use in this case but we do not have that yet07:05
*** rpittau|afk is now known as rpittau07:06
amotokigmann: we seem to need to clarify what is expected in cleanup_* function.  cleanup_* of nova, cinder, neutron, .... cleanup resources by their own services.07:07
amotokion the other hand, cleanup_database uninstall DB related packages.07:08
amotokidelete-all-resource-by-project would be nice07:09
-amotoki- will be offline for a while07:09
gmannamotoki: neutron resources can be cleanup with DB right? its cinder and nova is something need backend cleanup also07:10
amotokigmann: in case of neutron, it depends on DB recreation in stack.sh.07:11
gmannywah07:11
gmannamotoki: i am thinking to try cleanup_nova in unstack.sh where cinder and lvm things are also get cleared07:12
gmannamotoki: what you say ?07:13
*** ccamposr has quit IRC07:18
*** tosky has joined #openstack-qa07:20
*** tesseract has joined #openstack-qa07:21
*** xinranwang has quit IRC07:24
*** toabctl has joined #openstack-qa07:30
*** trident has quit IRC08:08
amotokigmann: sorry for late. It sounds good as far as looking at the current cleanup_nova (though it looks better to clarify what are expected in cleanup_xxxx to avoid future confusion)08:09
*** trident has joined #openstack-qa08:09
gmannamotoki: +1, yeah we should  have separate cleanup for openstack resources. i feel we can do that once project level resource deletion is ready.08:12
gmanntill now we can add note for adding the nova cleanup in unstack.sh so that if that create issue then we know the purpose08:13
amotokigmann: sounds good :)08:17
*** sridharg has joined #openstack-qa08:18
gmannamotoki: you want me to push patch or if you can do then i can review :)08:19
amotokigmann: either is okay. I will push it.08:21
gmannamotoki: thanks08:21
amotokigmann: I will check the problem I hit is gone before pushing it. It may take time a bit.08:22
openstackgerritMasayuki Igawa proposed openstack/tempest master: [WIP] Generate PDF documentation  https://review.opendev.org/66882308:24
gmannamotoki: sure08:26
*** lucasagomes has joined #openstack-qa08:28
*** iurygregory has joined #openstack-qa08:32
masayukiggmann: ^^^^^ It works on my laptop but not sure in the gate :) The first page is a bit weird though :)08:38
gmannmasayukig: i see, thanks. will wait on gate08:39
masayukigyeah08:39
*** tesseract-RH has joined #openstack-qa08:57
*** tesseract has quit IRC08:58
*** sshnaidm|afk is now known as sshnaidm|ruck09:19
*** lucasagomes has quit IRC09:26
*** lucasagomes has joined #openstack-qa09:26
*** lucasagomes has quit IRC09:27
*** tesseract-RH has quit IRC09:29
*** tesseract has joined #openstack-qa09:29
*** lucasagomes has joined #openstack-qa09:30
*** tesseract has quit IRC09:33
*** tesseract has joined #openstack-qa09:33
*** e0ne has joined #openstack-qa09:37
*** tesseract has quit IRC09:38
*** tosky has quit IRC09:39
*** tesseract has joined #openstack-qa09:39
*** tosky has joined #openstack-qa09:40
openstackgerritStephen Finucane proposed openstack/devstack master: Configure console proxy ports in nova-cpu.conf  https://review.opendev.org/66139109:46
*** aojea has joined #openstack-qa10:03
*** aojea has quit IRC10:03
*** brinzhang_ has quit IRC10:35
*** cshen has quit IRC10:59
*** cshen has joined #openstack-qa11:01
*** iurygregory has quit IRC11:35
*** raildo has joined #openstack-qa11:38
*** gcheresh_ has quit IRC12:15
*** _erlon_ has joined #openstack-qa12:33
*** gcheresh_ has joined #openstack-qa12:54
openstackgerritJens Harbott (frickler) proposed openstack/devstack master: Update docs about python-systemd pkg  https://review.opendev.org/66890013:17
*** brinzhang has joined #openstack-qa13:24
*** ccamposr has joined #openstack-qa13:24
*** ramishra has quit IRC13:26
*** ramishra has joined #openstack-qa13:28
*** mriedem has joined #openstack-qa13:59
*** rfolco has joined #openstack-qa14:01
*** brett-soric has joined #openstack-qa14:08
*** gcheresh_ has quit IRC14:14
openstackgerritMerged openstack/devstack master: nova: Set '[neutron] default_floating_pool' instead  https://review.opendev.org/66061914:35
openstackgerritGhanshyam Mann proposed openstack/tempest master: Define the Integrated-gate-networking gate template  https://review.opendev.org/66893014:53
*** brinzhang has quit IRC14:55
*** brett-soric has left #openstack-qa14:56
*** Luzi has quit IRC14:58
*** gcheresh_ has joined #openstack-qa14:58
*** brinzhang has joined #openstack-qa15:00
*** mattw4 has joined #openstack-qa15:06
*** mattw4 has quit IRC15:09
*** mattw4 has joined #openstack-qa15:09
*** mattw4 has quit IRC15:11
*** vegasq_ has joined #openstack-qa15:12
*** mattw4 has joined #openstack-qa15:12
*** gcheresh_ has quit IRC15:13
*** vegasq has quit IRC15:13
*** cshen has quit IRC15:14
*** brinzhang has quit IRC15:21
gmannslaweq: comment inline - https://review.opendev.org/#/c/668311/115:29
gmannslaweq: _wait_for_ip_increase lgtm except logging the IPs. but do we need change in _wait_for_ip_decrease ?15:29
*** sridharg has quit IRC15:29
gmannslaweq: going  to bed, will check your reply tomorrow morning.15:32
*** rfolco has quit IRC15:47
*** lucasagomes has quit IRC16:07
*** rpittau is now known as rpittau|afk16:14
openstackgerritMerged openstack/devstack master: Enable universe repository on Ubuntu  https://review.opendev.org/61956216:38
openstackgerritMerged openstack/devstack master: Updated from generate-devstack-plugins-list  https://review.opendev.org/65416416:38
*** e0ne has quit IRC16:39
*** vegasq_ has quit IRC16:43
*** rh-jelabarre has quit IRC16:43
*** mvkr has quit IRC16:47
*** rh-jelabarre has joined #openstack-qa16:49
*** mvkr has joined #openstack-qa16:50
*** ccamposr has quit IRC16:54
*** ccamposr has joined #openstack-qa16:59
*** markvoelker has joined #openstack-qa17:02
*** openstackgerrit has quit IRC17:04
*** vegasq has joined #openstack-qa17:05
*** openstackgerrit has joined #openstack-qa17:16
openstackgerritDirk Mueller proposed openstack/devstack master: Add and switch to the newly created opensuse-15 nodeset  https://review.opendev.org/66753917:16
*** ccamposr has quit IRC17:32
*** ramishra has quit IRC17:37
*** e0ne has joined #openstack-qa17:44
*** sshnaidm|ruck is now known as sshnaidm|afk17:53
*** rfolco has joined #openstack-qa17:56
*** e0ne has quit IRC18:06
*** e0ne has joined #openstack-qa18:09
*** gcheresh_ has joined #openstack-qa18:19
*** mattw4 has quit IRC18:21
*** e0ne has quit IRC18:22
*** amodi has quit IRC18:25
*** _erlon_ has quit IRC18:28
*** raissa has joined #openstack-qa18:33
*** artom|gmtplus3 has quit IRC18:35
*** raissa has quit IRC18:42
*** tesseract has quit IRC18:44
*** mattw4 has joined #openstack-qa18:54
*** iurygregory has joined #openstack-qa18:56
*** gcheresh_ has quit IRC19:10
*** whoami-rajat has quit IRC19:12
*** markvoelker has quit IRC19:19
*** markvoelker has joined #openstack-qa19:19
*** iurygregory has quit IRC19:28
*** whoami-rajat has joined #openstack-qa19:29
*** mattw4 has quit IRC19:30
*** e0ne has joined #openstack-qa19:39
*** mattw4 has joined #openstack-qa19:41
*** e0ne has quit IRC19:55
*** mattw4 has quit IRC19:57
*** mattw4 has joined #openstack-qa19:57
openstackgerritMerged openstack/devstack-plugin-ceph master: Disable [validation]/run_validation in tempest.conf  https://review.opendev.org/65547220:17
*** e0ne has joined #openstack-qa20:20
*** gcheresh_ has joined #openstack-qa20:26
*** gcheresh_ has quit IRC20:38
*** trident has quit IRC20:43
*** trident has joined #openstack-qa20:45
*** rh-jelabarre has quit IRC20:55
*** rh-jelabarre has joined #openstack-qa20:59
openstackgerritNicolas Helgeson proposed openstack/qa-specs master: Spec: Re-factor Account Generator  https://review.opendev.org/63038021:07
*** slaweq has quit IRC21:11
*** pcaruana has quit IRC21:16
*** rfolco has quit IRC21:22
*** raildo has quit IRC21:25
*** slaweq has joined #openstack-qa21:27
*** e0ne has quit IRC21:28
*** e0ne has joined #openstack-qa21:29
*** slaweq has quit IRC21:32
*** slaweq has joined #openstack-qa21:38
*** slaweq has quit IRC21:43
*** e0ne has quit IRC21:46
*** rcernin has quit IRC22:04
*** ccamposr has joined #openstack-qa22:09
*** tosky has quit IRC22:38
openstackgerritNicolas Helgeson proposed openstack/qa-specs master: Add a user-isolated cleanup option to tempest cleanup  https://review.opendev.org/59527722:38
*** whoami-rajat has quit IRC22:42
*** yamamoto has joined #openstack-qa22:45
*** rcernin has joined #openstack-qa23:09
*** raissa has joined #openstack-qa23:13
*** slaweq has joined #openstack-qa23:14
*** slaweq has quit IRC23:19
*** mattw4 has quit IRC23:21
*** yamamoto has quit IRC23:48

Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!