*** LinPeiWen has joined #openstack-sdks | 01:23 | |
*** ricolin_ has joined #openstack-sdks | 01:31 | |
*** enriquetaso has quit IRC | 02:27 | |
*** johnavp1989 has left #openstack-sdks | 03:57 | |
*** evrardjp has quit IRC | 04:33 | |
*** evrardjp has joined #openstack-sdks | 04:33 | |
*** gtema has joined #openstack-sdks | 06:11 | |
openstackgerrit | Artem Goncharov proposed openstack/openstacksdk master: [WIP] Add additional compute flavor operations https://review.opendev.org/750072 | 06:15 |
---|---|---|
*** gtema has quit IRC | 06:23 | |
openstackgerrit | Merged openstack/osc-lib master: Update master for stable/victoria https://review.opendev.org/750334 | 06:25 |
*** ralonsoh has joined #openstack-sdks | 06:34 | |
*** gtema has joined #openstack-sdks | 06:39 | |
*** slaweq has joined #openstack-sdks | 06:50 | |
openstackgerrit | Merged openstack/openstacksdk master: Update master for stable/victoria https://review.opendev.org/750338 | 07:25 |
*** jpena|off is now known as jpena | 07:30 | |
*** nightmare_unreal has joined #openstack-sdks | 07:32 | |
openstackgerrit | Artem Goncharov proposed openstack/cliff master: Revert "Capturing argparse errors due to problem with cmd2" https://review.opendev.org/750585 | 07:35 |
openstackgerrit | Artem Goncharov proposed openstack/cliff master: Enable osc-functional-devstack-tips tests https://review.opendev.org/750588 | 07:47 |
openstackgerrit | Artem Goncharov proposed openstack/cliff master: Enable osc-functional-devstack-tips job https://review.opendev.org/750588 | 07:49 |
openstackgerrit | jayaditya gupta proposed openstack/python-openstackclient master: Fix --image-property option in 'create server' https://review.opendev.org/746405 | 07:50 |
*** tosky has joined #openstack-sdks | 07:57 | |
*** jpich has joined #openstack-sdks | 07:58 | |
*** slaweq has quit IRC | 08:20 | |
*** slaweq has joined #openstack-sdks | 08:29 | |
*** nikparasyr has joined #openstack-sdks | 08:43 | |
*** slaweq has quit IRC | 08:49 | |
*** lxkong has joined #openstack-sdks | 09:28 | |
openstackgerrit | jayaditya gupta proposed openstack/python-openstackclient master: Fix --image-property option in 'create server' https://review.opendev.org/746405 | 09:28 |
*** gtema has quit IRC | 09:28 | |
*** gtema has joined #openstack-sdks | 09:31 | |
openstackgerrit | Artem Goncharov proposed openstack/cliff master: Enable osc-functional-devstack-tips job https://review.opendev.org/750588 | 09:34 |
*** lxkong has quit IRC | 09:34 | |
openstackgerrit | Artem Goncharov proposed openstack/cliff master: Revert "Capturing argparse errors due to problem with cmd2" https://review.opendev.org/750585 | 09:34 |
*** dtantsur|afk is now known as dtantsur | 09:35 | |
*** ricolin_ has quit IRC | 09:38 | |
openstackgerrit | Artem Goncharov proposed openstack/openstacksdk master: Add additional compute flavor operations https://review.opendev.org/750072 | 09:52 |
*** ralonsoh has quit IRC | 10:01 | |
*** ralonsoh has joined #openstack-sdks | 10:02 | |
*** jpich has quit IRC | 10:09 | |
*** jpich has joined #openstack-sdks | 10:09 | |
openstackgerrit | Artem Goncharov proposed openstack/python-openstackclient master: [WIP] Switch compute flavors from novaclient/direct to SDK https://review.opendev.org/750151 | 10:30 |
*** gtema has quit IRC | 10:59 | |
*** mgariepy has quit IRC | 11:06 | |
*** gtema has joined #openstack-sdks | 11:26 | |
*** jpena is now known as jpena|lunch | 11:30 | |
*** mgariepy has joined #openstack-sdks | 12:09 | |
*** thiagop has joined #openstack-sdks | 12:16 | |
gtema | dtroyer, mordred, dtantsur is anybody here? I need a short "consultation" | 12:30 |
* dtantsur is here | 12:30 | |
gtema | hopefully both other would be able to read/participate... | 12:30 |
gtema | SDK is normalizing resource attribute names, while OSC used to return whatever is on the server side | 12:31 |
gtema | I prepared a patch to switch flavor operations to use SDK (https://review.opendev.org/#/c/750151/) | 12:31 |
gtema | and here comes the question, what should we do with the fact, that osc and SDK use different names | 12:32 |
gtema | simply changing osc output might break users | 12:32 |
*** jpena|lunch is now known as jpena | 12:32 | |
gtema | duplicating data (sdk and server-side names) might be an option, but maybe also confusing | 12:33 |
gtema | ideas? | 12:34 |
dtantsur | I think our to_dict calls have a way to return server values? | 12:35 |
dtantsur | I agree that changing OSC is less than ideal | 12:35 |
gtema | yes, but it's either one or another | 12:35 |
gtema | to stick forever to server names (while goal of SDK is to normalize things) is also not good | 12:36 |
gtema | maybe at some point do a major releasee switching all to SDK names? | 12:37 |
gtema | this will however first need everything uses SDK | 12:37 |
dtantsur | exactly | 12:43 |
gtema | what's also not to forget it is easier to use osc output with sdk names (is_disabled vs OS-FLV-DISABLED:disabled) | 12:44 |
gtema | I mean if you for example want to wrap it in script or so | 12:44 |
gtema | so would you prefer leaving server side names or having both? | 12:55 |
*** enriquetaso has joined #openstack-sdks | 12:56 | |
openstackgerrit | Doug Hellmann proposed openstack/cliff master: change help action to use its own exception for exit https://review.opendev.org/750648 | 13:05 |
dmsimard | I'm looking at potentially implementing novaclient's live-migration-abort in openstackclient, thought it'd be easy enough: https://github.com/openstack/python-novaclient/blob/003ac57d9af74aa4658a7bf6cc6b6b3bafa58c11/novaclient/v2/server_migrations.py#L70-L80 | 13:16 |
dmsimard | so I guess what I need is somewhere inside "compute_client.servers" but I'm not sure how to do the right delete call ? I see compute_client.servers.delete used for deleting servers themselves and compute_client.servers.delete_meta for properties | 13:17 |
gtema | dmismard, you don't need to send delete call. Currently compute_client is novaclient | 13:20 |
gtema | so you need to get ServerMigrationsManager from novaclient and directly invoke live_migration_abort (as far as I can see what novaclient does) | 13:21 |
dmsimard | yeah actually I just realized compute_client.migrations is a thing | 13:23 |
gtema | I suggest you have a look in compute.v2.server.ResizeRevert and do thing similarly | 13:23 |
dmsimard | ResizeRevert has a handy function for it, server.revert_resize() but I don't see anything like that for aborting migrations :/ http://paste.openstack.org/raw/797641/ | 13:30 |
dmsimard | optimistically trying server.migrations.live_migration_abort doesn't work either: 'MigrationManager' object has no attribute 'live_migration_abort' | 13:31 |
dmsimard | sorry I'm kind of a noob :D | 13:31 |
gtema | I was more meaning type of invocation: you use find to get your migration passing it novaclient | 13:31 |
gtema | and when you get the migration itself (instance of ServerMigrationsManager) you call abort directly on it | 13:32 |
openstackgerrit | Artem Goncharov proposed openstack/python-openstackclient master: Switch compute flavors from novaclient/direct to SDK https://review.opendev.org/750151 | 13:34 |
frickler | gtema: dtantsur: mordred: regarding https://review.opendev.org/750585 , as that is blocking osc currently, I'd vote to revert now and fix later, but I'm uncertain about the freeze status, does that have any impact? do we need a bug report attached in order to gain a FFE? | 13:42 |
gtema | honestly I have no clue about that (https://review.opendev.org/#/c/750648/ should also help to get this fixed) | 13:44 |
dtantsur | frickler: I think both patches in question are bug fixes, and are not affected by *our* FFE, but you may check with the release team re release freeze | 13:44 |
dtantsur | and requirements freeze | 13:44 |
dtantsur | i.e. I think you'll need an FFE from them, but not from us | 13:44 |
*** vishakha has joined #openstack-sdks | 13:47 | |
gtema | honestly I am a bit confused here: cliff is cycle-with-interim. Last release for victoria is 3.4.0, which doesn't have this bug yet | 13:52 |
gtema | in victoria branch this is not existing either | 13:52 |
gtema | so perhaps we do not need any FFE if we do not do release at the moment. Next release must contain then bad patch and fix | 13:53 |
*** slaweq has joined #openstack-sdks | 14:03 | |
dmsimard | gtema: maybe I'm missing something obvious -- I can find the migration object but there's no delete or abort method available: http://paste.openstack.org/raw/797644/ | 14:10 |
*** ricolin_ has joined #openstack-sdks | 14:11 | |
*** ricolin_ has quit IRC | 14:13 | |
gtema | dmsimard, I guess the problem is that you use "migrations" instead of "server_migrations" | 14:16 |
frickler | gtema: oh, so this only affects -tips testing, that's good. also dhellman's fix works for me, so we should be able to go forward with that | 14:16 |
gtema | frickler - yes, I think it should be fine this way. We land the fix and do not trigger any release so far | 14:17 |
dmsimard | gtema: oh you're right! <3 | 14:23 |
openstackgerrit | Artem Goncharov proposed openstack/cliff master: Enable osc-functional-devstack-tips job https://review.opendev.org/750588 | 14:27 |
*** outbrito has joined #openstack-sdks | 14:40 | |
gtema | I'm going to approve cliff fix unless somebody objects | 14:42 |
*** thiagop has quit IRC | 14:43 | |
*** outbrito is now known as thiagop | 14:51 | |
openstackgerrit | Zane Bitter proposed openstack/cliff master: Exit gracefully on Ctrl-C https://review.opendev.org/748060 | 14:53 |
*** nikparasyr has left #openstack-sdks | 15:02 | |
*** slaweq has quit IRC | 15:04 | |
*** slaweq has joined #openstack-sdks | 15:15 | |
*** slaweq has quit IRC | 15:20 | |
openstackgerrit | Artem Goncharov proposed openstack/python-openstackclient master: Switch compute flavors from novaclient/direct to SDK https://review.opendev.org/750151 | 15:49 |
*** aj_mailing has joined #openstack-sdks | 16:19 | |
*** jpich has quit IRC | 16:21 | |
*** mgariepy has quit IRC | 16:23 | |
openstackgerrit | Merged openstack/cliff master: change help action to use its own exception for exit https://review.opendev.org/750648 | 16:24 |
gtema | yeah, and the terrifying email came in :( | 16:25 |
*** nightmare_unreal has quit IRC | 16:49 | |
*** dtantsur is now known as dtantsur|afk | 16:55 | |
*** slaweq has joined #openstack-sdks | 16:56 | |
openstackgerrit | Artem Goncharov proposed openstack/python-openstackclient master: Switch openstack console log show operation to use OpenStackSDK https://review.opendev.org/750738 | 17:03 |
*** mgariepy has joined #openstack-sdks | 17:07 | |
*** gtema has quit IRC | 17:10 | |
*** jpena is now known as jpena|off | 17:11 | |
*** slaweq has quit IRC | 17:12 | |
*** slaweq has joined #openstack-sdks | 17:16 | |
*** slaweq has quit IRC | 17:21 | |
*** gtema has joined #openstack-sdks | 17:41 | |
*** gtema has quit IRC | 17:46 | |
openstackgerrit | Zane Bitter proposed openstack/cliff master: Exit gracefully on Ctrl-C https://review.opendev.org/748060 | 18:03 |
*** ralonsoh has quit IRC | 18:05 | |
*** LinPeiWen has quit IRC | 18:36 | |
*** slaweq has joined #openstack-sdks | 19:17 | |
*** tosky has quit IRC | 19:37 | |
*** gtema has joined #openstack-sdks | 19:42 | |
*** gtema has quit IRC | 19:55 | |
*** openstackgerrit has quit IRC | 20:17 | |
*** slaweq has quit IRC | 20:51 | |
*** slaweq has joined #openstack-sdks | 20:54 | |
*** slaweq has quit IRC | 20:59 | |
*** thiagop has quit IRC | 21:12 | |
*** slaweq has joined #openstack-sdks | 21:26 | |
*** openstackgerrit has joined #openstack-sdks | 21:27 | |
openstackgerrit | Ghanshyam Mann proposed openstack/python-openstackclient master: [goal] Migrate testing to Focal https://review.opendev.org/750814 | 21:27 |
*** slaweq has quit IRC | 21:31 | |
openstackgerrit | Ghanshyam Mann proposed openstack/os-service-types master: Fix pep8 testing for ubuntu focal https://review.opendev.org/750815 | 21:51 |
*** gtema has joined #openstack-sdks | 21:51 | |
openstackgerrit | Ghanshyam Mann proposed openstack/os-client-config master: Fix l-c testing for ubuntu focal https://review.opendev.org/750816 | 21:52 |
openstackgerrit | Ghanshyam Mann proposed openstack/requestsexceptions master: Fix pep8 testing for ubuntu focal https://review.opendev.org/750817 | 21:53 |
gmann | sdk team ^^ these are fixes you might be seeing as tox base jobs are running on Focal now | 21:54 |
openstackgerrit | Ghanshyam Mann proposed openstack/python-openstackclient master: [goal] Migrate testing to Focal https://review.opendev.org/750814 | 21:55 |
*** gtema has quit IRC | 21:56 | |
*** vishakha has quit IRC | 22:26 | |
openstackgerrit | Ghanshyam Mann proposed openstack/osc-lib master: Fix l-c testing for ubuntu focal https://review.opendev.org/750830 | 22:26 |
openstackgerrit | Ghanshyam Mann proposed openstack/openstacksdk master: Fix l-c testing for ubuntu focal https://review.opendev.org/750831 | 22:28 |
openstackgerrit | Merged openstack/cliff master: Exit gracefully on Ctrl-C https://review.opendev.org/748060 | 22:53 |
*** enriquetaso has quit IRC | 23:13 | |
*** gtema has joined #openstack-sdks | 23:52 | |
*** gtema has quit IRC | 23:57 |
Generated by irclog2html.py 2.17.2 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!