Wednesday, 2019-10-16

*** goldyfruit_ has joined #openstack-sdks00:05
*** ricolin has joined #openstack-sdks01:57
openstackgerritBrin Zhang proposed openstack/python-openstackclient master: Microversion 2.79: Add delete_on_termination to volume-attach API  https://review.opendev.org/67372502:21
*** dave-mccowan has quit IRC02:56
*** factor has joined #openstack-sdks03:04
*** enriquetaso has quit IRC03:38
*** jdwidari has quit IRC04:10
*** Luzi has joined #openstack-sdks05:18
*** ralonsoh has joined #openstack-sdks06:44
*** slaweq has joined #openstack-sdks06:47
*** noama has joined #openstack-sdks06:52
*** gtema has joined #openstack-sdks06:55
*** tosky has joined #openstack-sdks07:17
*** e0ne has joined #openstack-sdks07:19
*** gtema has quit IRC07:33
*** gtema has joined #openstack-sdks07:38
*** jpena|off is now known as jpena07:39
*** jpich has joined #openstack-sdks07:40
*** gtema_ has joined #openstack-sdks07:44
*** gtema has quit IRC07:45
*** ttsiouts has joined #openstack-sdks07:57
*** jangutter has joined #openstack-sdks08:14
*** gtema has joined #openstack-sdks08:21
*** cdent has joined #openstack-sdks08:44
*** dtantsur|afk is now known as dtantsur09:07
*** ttsiouts has quit IRC09:09
*** ttsiouts has joined #openstack-sdks09:09
*** cdent_ has joined #openstack-sdks09:10
*** cdent has quit IRC09:12
*** cdent_ is now known as cdent09:12
*** gtema_ has quit IRC09:25
*** gtema_ has joined #openstack-sdks09:26
*** gtema_ has quit IRC09:50
*** gtema_ has joined #openstack-sdks10:03
*** gtema_ has quit IRC10:03
*** gtema_ has joined #openstack-sdks10:06
*** gtema has quit IRC10:08
*** ttsiouts has quit IRC10:20
*** ttsiouts has joined #openstack-sdks10:21
*** ttsiouts has quit IRC10:26
*** gtema_ has quit IRC10:40
*** ttsiouts has joined #openstack-sdks10:53
*** jpich has quit IRC10:57
*** jpich has joined #openstack-sdks10:57
*** ttsiouts has quit IRC10:58
*** gtema has joined #openstack-sdks11:12
*** gtema has quit IRC11:16
*** ttsiouts has joined #openstack-sdks11:25
*** ttsiouts has quit IRC11:26
*** ttsiouts has joined #openstack-sdks11:26
*** jpena is now known as jpena|lunch11:27
*** dave-mccowan has joined #openstack-sdks11:50
*** gtema has joined #openstack-sdks11:51
*** Luzi has quit IRC12:11
*** enriquetaso has joined #openstack-sdks12:22
*** Luzi has joined #openstack-sdks12:27
*** jpena|lunch is now known as jpena12:31
*** Luzi has quit IRC13:02
*** mriedem has joined #openstack-sdks13:15
*** enriquetaso has quit IRC13:23
*** gtema has quit IRC13:30
*** gtema has joined #openstack-sdks13:44
*** jangutter_ has joined #openstack-sdks13:57
*** jangutter_ has quit IRC14:00
*** jangutter has quit IRC14:00
*** jangutter has joined #openstack-sdks14:01
openstackgerritJihad Dwidari proposed openstack/openstacksdk master: Fixes get_user when identity responses are paged  https://review.opendev.org/68870414:31
*** jdwidari has joined #openstack-sdks14:33
*** jangutter has quit IRC14:39
*** jangutter has joined #openstack-sdks14:40
*** jangutter_ has joined #openstack-sdks14:44
*** jangutter has quit IRC14:47
*** jangutter has joined #openstack-sdks14:59
*** jangutter_ has quit IRC15:03
openstackgerritDan Smith proposed openstack/python-openstackclient master: WIP: Add aggregate cache images support  https://review.opendev.org/68896015:34
openstackgerritDan Smith proposed openstack/python-openstackclient master: WIP: Add aggregate cache images support  https://review.opendev.org/68896015:35
*** ttsiouts has quit IRC15:39
*** ttsiouts has joined #openstack-sdks15:40
*** ttsiouts has quit IRC15:44
*** jpena is now known as jpena|off16:00
*** jdwidari has quit IRC16:04
*** gtema has quit IRC16:09
*** gtema has joined #openstack-sdks16:11
*** gtema has quit IRC16:28
*** jpich has quit IRC16:31
*** noama has quit IRC16:38
*** dtantsur is now known as dtantsur|afk16:51
*** e0ne has quit IRC17:01
*** goldyfruit has joined #openstack-sdks17:03
*** goldyfruit_ has quit IRC17:05
*** enriquetaso has joined #openstack-sdks17:07
*** jangutter has quit IRC17:17
*** cdent has quit IRC17:30
*** ricolin has quit IRC17:36
*** jangutter has joined #openstack-sdks17:49
*** jangutter has quit IRC17:53
*** e0ne has joined #openstack-sdks18:18
*** jangutter has joined #openstack-sdks18:22
openstackgerritJihad Dwidari proposed openstack/openstacksdk master: Fixes get_user when identity responses are paged  https://review.opendev.org/68870418:35
*** ralonsoh has quit IRC18:37
*** e0ne has quit IRC18:57
*** enriquetaso has quit IRC19:25
*** tosky has quit IRC19:30
*** lbragsta_ has joined #openstack-sdks19:49
openstackgerritAndreas Jaeger proposed openstack/os-api-ref master: Use Ussuri jobs  https://review.opendev.org/68903220:11
*** efried is now known as efried_afk20:16
*** enriquetaso has joined #openstack-sdks20:23
rm_workin the SDK, there's two interfaces for clustering it seems, and for example the function `detach_policy_from_cluster` exists on both but has very different signatures21:01
rm_workIt seems like doing `sdk_cloud_obj.cluster.detach_policy_from_cluster(..)` uses `openstack.clustering.v1._proxy`, but I want to use `openstack.cloud._clustering`21:03
rm_workany thoughts? mordred maybe?21:03
rm_workah! teammate found it. just directly do `sdk_cloud_obj.detach_policy_from_cluster` without the extra cluster step21:14
mordredrm_work: yes - that's right. the cloud layer is what used to be shade - and that's totally the right way to use it21:16
rm_workkk21:16
rm_workso in general, avoid using the `.service.*` stuff21:17
*** efried_afk is now known as efried21:19
mordredrm_work: both are honestly fine to use 0 the service.* is a bit lower-level. the eventual goal is to have the cloud.* methods using the cloud.service.* methods under the covers21:39
rm_workyeah k21:39
*** jangutter has quit IRC21:40
rm_workjust saw in the response to my ML thread about ospurge that the SDK folks wanted to include similar functionality *builtin*?21:40
rm_workhave you looked much at that?21:40
*** mriedem is now known as mriedem_afk21:46
*** slaweq has quit IRC22:00
*** enriquetaso has quit IRC22:09
*** lbragsta_ has quit IRC22:26
mordredrm_work: yeah - it's actually a todo list item on my side that I was supposed to get started on this cycle but haven't managed to get to yet22:29
rm_workcool22:29
rm_worki'm interested22:29
rm_workbeen working on ospurge22:30
mordredsweet!22:30
rm_workthough i wish this was further along... we're going to end up in a situation where we deploy a cleanup solution with ospurge internally and then the official solution happens and we have to ... ... spend like three years maintaining a legacy thing and spinning up a project to replace it22:31
rm_worklol22:31
mordredI think the idea is that we'd put a call on the Connection object - maybe "purge_project" ? - and then we can have it call lower-level purge_project methods per-service or something like that22:31
mordredrm_work: hah22:31
rm_worki mean, ospurge actually does a pretty good job22:31
mordredrm_work: well - maybe the answer there is to get the sdk purge support in - then make an ospurge release that just uses the purge call in sdk22:31
rm_workcould possibly look at lifting/merging some of that stuff in22:32
mordredyeah22:32
mordredI think one of the reasons people wanted it in sdk was so that we could re-consume it from non cli things more easily - so like expose it in heat and horizon and python-openstackclient and maybe adjutant?22:33
rm_workyeah22:33
mordredbut I think lifting the ospurge logic in as a starting point would be *great*22:33
rm_workdiscussion in Shanghai?22:33
rm_workI can set aside some time if we have enough folks there22:34
mordredrm_work: I *think* tobberydberg was gonna set something up22:45
rm_workk22:45
rm_workI guess just keep in mind that I'm interested ;)22:46
*** lbragsta_ has joined #openstack-sdks23:34
*** lbragsta_ has quit IRC23:45
*** enriquetaso has joined #openstack-sdks23:56

Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!