| Posted | Nick | Remark | |
|---|---|---|---|
| #openstack-sdks - 2017-12-12 | |||
| 00:08:12 | openstackgerrit | Dean Troyer proposed openstack/python-openstackclient master: Send 'changes-since' instead of 'changes_since' query parameter https://review.openstack.org/519693 | |
| 04:46:03 | openstackgerrit | Brian Haley proposed openstack/python-openstackclient master: Support IPv6 addresses better https://review.openstack.org/524420 | |
| 12:00:46 | openstackgerrit | Daniel Mellado proposed openstack/python-openstacksdk master: Add reno for tag support on heat stacks https://review.openstack.org/527381 | |
| 13:26:19 | dmellado | Hi folks, I've a question regarding the migration of shade from its repo to openstacksdk | |
| 13:26:29 | dmellado | how do you handle that when it comes to pipy and shade | |
| 13:26:46 | dmellado | would I need to submit a patch to both openstacksdk *and* shade repos in order to have it there at some point? | |
| 13:28:08 | dmellado | mordred: rcarrillocruz ^^ wouldn't you know? | |
| 13:32:58 | Shrews | dmellado: right now we're just cherry picking shade patches back into openstacksdk | |
| 13:33:27 | dmellado | Shrews: I mean this as I've been seeing that shade's pypi just depends on shade repo | |
| 13:33:41 | dmellado | and I'm not really sure about how do you plan to handle this for example on the ansible level | |
| 13:33:59 | dmellado | should all the openstack modules move their dependencies from shade to python-openstacksdk? | |
| 13:34:28 | Shrews | dmellado: shade will still exist and the ansible modules will not change. we plan to make shade a pure pass-through to openstacksdk | |
| 13:34:56 | dmellado | so then for example, if I added a new feature to openstacksdk's shade | |
| 13:35:03 | dmellado | how would I have that on pypi's? | |
| 13:35:18 | dmellado | as of today, I mean xD | |
| 13:35:41 | Shrews | i'm not sure what you mean by "openstacksdk's shade" | |
| 13:35:52 | dmellado | yep, let me try to rephrase it | |
| 13:36:02 | dmellado | I've added tag support for stack creation on this patch | |
| 13:36:04 | dmellado | https://review.openstack.org/#/c/525174/ | |
| 13:36:07 | Shrews | dmellado: if you need a new feature in shade for the ansible modules, just submit a change to shade | |
| 13:36:13 | dmellado | ack, that was it | |
| 13:36:22 | dmellado | I'll just cherry-pick it to shade | |
| 13:36:28 | dmellado | thanks Shrews | |
| 13:37:56 | Shrews | ah, yeah. that change is already in openstacksdk, so yeah, need to submit a shade patch. ideally, we should just have shade call that code in openstacksdk, but we aren't quite ready for that | |
| 13:39:22 | dmellado | Shrews: thanks for the hint! | |
| 13:44:41 | openstackgerrit | Akihiro Motoki proposed openstack/osc-lib master: Add utils for better column handling https://review.openstack.org/522890 | |
| 15:18:31 | openstackgerrit | Daniel Mellado proposed openstack-infra/shade master: Add tag support to create_stack https://review.openstack.org/527426 | |
| 15:18:38 | openstackgerrit | Daniel Mellado proposed openstack/python-openstacksdk master: Add reno for tag support on heat stacks https://review.openstack.org/527381 | |
| 19:23:32 | openstackgerrit | Matthew Treinish proposed openstack-infra/shade master: Add fallback logic to _get_interface_ip() https://review.openstack.org/527502 | |
| 19:23:39 | mtreinish | mordred: ^^^ I'm not sure if that's a good idea or not | |
| 19:23:53 | mtreinish | I just know that interface_ip is blank on my closet cloud :) | |
| 22:52:13 | openstackgerrit | Merged openstack/osc-lib master: Updated from global requirements https://review.openstack.org/525389 | |
| 22:54:43 | openstackgerrit | Merged openstack/osc-lib master: Add utils for better column handling https://review.openstack.org/522890 | |
| #openstack-sdks - 2017-12-13 | |||
| 02:18:44 | openstackgerrit | Merged openstack/python-openstackclient master: Add support for endpoing filter commands https://review.openstack.org/520614 | |
| 02:57:49 | openstackgerrit | Merged openstack/python-openstackclient master: Send 'changes-since' instead of 'changes_since' query parameter https://review.openstack.org/519693 | |
| 14:53:42 | umbSublime | With a ~/.config/openstack/clouds.yml file and using the openstack cli with "openstack --os-cloud mycloud |
|
| 14:57:37 | dtroyer | umbSublime: OSC does not have any control flow built-in to it, you would need to use a shell loop to do that | |
| 14:58:39 | umbSublime | hehe that's what I'm currently doing. thanks for the info | |
| 17:34:57 | openstackgerrit | Merged openstack/os-client-config master: Updated from global requirements https://review.openstack.org/520472 | |
| 18:26:08 | Ivan1986 | Hi all! I'm trying to run the following command in a cron'ed job in order to upload a volume to image: | |
| 18:26:15 | Ivan1986 | IMAGE_ID=$(openstack image create --volume ${VOLUME_ID} --force --container-format bare --disk-format qcow2 ${VOLUME_IMAGE} -f shell -c image_id) | |
| 18:26:25 | Ivan1986 | but I get the following error: | |
| 18:26:36 | Ivan1986 | 'Uploading data and using container are not allowed at the same time' | |
| 18:26:45 | Ivan1986 | It works fine as long as I don't put that into cron or run it with 'nohup'. I've found this in the image.py code: | |
| 18:26:51 | Ivan1986 | def get_data_file(args): if args.file: return open(args.file, 'rb') else: # distinguish cases where: # (1) stdin is not valid (as in cron jobs): # glance ... <&- # (2) image data is provided through standard input: # glance ... < /tmp/file or cat /tmp/file | glance ... # (3) no image data provided: # glance ... try: os.fst | |
| 19:46:16 | dtroyer | Ivan1986: Since you are running the openstack command in a subshell it may have stdin defined. You may need to close stdin in that subshell | |
| #openstack-sdks - 2017-12-14 | |||
| 13:48:51 | chhavi | salv-orl_: needs suggestion on of the review https://review.openstack.org/#/c/524091/ We have a small change in the cinder quota APIs, want to know if there is any API impact. | |
| 14:58:57 | openstackgerrit | Cedric Brandily proposed openstack/python-openstackclient master: Remove insane options for network agent add/remove actions https://review.openstack.org/527984 | |
| 15:18:29 | openstackgerrit | Cedric Brandily proposed openstack/python-openstackclient master: Remove insane options for network agent add/remove actions https://review.openstack.org/527984 | |
| 15:36:58 | cdent | elmiko, edleafe, dtantsur: can one of your run the api-sig meeting today. I'm around but ill. | |
| 15:37:15 | dtantsur | I can, though I never did it before | |
| 15:37:42 | cdent | no time like the present | |
| 15:42:05 | edleafe | I can also run it if dtantsur would rather not | |
| 15:42:20 | dtantsur | edleafe: then please do :) | |
| 15:42:32 | dtantsur | running meetings in the evening is rarely a big pleasure | |
| 15:46:30 | edleafe | dtantsur: well, I didn't want you to miss out on the thrills and excitement of running an API-SIG meeting! | |
| 15:47:01 | dtantsur | my current condition of tiredness is as far from any thrills and excitement as it's only possible :( | |
| 15:52:30 | elmiko | i'll be around for assists if they are needed =) | |
| 16:57:03 | elmiko | cdent edleafe dtantsur , ready for review https://etherpad.openstack.org/p/api-sig-newsletter | |
| 16:58:04 | dtantsur | LGTM | |
| 16:58:51 | cdent | elmiko: dunno if you want to do this or not, but you might say on the second meeting survey that the lack of response thus far means we don't do one | |
| 16:59:12 | elmiko | good idea | |
| 16:59:20 | edleafe | cdent: aw, if I could type faster I was about to write the same thought | |
| 16:59:27 | edleafe | near-jix | |
| 16:59:33 | edleafe | near-jinx, even | |
| 16:59:46 | cdent | wow, not only did I beat you on typing speed this time, it was also you with the typo | |
| 16:59:49 | cdent | these are strange days | |
| 16:59:51 | elmiko | lol | |
| 16:59:56 | elmiko | ok, added a sentence | |
| 16:59:57 | edleafe | wooooooooooo! | |
| 17:00:09 | cdent | ship it | |
| 17:00:10 | edleafe | Hmm, how about a more positive wording | |
| 17:00:20 | elmiko | i'm open to that | |
| 17:00:28 | edleafe | Like, "until we have enough interest, ..." | |
| 17:00:44 | edleafe | You know, encouraging people to respond if they haven't already | |
| 17:01:02 | elmiko | yeah, that's good | |
| 17:01:48 | edleafe | wait - I sent two emails, but they had the same survey | |
| 17:01:59 | edleafe | what are the "two surveys | |
| 17:02:01 | edleafe | " | |
| 17:02:25 | elmiko | i had sent a survey about a month or 2 ago | |
| 17:02:36 | cdent | see, this is why I neither wanted to run the meeting nor write the newsletter | |
| 17:02:46 | elmiko | also, updated the sentence, let me know how that looks | |
| 17:03:17 | edleafe | "tell your friends" - I like it! | |
| 17:03:29 | edleafe | LGTM | |
| 17:03:43 | elmiko | hey, gotta get the word out! | |
| 17:03:51 | elmiko | plus, i get to use a more folksy tone XD | |
| 17:04:38 | cdent | nice to see it back | |
| 17:06:04 | elmiko | ok, sent | |
| 17:06:14 | elmiko | hope you feel better soon cdent =) | |
| 17:07:03 | cdent | elmiko: I got this cold, probably, from when my son and his girlfriend visited. I'll probably better tomorrow, at which point my step-daughter and her boyfriend will visit. They'll give me a cold refill. | |
| 17:07:10 | cdent | Then sometime in january I'll start feeling better. | |
| 17:07:59 | elmiko | noooo | |
| 17:11:04 | cdent | it's kinda standard. I have a weird immune system. | |
| 19:12:36 | jeremyfreudberg | hey mordred, you around? | |
| #openstack-sdks - 2017-12-15 | |||
| 04:01:44 | openstackgerrit | Jake Yip proposed openstack/osc-lib master: Fix sorting in Python 3 https://review.openstack.org/526046 | |
| 04:56:40 | chhavi | elmiko: I am looking for the comments for the https://review.openstack.org/#/c/524091/ | |
| 04:57:07 | chhavi | elmiko: can u have a look on the last comment. | |
| 05:51:26 | openstackgerrit | Jake Yip proposed openstack/osc-lib master: Fix sorting in Python 3 https://review.openstack.org/526046 | |
| 10:09:49 | openstackgerrit | Andreas Jaeger proposed openstack/js-openstack-lib master: WIP: Testing nodejs-jobs https://review.openstack.org/528218 | |
| 10:21:38 | openstackgerrit | Merged openstack-infra/shade master: Add tag support to create_stack https://review.openstack.org/527426 | |