*** larsks has quit IRC | 03:38 | |
*** larsks has joined #openstack-sdks | 03:38 | |
*** evrardjp has quit IRC | 04:33 | |
*** evrardjp has joined #openstack-sdks | 04:33 | |
*** ricolin_ has joined #openstack-sdks | 04:35 | |
*** tremble has quit IRC | 05:35 | |
*** dmsimard has quit IRC | 05:55 | |
*** slaweq has joined #openstack-sdks | 05:55 | |
*** dmsimard has joined #openstack-sdks | 05:59 | |
*** slaweq has quit IRC | 06:08 | |
*** gtema has joined #openstack-sdks | 06:10 | |
*** gtema has quit IRC | 06:27 | |
*** gtema has joined #openstack-sdks | 06:29 | |
*** gtema has quit IRC | 06:36 | |
*** tosky has joined #openstack-sdks | 07:03 | |
*** slaweq has joined #openstack-sdks | 07:13 | |
*** tremble has joined #openstack-sdks | 07:15 | |
*** gtema has joined #openstack-sdks | 07:29 | |
*** brinzhang has joined #openstack-sdks | 07:32 | |
*** rpittau|afk is now known as rpittau | 07:35 | |
*** slaweq_ has joined #openstack-sdks | 07:47 | |
*** slaweq has quit IRC | 07:48 | |
*** sshnaidm|off is now known as sshnaidm | 07:58 | |
*** jpich has joined #openstack-sdks | 08:01 | |
*** gtema has quit IRC | 08:14 | |
*** brinzhang_ has joined #openstack-sdks | 08:33 | |
*** brinzhang has quit IRC | 08:35 | |
*** holser has joined #openstack-sdks | 08:46 | |
*** dtantsur|afk is now known as dtantsur | 09:03 | |
*** ricolin_ has quit IRC | 09:04 | |
*** ricolin has joined #openstack-sdks | 09:05 | |
*** openstackgerrit has joined #openstack-sdks | 09:21 | |
openstackgerrit | Wenping Song proposed openstack/python-openstackclient master: Add create tags for server https://review.opendev.org/756664 | 09:21 |
---|---|---|
*** nikparasyr has joined #openstack-sdks | 09:22 | |
*** ralonsoh has joined #openstack-sdks | 09:39 | |
openstackgerrit | Dmitry Tantsur proposed openstack/openstacksdk master: Support waiting for bare metal power states https://review.opendev.org/757523 | 09:51 |
*** iurygregory has quit IRC | 09:57 | |
*** iurygregory has joined #openstack-sdks | 09:58 | |
openstackgerrit | Dmitry Tantsur proposed openstack/openstacksdk master: Support waiting for bare metal power states https://review.opendev.org/757523 | 10:05 |
openstackgerrit | Stephen Finucane proposed openstack/python-openstackclient master: Compute: Add tag support for server add port https://review.opendev.org/580977 | 10:38 |
*** Luzi has joined #openstack-sdks | 10:52 | |
tremble | Wow, Zuul injects pep8 comments directly into the review at the right line | 10:56 |
*** holser has quit IRC | 11:10 | |
*** gtema has joined #openstack-sdks | 11:13 | |
*** gtema has quit IRC | 11:18 | |
openstackgerrit | Stephen Finucane proposed openstack/python-openstackclient master: Compute: Add 'keypair create --type' parameter https://review.opendev.org/577768 | 11:26 |
*** holser has joined #openstack-sdks | 11:33 | |
*** brinzhang_ has quit IRC | 11:37 | |
*** brinzhang_ has joined #openstack-sdks | 11:37 | |
*** gtema has joined #openstack-sdks | 12:29 | |
*** gtema has quit IRC | 12:33 | |
*** lbragstad has joined #openstack-sdks | 12:39 | |
*** lbragstad has quit IRC | 12:40 | |
tremble | dtantsur, Is there a way to specify a minimum SDK version for an Ansible OpenStackModule ? | 12:40 |
dtantsur | tremble: I think some of our modules do that | 12:41 |
tremble | There's an option for the normal version of openstack_cloud_from_module, but I don't see one for OpenStackModule | 12:41 |
dtantsur | I only know https://opendev.org/openstack/ansible-collections-openstack/src/branch/master/plugins/modules/federation_mapping_info.py#L22 | 12:42 |
dtantsur | maybe sshnaidm knows more? | 12:42 |
tremble | https://opendev.org/openstack/ansible-collections-openstack/src/branch/master/plugins/modules/federation_mapping_info.py#L78 | 12:42 |
*** lbragstad has joined #openstack-sdks | 12:46 | |
*** holser has quit IRC | 12:54 | |
*** holser has joined #openstack-sdks | 12:56 | |
sshnaidm | tremble, hi, what do you need it for? To limit features by sdk version? | 12:57 |
tremble | sshnaidm, The module as a whole needs an SDK version, rather than just a specific feature. | 12:58 |
sshnaidm | tremble, you mean just version number? | 12:59 |
tremble | The module as a whole needs an SDK version, rather than just a specific VERSION | 12:59 |
sshnaidm | what is the use case? | 12:59 |
tremble | SDK 0.50 has very poor support for Cinder volume types (no update and multiple missing attributes) | 13:00 |
tremble | I'm putting together the relevant changes, but trying to figure out exactly which pieces might work pre-0.51 is going to be very messy | 13:01 |
tremble | An alternate use case would be federation_mapping where there was *no* support for the object type at all. | 13:01 |
tremble | sshnaidm, That make more sense? | 13:02 |
openstackgerrit | Merged openstack/openstacksdk master: Add "description" to cinder volume types. https://review.opendev.org/756649 | 13:03 |
sshnaidm | tremble, yeah, sorry, in the middle of meetings | 13:07 |
tremble | ok | 13:07 |
tremble | sshnaidm, I think I just need to add support for saying the whole module needs SDK version X, which I can do. | 13:08 |
sshnaidm | tremble, trying to recall if we did something like that.. | 13:09 |
tremble | openstack.openstack_cloud_from_module supports it, OpenStackModule.openstack_cloud_from_module does not | 13:10 |
tremble | and favours specific parameters needing a version of the SDK (which is a nice feature) | 13:10 |
sshnaidm | tremble, yeah, we can mention every parameter with min_ver or max_ver | 13:11 |
sshnaidm | and check_versioned https://opendev.org/openstack/ansible-collections-openstack/src/branch/master/plugins/module_utils/openstack.py#L303-L305 | 13:12 |
openstackgerrit | Athlan-Guyot sofer proposed openstack/ansible-collections-openstack master: WIP: Add application credentials module. https://review.opendev.org/757556 | 13:13 |
openstackgerrit | Athlan-Guyot sofer proposed openstack/ansible-collections-openstack master: WIP: Add application credentials module. https://review.opendev.org/757556 | 13:13 |
sshnaidm | tremble, yeah, for whole module we need to tweak openstack_cloud_from_module function | 13:15 |
tremble | Ok, I'll finish prepping my change and send it your way. | 13:15 |
sshnaidm | tremble, thanks | 13:15 |
openstackgerrit | Mark Chappell proposed openstack/ansible-collections-openstack master: OpenStackModule: Support defining a minimum version of the SDK https://review.opendev.org/757561 | 13:23 |
openstackgerrit | Mark Chappell proposed openstack/ansible-collections-openstack master: New Module: volume_type https://review.opendev.org/757562 | 13:23 |
*** Luzi has quit IRC | 13:26 | |
*** iurygregory has quit IRC | 13:27 | |
*** iurygregory has joined #openstack-sdks | 13:28 | |
openstackgerrit | Mark Chappell proposed openstack/ansible-collections-openstack master: New Module: volume_type https://review.opendev.org/757562 | 13:31 |
openstackgerrit | Mark Chappell proposed openstack/ansible-collections-openstack master: New Module: volume_type https://review.opendev.org/757562 | 13:32 |
openstackgerrit | Stephen Finucane proposed openstack/python-openstackclient master: Compute: Add tags support for server https://review.opendev.org/569386 | 13:55 |
tremble | sshnaidm, https://review.opendev.org/#/c/757561/ | 14:02 |
*** slaweq_ is now known as slaweq | 14:09 | |
openstackgerrit | Stephen Finucane proposed openstack/python-openstackclient master: trivial: Rework 'CreateServer' function https://review.opendev.org/757581 | 14:13 |
openstackgerrit | Stephen Finucane proposed openstack/python-openstackclient master: Compute: Add tag support for server add network https://review.opendev.org/581573 | 14:19 |
openstackgerrit | Stephen Finucane proposed openstack/python-openstackclient master: Compute: Add tag support for server add fixed ip https://review.opendev.org/581325 | 14:25 |
*** dave-mccowan has joined #openstack-sdks | 14:27 | |
*** gtema has joined #openstack-sdks | 14:29 | |
*** gtema has quit IRC | 14:34 | |
sshnaidm | tremble, a few nits | 14:35 |
*** tremble has quit IRC | 14:37 | |
*** rpittau is now known as rpittau|afk | 16:01 | |
openstackgerrit | Merged openstack/python-openstackclient master: Add server migration list CLI https://review.opendev.org/675304 | 16:01 |
*** ralonsoh has quit IRC | 16:05 | |
openstackgerrit | Stephen Finucane proposed openstack/python-openstackclient master: Add an error message when server bind floating IP https://review.opendev.org/666483 | 16:09 |
*** jpich has quit IRC | 16:11 | |
stephenfin | dtantsur: do you have any idea why we run tempest against OSC patches? | 16:19 |
stephenfin | Seeing as Tempest maintains its own client and doesn't use OSC, that seems rather...useless | 16:20 |
*** tosky has quit IRC | 16:21 | |
openstackgerrit | Stephen Finucane proposed openstack/python-openstackclient master: zuul: Stop testing against Tempest https://review.opendev.org/757619 | 16:26 |
openstackgerrit | Stephen Finucane proposed openstack/python-openstackclient master: Remove oslo.utils https://review.opendev.org/739599 | 16:30 |
dtantsur | stephenfin: no idea tbh | 16:33 |
*** dtantsur is now known as dtantsur|afk | 16:35 | |
*** nikparasyr has left #openstack-sdks | 16:39 | |
openstackgerrit | Jesper Schmitz Mouridsen proposed openstack/ansible-collections-openstack master: Refactor loadbalancer module https://review.opendev.org/757081 | 17:14 |
*** cmurphy has left #openstack-sdks | 17:41 | |
*** mordred has quit IRC | 19:16 | |
*** mordred has joined #openstack-sdks | 19:24 | |
*** tosky has joined #openstack-sdks | 20:26 | |
*** hyang has joined #openstack-sdks | 21:00 | |
*** slaweq has quit IRC | 21:13 | |
*** slaweq has joined #openstack-sdks | 22:08 | |
*** slaweq has quit IRC | 22:22 | |
*** hyang has quit IRC | 23:01 | |
*** hyang has joined #openstack-sdks | 23:05 | |
*** tosky has quit IRC | 23:15 | |
*** larsks has quit IRC | 23:59 |
Generated by irclog2html.py 2.17.2 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!