Earlier  
Posted Nick Remark
#openstack-sdks - 2018-07-11
23:42:09 mordred but I keep avoiding that because it hurts my head
23:42:28 mordred Shrews: once we do that though, I think we can also rip out the shade-side caching and the code will be *much* nicer
#openstack-sdks - 2018-07-12
02:29:28 openstackgerrit Merged openstack/openstacksdk master: Add task manager parameter to Connection https://review.openstack.org/577616
07:26:33 openstackgerrit Benoît Knecht proposed openstack/openstacksdk master: openstackcloud: properly handle scheduler_hints https://review.openstack.org/581984
15:02:28 openstackgerrit Merged openstack/openstacksdk master: Handle Munch objects in proxies https://review.openstack.org/579908
16:17:17 openstackgerrit Merged openstack/api-wg master: Expand error code document to expect clarity https://review.openstack.org/577118
16:17:58 openstackgerrit Merged openstack/api-wg master: Switch to stestr https://review.openstack.org/581323
16:20:40 elmiko edleafe: ok, ready for editing ;) https://etherpad.openstack.org/p/api-sig-newsletter
16:29:09 edleafe elmiko: looking...
16:30:35 edleafe elmiko: couple of minor nits corrected, and now LGTM
16:30:45 elmiko sweet, thanks!
17:07:10 openstackgerrit Merged openstack/openstacksdk master: openstackcloud: properly handle scheduler_hints https://review.openstack.org/581984
17:50:58 vakuznet why http://paste.openstack.org/show/725745/ Is this microversion negotiation?
17:52:57 vakuznet drop v2.1 or add -H X-Auth-Token or ... ?
18:37:42 openstackgerrit Artom Lifshitz proposed openstack/python-openstackclient master: Don't sent disk_over_commit if nova api > 2.24 https://review.openstack.org/582334
21:17:43 openstackgerrit Merged openstack/openstacksdk master: Add vip_qos_policy_id options for loadbalancer https://review.openstack.org/579794
#openstack-sdks - 2018-07-13
00:20:18 openstackgerrit Merged openstack/osc-lib master: Fixes a bug with issubclass() being called on an instance https://review.openstack.org/581886
00:20:31 openstackgerrit Merged openstack/osc-lib master: Replace autodoc with sphinxcontrib-apidoc https://review.openstack.org/581538
01:09:35 dtroyer mordred: osc-lib release 1.11.0: https://review.openstack.org/582434, unless you think we should wait a couple of days for https://review.openstack.org/526413
07:30:38 openstackgerrit Rui Chen proposed openstack/openstacksdk master: Run ansible tests against specific public cloud https://review.openstack.org/582459
07:30:52 openstackgerrit Benoît Knecht proposed openstack/openstacksdk master: meta: don't throw KeyError on misconfigured floating IPs https://review.openstack.org/582460
08:22:05 openstackgerrit Rui Chen proposed openstack/openstacksdk master: Run ansible tests against specific public cloud https://review.openstack.org/582459
08:59:50 openstackgerrit Rui Chen proposed openstack/openstacksdk master: Run ansible tests against specific public cloud https://review.openstack.org/582459
11:00:44 mordred dtroyer: osc-lib release ++
11:01:00 mordred dtroyer: I've rechecked https://review.openstack.org/#/c/580901
11:18:02 openstackgerrit Monty Taylor proposed openstack-infra/shade master: Make OpenStackCloud a subclass of Connection https://review.openstack.org/577647
12:30:47 openstackgerrit Monty Taylor proposed openstack/python-openstackclient master: Remove local openstack.config overrides https://review.openstack.org/580901
12:30:58 mordred dtroyer: ^^ that's still not going to work - but we're closer
12:40:44 gtema mordred: in openstack-service-broker I have faced interesting case. I have both clouds.yaml and secure.yaml not on FS, but already as string
12:40:54 gtema don't ask me why :-)
12:41:18 gtema but sdk is not able to get it this way. I do not want really to flush files to FS
12:41:49 gtema would you mind if I extend sdk for getting clouds/secure.yaml content from parameters?
13:03:46 mordred hrm.
13:04:21 mordred gtema: what an interesting thing - I guess it's not exposing them as ConfigMap volumes then?
13:05:02 gtema well, that is currently my problem. due to the APB design I can't get them as ConfigMap (at least so far)
13:05:11 mordred gtema: I'm not opposed to it - we added a similar (but different) thing in ansible so thatyou can pass an entire cloud dict to the cloud: parameter
13:05:14 gtema so those can be only retrieved as variables
13:05:42 mordred oh -if they're ansible variables already, you should be able to pass them to the os_ modules now in the cloud: parameter
13:06:06 mordred but - if you need additional support in sdk, I don't think it's a problem
13:06:07 gtema there is `auth` param for ansible modules, but I need to extract correct one from clouds.yaml struct and merge with secure.yaml
13:06:32 mordred nod
13:07:27 gtema might be an option to create ansible module in this project only, that will parse clouds/secure, merge them and return ready `auth`, but this is not nice either
14:17:25 Miouge How can I specify the equivalent of the—compute-api-version flag with the openstacksdk?
14:28:06 mordred Miouge: you can set compute_api_version in clouds.yaml, or you can pass compute_api_version as a kwarg to the constructor
14:28:26 mordred however, you shouldn't really ever need to set it for anything
14:28:45 mordred and if you do, unless you're using the low-level http/rest layer, it's a bug I'd love to see reported
15:37:54 openstackgerrit Merged openstack/python-openstackclient master: Fix docs from I0dc80bee3ba6ff4ec8cc3fc113b6de7807e0bf2a https://review.openstack.org/578952
16:52:58 Miouge mordred: I’m getting errors without that flag for soft-anti-affinity server group policies, the doc says to pass --os-compute-api-version 2.15 (https://docs.openstack.org/python-openstackclient/latest/cli/command-objects/server-group.html) but that’s not super clear how to do it with os_server_group Ansible module. Terraform has the same problem: https://github.com/terraform-providers/terraform-provider-openstack/issues/118
16:54:46 mordred Miouge: WELL - those are docs for python-openstackclient. the intent in openstacksdk and os_server_group ansible module is that microversion negotiation not be exposed in that way ....
16:55:19 mordred Miouge: so it sounds like what we need to do it update sdk's server group policies to try to use 2.15 is somoene passes soft-anti-affinity
16:55:53 mordred Miouge: I can probably get that fixed for you reasonably quickly - although I have to go pick someone up from the airport
16:55:58 mordred so it might be a few hours
16:56:48 Miouge Cool, I’de be happy to give it a +1 :)
17:57:26 openstackgerrit Merged openstack/python-openstackclient master: Slow down and retry aggregate create/delete to lessen race https://review.openstack.org/580732
18:05:44 Miouge mordred: Mmm I think I solved this issue by upgrading to latest (0.16) openstacksdk. My bad!
18:29:38 mordred Miouge: \o/
19:11:08 openstackgerrit Dean Troyer proposed openstack/python-openstackclient master: Fix error with image show when image name is None https://review.openstack.org/529464
22:08:03 flwang1 mordred: hello, pls help review the ansible PR for Magnum cluster templates https://github.com/ansible/ansible/pull/42654 thanks
#openstack-sdks - 2018-07-14
12:48:42 mordred flwang1: done!
18:44:10 flwang1 mordred: cheers
#openstack-sdks - 2018-07-15
22:08:24 openstackgerrit Merged openstack-infra/shade master: Improve Magnum cluster templates functions https://review.openstack.org/577342
#openstack-sdks - 2018-07-16
02:34:11 openstackgerrit chenming proposed openstack/python-openstackclient master: test https://review.openstack.org/582821
03:21:45 openstackgerrit Rui Chen proposed openstack/openstacksdk master: Run ansible tests against specific public cloud https://review.openstack.org/582459
12:28:16 dtantsur mordred: hey, happy monday! I submitted the talk, adding you into it. lemme know if I did anything wrong (likely).
13:06:04 openstackgerrit Markus Hentsch proposed openstack/python-openstackclient master: [WIP] osc-included image signing (using openstacksdk) https://review.openstack.org/580086
13:22:57 mordred dtantsur: happy monday! and yay!
14:01:20 openstackgerrit Josephine Seifert proposed openstack/openstacksdk master: Implement signature generation functionality https://review.openstack.org/580080
20:02:58 openstackgerrit Artom Lifshitz proposed openstack/python-openstackclient master: Don't sent disk_over_commit if nova api > 2.24 https://review.openstack.org/582334
20:16:55 openstackgerrit Francois Deppierraz proposed openstack/openstacksdk master: Expose the prefixlen subnet property which was missing https://review.openstack.org/583040
20:41:34 openstackgerrit Francois Deppierraz proposed openstack/openstacksdk master: Expose the prefixlen subnet property https://review.openstack.org/583040
#openstack-sdks - 2018-07-17
06:28:26 openstackgerrit Rui Chen proposed openstack/openstacksdk master: Run ansible tests against specific public cloud https://review.openstack.org/582459
08:27:39 openstackgerrit Dmitry Tantsur proposed openstack/openstacksdk master: [WIP] set_provision_state and wait_for_provision_state for baremetal Node https://review.openstack.org/570895
08:47:12 openstackgerrit Dmitry Tantsur proposed openstack/openstacksdk master: [WIP] set_provision_state and wait_for_provision_state for baremetal Node https://review.openstack.org/570895
09:36:24 openstackgerrit Dmitry Tantsur proposed openstack/openstacksdk master: Add set_provision_state and wait_for_provision_state for baremetal Node https://review.openstack.org/570895
11:40:41 openstackgerrit Dmitry Tantsur proposed openstack/openstacksdk master: Add set_provision_state and wait_for_provision_state for baremetal Node https://review.openstack.org/570895
11:45:30 dtantsur TheJulia, mordred, this should be ready for review now ^^^
11:46:32 openstackgerrit wangxiyuan proposed openstack/keystoneauth master: [WIP]Add netloc and version check for version discovery https://review.openstack.org/583215
11:53:55 dtantsur oh fun, we state that we support names for nodes, but we don't, because microversions :-/
11:58:55 openstackgerrit Dmitry Tantsur proposed openstack/openstacksdk master: Add set_provision_state and wait_for_provision_state for baremetal Node https://review.openstack.org/570895
12:03:11 TheJulia huh, names was a v1.1 field
12:34:28 openstackgerrit Benoît Knecht proposed openstack/python-openstackclient master: compute: host: expand kwargs in host_set() call https://review.openstack.org/583225
13:45:49 cdent edleafe, elmiko, dtantsur started ptg etherpad: https://etherpad.openstack.org/p/api-sig-stein-ptg
13:46:37 dtantsur nice! I won't be there too
13:46:53 dtantsur TheJulia: yep :( I'll work on it soon(ish) I guess
13:47:55 dtantsur s/too/though/ in my previous comment
13:57:41 edleafe cdent: Still waiting on travel approval for PTG <sigh>
13:58:38 cdent <sigh>
13:59:02 mordred cdent: I'll be at the PTG - if nobody else is, we can just sigh at each other
13:59:12 cdent
14:05:42 dtantsur folks, is the openstacksdk CI broken? http://logs.openstack.org/95/570895/12/check/nodepool-functional-py35-src/f6058c6/job-output.txt.gz#_2018-07-17_12_58_08_813473
14:07:02 Shrews dtantsur: dib is
14:07:13 Shrews dtantsur: https://review.openstack.org/583068
14:12:23 dtantsur is ^^^ the fix?
14:13:03 Shrews dtantsur: it should be since astroid is pulled in by pylint
14:13:32 mordred Shrews: do I want to know how dib's test-requirements somehow break that job?
14:14:38 Shrews mordred: i think pylint didn't cap its requirements (at least for that library) until a later version. dib capped the pylint version so never got the fix
14:14:54 Shrews (from my quick inspection of the situation)
14:15:24 Shrews so the latest astroid release broke things
14:15:57 Shrews mordred: i *still* don't understand why python2 is being used there, but I got fed up investigating
14:16:19 dtantsur magic and ponies

Earlier   Later