*** vegasq has joined #openstack-qa | 00:04 | |
*** yamamoto has joined #openstack-qa | 00:04 | |
*** slaweq has joined #openstack-qa | 00:16 | |
*** slaweq has quit IRC | 00:21 | |
*** brinzhang has joined #openstack-qa | 00:47 | |
*** ramishra has quit IRC | 00:56 | |
*** yamamoto has quit IRC | 00:59 | |
*** yamamoto has joined #openstack-qa | 00:59 | |
*** imacdonn has quit IRC | 01:11 | |
*** imacdonn has joined #openstack-qa | 01:11 | |
*** yamamoto has quit IRC | 01:30 | |
*** yamamoto has joined #openstack-qa | 01:40 | |
openstackgerrit | Merged openstack/devstack stable/stein: Fix rdo-release install https://review.opendev.org/668720 | 01:49 |
---|---|---|
*** yamamoto has quit IRC | 01:51 | |
*** lbragstad has quit IRC | 02:04 | |
*** yamamoto has joined #openstack-qa | 02:15 | |
*** haixin has joined #openstack-qa | 02:35 | |
*** yamamoto has quit IRC | 02:36 | |
*** dasp has quit IRC | 02:46 | |
*** rfolco has quit IRC | 02:47 | |
*** dasp has joined #openstack-qa | 03:03 | |
*** xinranwang has joined #openstack-qa | 03:04 | |
openstackgerrit | Merged openstack/tempest master: Raise non 404 Error in generate-tempest-plugin-list.py https://review.opendev.org/667019 | 03:13 |
*** yamamoto has joined #openstack-qa | 03:15 | |
*** yamamoto has quit IRC | 03:25 | |
*** ramishra has joined #openstack-qa | 03:42 | |
*** toabctl has quit IRC | 04:31 | |
*** whoami-rajat has joined #openstack-qa | 04:34 | |
*** brinzhang_ has joined #openstack-qa | 04:47 | |
*** brinzhang has quit IRC | 04:50 | |
amotoki | is there any reason the current devstack does not clean up VMs? | 05:00 |
amotoki | IIRC previously DevStack cleaned up VMs but it is not now. | 05:01 |
amotoki | This 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 |
amotoki | Another example is stack.sh failure due to in-use LVM volume. | 05:02 |
*** gcheresh_ has joined #openstack-qa | 05:05 | |
*** brinzhang_ has quit IRC | 05:05 | |
*** brinzhang_ has joined #openstack-qa | 05:05 | |
*** pcaruana has joined #openstack-qa | 05:06 | |
masayukig | amotoki: I'm not sure.. but clean.sh doesn't help it? | 05:17 |
*** e0ne has joined #openstack-qa | 05:20 | |
openstackgerrit | Goutham Pacha Ravi proposed openstack/devstack stable/rocky: Fix rdo-release install https://review.opendev.org/668787 | 05:34 |
amotoki | masayukig: 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-qa | 05:41 | |
*** artom is now known as artom|gmtplus3 | 05:41 | |
*** Luzi has joined #openstack-qa | 05:54 | |
*** ramishra has quit IRC | 06:08 | |
*** e0ne has quit IRC | 06:12 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/devstack master: Updated from generate-devstack-plugins-list https://review.opendev.org/654164 | 06:12 |
*** haixin has quit IRC | 06:13 | |
*** ramishra has joined #openstack-qa | 06:16 | |
*** snapiri has quit IRC | 06:26 | |
*** snapiri has joined #openstack-qa | 06:26 | |
*** early` has quit IRC | 06:27 | |
*** early has joined #openstack-qa | 06:29 | |
*** cshen has joined #openstack-qa | 06:30 | |
gmann | amotoki: cleanup.sh do cleanup - https://opendev.org/openstack/devstack/src/branch/master/clean.sh#L90 | 06:40 |
gmann | clean.sh | 06:41 |
gmann | amotoki: i am not sure if it was cleaning up the resources as part of stop services | 06:43 |
amotoki | gmann: so, should we clean up resources created by openstack between unstack and stack? is it the recommended way? | 06:44 |
amotoki | gmann: I am in a dilemma between volume clean up failure and non-cleanup of nova VMs... | 06:44 |
gmann | amotoki: no. you can run clean.sh if you want to clean everything. otherwise start/stop service can be used with keeping the resources | 06:45 |
amotoki | there are two levels of cleanup: system level (including removing conf files, uninstall packages) and resources created by OpenStack. | 06:46 |
*** slaweq has joined #openstack-qa | 06:46 | |
amotoki | okay, you recommend me to write a custom script to cleanup resources by OpenStack. got it. | 06:46 |
amotoki | gmann: so, do you suggest to stop LVM cleanup during stack.sh? | 06:47 |
gmann | amotoki: do you get error everytime you re stack.sh | 06:47 |
amotoki | gmann: 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 |
amotoki | so 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 |
amotoki | more 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 |
gmann | yeah i agree with that use case | 06:54 |
gmann | amotoki: i was checking history and nova cleanup was never done during unstack.sh while other does like cinder, neytron etc | 06:54 |
gmann | I am thinking any rational to not to do the nova cleanup in unstack.sh | 06:55 |
amotoki | gmann: https://review.opendev.org/#/c/494355/ moves cleanup_nova to clean.sh | 06:55 |
amotoki | KVM instance cleanup seems side effect of this change. | 06:55 |
amotoki | I agree that system level cleanup should be done in clean.sh. | 06:56 |
gmann | amotoki: i am thinking to do here - https://opendev.org/openstack/devstack/src/branch/master/unstack.sh#L101 | 06:58 |
amotoki | gmann: that is one idea. Anotherr idea is to clean up resources by OpenStack during stack.sh. | 07:00 |
amotoki | stack.sh drops all databases and recreates again, so we will lose all openstack resources at this timing. | 07:01 |
amotoki | LVM cleanup in lib/cinder is done at this timing. | 07:01 |
amotoki | I am not sure which is better. | 07:01 |
amotoki | on the other hand, cleanup_neutron is called during unstack.sh | 07:04 |
gmann | amotoki: yeah we can do that also and should not be issue for instance cleanup from hypervisor ? | 07:04 |
gmann | amotoki: yeah, cleanup_cinder also | 07:04 |
gmann | i was thinking delete-all-resource-by-project could be easier to use in this case but we do not have that yet | 07:05 |
*** rpittau|afk is now known as rpittau | 07:06 | |
amotoki | gmann: 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 |
amotoki | on the other hand, cleanup_database uninstall DB related packages. | 07:08 |
amotoki | delete-all-resource-by-project would be nice | 07:09 |
-amotoki- will be offline for a while | 07:09 | |
gmann | amotoki: neutron resources can be cleanup with DB right? its cinder and nova is something need backend cleanup also | 07:10 |
amotoki | gmann: in case of neutron, it depends on DB recreation in stack.sh. | 07:11 |
gmann | ywah | 07:11 |
gmann | amotoki: i am thinking to try cleanup_nova in unstack.sh where cinder and lvm things are also get cleared | 07:12 |
gmann | amotoki: what you say ? | 07:13 |
*** ccamposr has quit IRC | 07:18 | |
*** tosky has joined #openstack-qa | 07:20 | |
*** tesseract has joined #openstack-qa | 07:21 | |
*** xinranwang has quit IRC | 07:24 | |
*** toabctl has joined #openstack-qa | 07:30 | |
*** trident has quit IRC | 08:08 | |
amotoki | gmann: 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-qa | 08:09 | |
gmann | amotoki: +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 |
gmann | till now we can add note for adding the nova cleanup in unstack.sh so that if that create issue then we know the purpose | 08:13 |
amotoki | gmann: sounds good :) | 08:17 |
*** sridharg has joined #openstack-qa | 08:18 | |
gmann | amotoki: you want me to push patch or if you can do then i can review :) | 08:19 |
amotoki | gmann: either is okay. I will push it. | 08:21 |
gmann | amotoki: thanks | 08:21 |
amotoki | gmann: I will check the problem I hit is gone before pushing it. It may take time a bit. | 08:22 |
openstackgerrit | Masayuki Igawa proposed openstack/tempest master: [WIP] Generate PDF documentation https://review.opendev.org/668823 | 08:24 |
gmann | amotoki: sure | 08:26 |
*** lucasagomes has joined #openstack-qa | 08:28 | |
*** iurygregory has joined #openstack-qa | 08:32 | |
masayukig | gmann: ^^^^^ It works on my laptop but not sure in the gate :) The first page is a bit weird though :) | 08:38 |
gmann | masayukig: i see, thanks. will wait on gate | 08:39 |
masayukig | yeah | 08:39 |
*** tesseract-RH has joined #openstack-qa | 08:57 | |
*** tesseract has quit IRC | 08:58 | |
*** sshnaidm|afk is now known as sshnaidm|ruck | 09:19 | |
*** lucasagomes has quit IRC | 09:26 | |
*** lucasagomes has joined #openstack-qa | 09:26 | |
*** lucasagomes has quit IRC | 09:27 | |
*** tesseract-RH has quit IRC | 09:29 | |
*** tesseract has joined #openstack-qa | 09:29 | |
*** lucasagomes has joined #openstack-qa | 09:30 | |
*** tesseract has quit IRC | 09:33 | |
*** tesseract has joined #openstack-qa | 09:33 | |
*** e0ne has joined #openstack-qa | 09:37 | |
*** tesseract has quit IRC | 09:38 | |
*** tosky has quit IRC | 09:39 | |
*** tesseract has joined #openstack-qa | 09:39 | |
*** tosky has joined #openstack-qa | 09:40 | |
openstackgerrit | Stephen Finucane proposed openstack/devstack master: Configure console proxy ports in nova-cpu.conf https://review.opendev.org/661391 | 09:46 |
*** aojea has joined #openstack-qa | 10:03 | |
*** aojea has quit IRC | 10:03 | |
*** brinzhang_ has quit IRC | 10:35 | |
*** cshen has quit IRC | 10:59 | |
*** cshen has joined #openstack-qa | 11:01 | |
*** iurygregory has quit IRC | 11:35 | |
*** raildo has joined #openstack-qa | 11:38 | |
*** gcheresh_ has quit IRC | 12:15 | |
*** _erlon_ has joined #openstack-qa | 12:33 | |
*** gcheresh_ has joined #openstack-qa | 12:54 | |
openstackgerrit | Jens Harbott (frickler) proposed openstack/devstack master: Update docs about python-systemd pkg https://review.opendev.org/668900 | 13:17 |
*** brinzhang has joined #openstack-qa | 13:24 | |
*** ccamposr has joined #openstack-qa | 13:24 | |
*** ramishra has quit IRC | 13:26 | |
*** ramishra has joined #openstack-qa | 13:28 | |
*** mriedem has joined #openstack-qa | 13:59 | |
*** rfolco has joined #openstack-qa | 14:01 | |
*** brett-soric has joined #openstack-qa | 14:08 | |
*** gcheresh_ has quit IRC | 14:14 | |
openstackgerrit | Merged openstack/devstack master: nova: Set '[neutron] default_floating_pool' instead https://review.opendev.org/660619 | 14:35 |
openstackgerrit | Ghanshyam Mann proposed openstack/tempest master: Define the Integrated-gate-networking gate template https://review.opendev.org/668930 | 14:53 |
*** brinzhang has quit IRC | 14:55 | |
*** brett-soric has left #openstack-qa | 14:56 | |
*** Luzi has quit IRC | 14:58 | |
*** gcheresh_ has joined #openstack-qa | 14:58 | |
*** brinzhang has joined #openstack-qa | 15:00 | |
*** mattw4 has joined #openstack-qa | 15:06 | |
*** mattw4 has quit IRC | 15:09 | |
*** mattw4 has joined #openstack-qa | 15:09 | |
*** mattw4 has quit IRC | 15:11 | |
*** vegasq_ has joined #openstack-qa | 15:12 | |
*** mattw4 has joined #openstack-qa | 15:12 | |
*** gcheresh_ has quit IRC | 15:13 | |
*** vegasq has quit IRC | 15:13 | |
*** cshen has quit IRC | 15:14 | |
*** brinzhang has quit IRC | 15:21 | |
gmann | slaweq: comment inline - https://review.opendev.org/#/c/668311/1 | 15:29 |
gmann | slaweq: _wait_for_ip_increase lgtm except logging the IPs. but do we need change in _wait_for_ip_decrease ? | 15:29 |
*** sridharg has quit IRC | 15:29 | |
gmann | slaweq: going to bed, will check your reply tomorrow morning. | 15:32 |
*** rfolco has quit IRC | 15:47 | |
*** lucasagomes has quit IRC | 16:07 | |
*** rpittau is now known as rpittau|afk | 16:14 | |
openstackgerrit | Merged openstack/devstack master: Enable universe repository on Ubuntu https://review.opendev.org/619562 | 16:38 |
openstackgerrit | Merged openstack/devstack master: Updated from generate-devstack-plugins-list https://review.opendev.org/654164 | 16:38 |
*** e0ne has quit IRC | 16:39 | |
*** vegasq_ has quit IRC | 16:43 | |
*** rh-jelabarre has quit IRC | 16:43 | |
*** mvkr has quit IRC | 16:47 | |
*** rh-jelabarre has joined #openstack-qa | 16:49 | |
*** mvkr has joined #openstack-qa | 16:50 | |
*** ccamposr has quit IRC | 16:54 | |
*** ccamposr has joined #openstack-qa | 16:59 | |
*** markvoelker has joined #openstack-qa | 17:02 | |
*** openstackgerrit has quit IRC | 17:04 | |
*** vegasq has joined #openstack-qa | 17:05 | |
*** openstackgerrit has joined #openstack-qa | 17:16 | |
openstackgerrit | Dirk Mueller proposed openstack/devstack master: Add and switch to the newly created opensuse-15 nodeset https://review.opendev.org/667539 | 17:16 |
*** ccamposr has quit IRC | 17:32 | |
*** ramishra has quit IRC | 17:37 | |
*** e0ne has joined #openstack-qa | 17:44 | |
*** sshnaidm|ruck is now known as sshnaidm|afk | 17:53 | |
*** rfolco has joined #openstack-qa | 17:56 | |
*** e0ne has quit IRC | 18:06 | |
*** e0ne has joined #openstack-qa | 18:09 | |
*** gcheresh_ has joined #openstack-qa | 18:19 | |
*** mattw4 has quit IRC | 18:21 | |
*** e0ne has quit IRC | 18:22 | |
*** amodi has quit IRC | 18:25 | |
*** _erlon_ has quit IRC | 18:28 | |
*** raissa has joined #openstack-qa | 18:33 | |
*** artom|gmtplus3 has quit IRC | 18:35 | |
*** raissa has quit IRC | 18:42 | |
*** tesseract has quit IRC | 18:44 | |
*** mattw4 has joined #openstack-qa | 18:54 | |
*** iurygregory has joined #openstack-qa | 18:56 | |
*** gcheresh_ has quit IRC | 19:10 | |
*** whoami-rajat has quit IRC | 19:12 | |
*** markvoelker has quit IRC | 19:19 | |
*** markvoelker has joined #openstack-qa | 19:19 | |
*** iurygregory has quit IRC | 19:28 | |
*** whoami-rajat has joined #openstack-qa | 19:29 | |
*** mattw4 has quit IRC | 19:30 | |
*** e0ne has joined #openstack-qa | 19:39 | |
*** mattw4 has joined #openstack-qa | 19:41 | |
*** e0ne has quit IRC | 19:55 | |
*** mattw4 has quit IRC | 19:57 | |
*** mattw4 has joined #openstack-qa | 19:57 | |
openstackgerrit | Merged openstack/devstack-plugin-ceph master: Disable [validation]/run_validation in tempest.conf https://review.opendev.org/655472 | 20:17 |
*** e0ne has joined #openstack-qa | 20:20 | |
*** gcheresh_ has joined #openstack-qa | 20:26 | |
*** gcheresh_ has quit IRC | 20:38 | |
*** trident has quit IRC | 20:43 | |
*** trident has joined #openstack-qa | 20:45 | |
*** rh-jelabarre has quit IRC | 20:55 | |
*** rh-jelabarre has joined #openstack-qa | 20:59 | |
openstackgerrit | Nicolas Helgeson proposed openstack/qa-specs master: Spec: Re-factor Account Generator https://review.opendev.org/630380 | 21:07 |
*** slaweq has quit IRC | 21:11 | |
*** pcaruana has quit IRC | 21:16 | |
*** rfolco has quit IRC | 21:22 | |
*** raildo has quit IRC | 21:25 | |
*** slaweq has joined #openstack-qa | 21:27 | |
*** e0ne has quit IRC | 21:28 | |
*** e0ne has joined #openstack-qa | 21:29 | |
*** slaweq has quit IRC | 21:32 | |
*** slaweq has joined #openstack-qa | 21:38 | |
*** slaweq has quit IRC | 21:43 | |
*** e0ne has quit IRC | 21:46 | |
*** rcernin has quit IRC | 22:04 | |
*** ccamposr has joined #openstack-qa | 22:09 | |
*** tosky has quit IRC | 22:38 | |
openstackgerrit | Nicolas Helgeson proposed openstack/qa-specs master: Add a user-isolated cleanup option to tempest cleanup https://review.opendev.org/595277 | 22:38 |
*** whoami-rajat has quit IRC | 22:42 | |
*** yamamoto has joined #openstack-qa | 22:45 | |
*** rcernin has joined #openstack-qa | 23:09 | |
*** raissa has joined #openstack-qa | 23:13 | |
*** slaweq has joined #openstack-qa | 23:14 | |
*** slaweq has quit IRC | 23:19 | |
*** mattw4 has quit IRC | 23:21 | |
*** yamamoto has quit IRC | 23:48 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!