Monday, 2019-07-29

*** bobh has quit IRC01:45
*** bobh has joined #openstack-sdks02:13
*** goldyfruit has joined #openstack-sdks02:16
*** goldyfruit has quit IRC02:24
*** bobh has quit IRC02:38
*** bobh has joined #openstack-sdks02:39
*** bobh has quit IRC02:39
*** bobh has joined #openstack-sdks02:40
*** bobh has quit IRC02:45
*** bobh has joined #openstack-sdks02:59
*** bobh has quit IRC03:00
*** bobh has joined #openstack-sdks03:01
*** bobh has quit IRC03:01
*** bobh has joined #openstack-sdks03:02
*** bobh has quit IRC03:03
*** ricolin_ has joined #openstack-sdks03:06
*** Luzi has joined #openstack-sdks05:06
*** brtknr has quit IRC05:17
*** brtknr has joined #openstack-sdks05:19
*** whoami-rajat has joined #openstack-sdks05:22
*** e0ne has joined #openstack-sdks05:41
*** e0ne has quit IRC06:11
*** jpich has joined #openstack-sdks06:42
*** ttsiouts has joined #openstack-sdks06:56
*** slaweq has joined #openstack-sdks06:58
*** tosky has joined #openstack-sdks07:16
*** gtema has joined #openstack-sdks07:18
*** ttsiouts has quit IRC07:25
*** jpena|off is now known as jpena07:30
*** jangutter has joined #openstack-sdks07:38
*** ttsiouts has joined #openstack-sdks07:57
*** ralonsoh has joined #openstack-sdks08:08
*** brtknr has quit IRC08:33
*** brtknr has joined #openstack-sdks08:36
*** yolanda has joined #openstack-sdks08:42
*** gkadam has joined #openstack-sdks08:44
*** dtantsur|afk is now known as dtantsur08:58
*** e0ne has joined #openstack-sdks09:08
*** stingrayza_ is now known as stingrayza09:10
*** altlogbot_1 has quit IRC09:24
*** altlogbot_0 has quit IRC09:24
*** altlogbot_3 has joined #openstack-sdks09:25
*** ricolin_ has quit IRC09:29
*** cdent has joined #openstack-sdks09:37
openstackgerritMerged x/promstat master: Remove publishing to docs.openstack.org  https://review.opendev.org/67205809:48
*** brtknr has quit IRC10:30
*** brtknr has joined #openstack-sdks10:32
*** brtknr has quit IRC10:34
*** brtknr has joined #openstack-sdks10:35
*** brtknr has quit IRC10:36
*** jpich has quit IRC10:40
*** cdent has quit IRC10:41
*** jpich has joined #openstack-sdks10:42
*** brtknr has joined #openstack-sdks10:45
*** gkadam has quit IRC11:02
*** brtknr has quit IRC11:04
*** brtknr has joined #openstack-sdks11:05
*** brtknr has quit IRC11:06
*** brtknr has joined #openstack-sdks11:06
*** brtknr has quit IRC11:07
openstackgerritDmitry Tantsur proposed openstack/keystoneauth master: Allow requesting fixed retry delay instead of exponential  https://review.opendev.org/67293011:07
*** brtknr has joined #openstack-sdks11:08
*** gkadam has joined #openstack-sdks11:17
*** brtknr has quit IRC11:20
*** brtknr has joined #openstack-sdks11:21
*** brtknr has quit IRC11:22
*** brtknr has joined #openstack-sdks11:23
*** brtknr has quit IRC11:23
*** brtknr has joined #openstack-sdks11:24
*** brtknr has quit IRC11:24
*** brtknr has joined #openstack-sdks11:25
*** gkadam has quit IRC11:42
*** gkadam has joined #openstack-sdks11:44
*** jpena is now known as jpena|lunch11:46
*** cdent has joined #openstack-sdks11:46
*** jpich has quit IRC12:16
*** jpich has joined #openstack-sdks12:18
*** ricolin_ has joined #openstack-sdks12:30
*** jpena|lunch is now known as jpena12:33
*** gtema has quit IRC12:44
*** gtema has joined #openstack-sdks12:45
*** mriedem has joined #openstack-sdks12:47
*** cdent has quit IRC12:47
*** gtema has quit IRC12:50
*** gtema has joined #openstack-sdks13:03
*** jroll has quit IRC13:07
*** jroll has joined #openstack-sdks13:08
*** cdent has joined #openstack-sdks13:14
*** cdent has quit IRC13:23
*** whoami-rajat has quit IRC13:42
*** cmorpheus is now known as cmurphy13:46
*** cdent has joined #openstack-sdks13:48
*** gtema has quit IRC14:15
*** gtema has joined #openstack-sdks14:16
*** olaph has joined #openstack-sdks14:20
*** gtema has quit IRC14:20
*** ttsiouts has quit IRC14:35
*** ttsiouts has joined #openstack-sdks14:36
*** ttsiouts has quit IRC14:40
*** ttsiouts has joined #openstack-sdks14:41
*** Luzi has quit IRC15:06
*** ttsiouts has quit IRC15:23
*** ttsiouts has joined #openstack-sdks15:24
*** ttsiouts has quit IRC15:29
*** e0ne has quit IRC15:30
mriedemdtroyer: mordred: following up (way later) on the osc compute api gaps forum discussion in denver, i've created a story for making boot-from-volume better in osc https://storyboard.openstack.org/#!/story/2006302,16:13
mriedemthe tasks are in order,16:13
*** goldyfruit has joined #openstack-sdks16:13
mriedemand i have questions on the implementation of the 2nd one that adds a --boot-from-volume option16:13
mriedemtl;dr i want to just do: openstack server create --flavor $flavor --image $image --boot-from-volume $server-name16:14
mriedemthe problem is you have to pass a size for the volume that nova will create from the image,16:14
mriedemi think the easiest solution is just make the --boot-from-volume option take a size value16:14
mriedemso: openstack server create --flavor $flavor --image $image --boot-from-volume 1 $server-name16:14
mriedemthat would create a 1GB volume from the given image16:14
mriedemthe image has some properties which we could maybe use, like min_disk, but they are all optional so i don't have much confidence on relying on the image *size properties.16:16
mordredmriedem: fwiw, the API in sdk is boot_from_volume=True, volume_size=1 - it's that way because it's also possible to do boot_from_volume=True, boot_volume=some_volume16:16
mordredI would not rely on min_disk from the image16:16
mriedemosc already has a --volume option which is in a mutex with --image16:16
mordrednod16:16
mriedemso i think the cli is already covered there16:16
mriedemin that case nova doesn't create a volume since the user is providing it16:17
mordredthen sure - I think a number argument to boot_from_volume seems like a fine idea16:17
mriedemack, i'll start with that anyway16:17
dtroyermriedem: I think I am ok with that, but I don't have that all in my head at the moment… it seems to map to the API fine16:21
mriedemoh also, i'm going to first add type=image as an option for --block-device-mapping; the question there is if --image is specified along with --block-device-mapping vda:$image_id:image:1:true - do we validate the --image id against the block device image id? fail if they are different? make --image optional if an image bdm is specified? make the bdm a non-root volume if --image is specified and the ids are different?16:24
mriedemi can take this to the ML if you want wider input and/or time to mull the options16:24
*** jangutter has quit IRC16:31
*** jpich has quit IRC16:33
*** jpena is now known as jpena|off16:42
*** dtantsur is now known as dtantsur|afk16:44
*** cdent has quit IRC16:57
*** goldyfruit has quit IRC17:02
openstackgerritMatt Riedemann proposed openstack/python-openstackclient master: WIP: Support type=image with --block-device-mapping option  https://review.opendev.org/67334017:03
mriedem^ for chewing on that question17:03
mriedemi likely need to play with those scenarios in devstack to figure out what's best17:03
*** e0ne has joined #openstack-sdks17:14
*** e0ne has quit IRC17:20
*** ricolin_ has quit IRC17:24
*** ralonsoh has quit IRC17:25
*** whoami-rajat has joined #openstack-sdks17:40
*** goldyfruit has joined #openstack-sdks17:59
*** gtema has joined #openstack-sdks18:18
*** gtema has quit IRC18:22
*** e0ne has joined #openstack-sdks19:22
*** goldyfruit has quit IRC19:37
*** goldyfruit has joined #openstack-sdks20:16
*** gtema has joined #openstack-sdks20:18
*** gtema has quit IRC20:23
*** slaweq has quit IRC20:35
*** whoami-rajat has quit IRC20:39
*** e0ne has quit IRC20:46
openstackgerritMerged openstack/python-openstackclient master: Fix module paths for volumev3 volume backup commands  https://review.opendev.org/67291420:48
*** goldyfruit has quit IRC21:07
openstackgerritMichael Johnson proposed openstack/python-openstackclient master: Switch to using osc_lib.utils.tags  https://review.opendev.org/66286421:08
*** mriedem has quit IRC22:11
*** gtema has joined #openstack-sdks22:20
*** gtema has quit IRC22:24
*** tosky has quit IRC22:32

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