Friday, 2015-04-03

*** Qiming has joined #heat00:03
*** dims has quit IRC00:04
*** Qiming_ has joined #heat00:05
*** LiJiansheng has joined #heat00:06
*** Qiming__ has joined #heat00:07
*** Qiming has quit IRC00:08
*** achanda has joined #heat00:09
*** Qiming_ has quit IRC00:11
*** Qiming__ has quit IRC00:14
*** dims has joined #heat00:22
*** sdake_ has joined #heat00:54
*** tiantian has quit IRC00:57
*** sdake has quit IRC00:57
*** sputnik13 has quit IRC00:58
*** huangtianhua has joined #heat00:58
*** JayJ_ has joined #heat00:59
*** JayJ_ has quit IRC00:59
*** sdake has joined #heat01:00
*** brint has quit IRC01:01
*** bus-104_ has joined #heat01:01
*** dsneddon has quit IRC01:01
*** tellesnobrega has quit IRC01:01
*** sanjayu has quit IRC01:02
*** sanjayu has joined #heat01:02
*** sdake_ has quit IRC01:03
*** dsneddon has joined #heat01:05
*** brint has joined #heat01:05
*** bus-104 has quit IRC01:05
ramishrastevebaker: Hi!01:05
ramishrastevebaker: Do you have sometime to review this https://review.openstack.org/#/c/164572/ ? Been there for quite sometime.01:08
ramishrastevebaker: Also, coreos cloud-init implementation doesn't support multipart MIME yet. I can implement boot configuration using 'cloud-config', which can generate a systemd unit drop-in01:14
*** tellesnobrega has joined #heat01:15
*** metral is now known as metral_zzz01:25
*** sdake_ has joined #heat01:39
*** sdake has quit IRC01:43
*** erkules_ has joined #heat01:45
*** aweiteka has joined #heat01:46
*** erkules has quit IRC01:47
*** metral_zzz is now known as metral01:48
*** huangtianhua has quit IRC01:50
*** Yanyanhu has joined #heat01:52
*** Qiming has joined #heat01:52
*** harlowja is now known as harlowja_away01:52
*** dsanders has quit IRC02:01
*** sanjayu has quit IRC02:11
*** aweiteka has quit IRC02:21
*** Qiming_ has joined #heat02:27
*** Marga_ has quit IRC02:28
*** Qiming has quit IRC02:30
*** GonZo2K has joined #heat02:31
*** jcoufal has joined #heat02:39
*** Raj3 has joined #heat02:42
*** Raj3 has quit IRC02:50
*** Raj3 has joined #heat02:50
*** dsanders has joined #heat02:56
*** achanda has quit IRC03:03
*** swygue has joined #heat03:07
*** jcoufal has quit IRC03:12
*** achanda has joined #heat03:16
*** kebray has joined #heat03:26
*** dsanders has quit IRC03:27
*** sputnik13 has joined #heat03:32
*** Qiming_ is now known as Qiming03:34
*** achanda has quit IRC03:36
openstackgerritLiangChen proposed openstack/heat: Docker plugin add cpu share property  https://review.openstack.org/16997303:39
*** links has joined #heat03:45
*** achanda has joined #heat03:45
*** chlong has joined #heat03:48
*** chlong has quit IRC03:49
*** sdake has joined #heat03:51
*** sdake_ has quit IRC03:55
*** Qiming has quit IRC03:56
*** achanda has quit IRC04:02
*** dsanders has joined #heat04:02
*** Marga_ has joined #heat04:15
*** gpocentek has quit IRC04:26
*** achanda has joined #heat04:45
*** zhiyan has quit IRC04:46
*** zhiyan has joined #heat04:47
*** GonZoPT has joined #heat04:50
*** Raj3 has quit IRC04:52
*** GonZo2K has quit IRC04:52
*** hdd has joined #heat04:55
*** hdd has quit IRC05:14
*** dmn_ has joined #heat05:15
*** Qiming has joined #heat05:17
*** Marga_ has quit IRC05:28
*** kebray has quit IRC05:29
*** achanda has quit IRC05:57
*** gcivitella has joined #heat06:17
*** dsanders has quit IRC06:19
*** pm90_ has joined #heat06:21
*** achanda has joined #heat06:26
*** ParsectiX has joined #heat06:27
*** pas-ha has joined #heat06:31
*** KanagarajM has joined #heat06:40
*** jprovazn has joined #heat06:48
*** Tango|2 has quit IRC06:51
*** KanagarajM has quit IRC07:02
*** pm90_ has quit IRC07:02
*** pm90_ has joined #heat07:06
*** ParsectiX has quit IRC07:11
*** dmn_ has quit IRC07:12
*** jtomasek_ has joined #heat07:17
*** jistr has joined #heat07:29
*** pm90_ has quit IRC07:29
*** jcoufal has joined #heat07:32
*** ParsectiX has joined #heat07:32
*** achanda has quit IRC07:33
*** achanda has joined #heat07:33
*** jprovazn has quit IRC07:44
*** jprovazn has joined #heat07:57
*** dulek has joined #heat07:57
*** GonZoPT has quit IRC07:58
*** dims has quit IRC08:03
*** prazumovsky has joined #heat08:09
*** derekh has joined #heat08:11
ParsectiXguys can someone guide me how I can use the heat python client to deploy a stack ?08:12
openstackgerritLiangChen proposed openstack/heat: Docker plugin add cpu share property  https://review.openstack.org/16997308:12
pas-hamorning all08:30
pas-haParsectiX, do you mean using CLI or Python API?08:31
pas-haall, watch out for bot commit with requirements update for ceilometerclient, we need to merge it in kilo08:36
ParsectiXpas-ha: Python API actually I open the heatclient.v1.shell and trying to do something similar to do_stack_create08:37
openstackgerritOpenStack Proposal Bot proposed openstack/heat: Updated from global requirements  https://review.openstack.org/17038908:37
pas-hahere it is :) ^08:37
pas-haParsectiX, you can also take a look at how internal heat client is initialized in heat - https://github.com/openstack/heat/blob/master/heat/engine/clients/os/heat_plugin.py08:38
pas-hathe main problem is getting an auth right.08:38
pas-hain heat we already have most of the auth pieces in the context, in client you probably would need to make an auth call to keystone first to get a token08:39
ParsectiXpas-ha: what you mean with the auth ?08:40
pas-haParsectiX, I mean all authentification related arguments - user/tenant/auth_url + password or token08:41
ParsectiXhmm I init in the beginning the admin/tenant/auth_url with password , get the auth_token and passing it to other services08:43
ParsectiXhere is what I do for glance08:43
ParsectiXglance_endpoint = keystone_admin.service_catalog.url_for(service_type='image')08:43
ParsectiXglance = glclient.Client(glance_endpoint, token=keystone_admin.auth_token)08:43
ParsectiXI suppose the same goes from heat also08:44
pas-haParsectiX, it should08:49
ParsectiXI'm trying it now. I will let you know ASAP :)08:50
skraynevmorning all08:51
skraynevasalkeld: around?08:51
*** serg_melikyan has joined #heat08:53
*** achanda has quit IRC08:55
*** achanda has joined #heat08:55
*** serg_melikyan has quit IRC08:57
ParsectiXpas-ha: yep it works :)09:00
ParsectiXheat_endpoint = keystone_admin.service_catalog.url_for(service_type='orchestration')09:00
ParsectiXheat = htclient.Client(heat_endpoint, token=keystone_admin.auth_token)09:00
pas-haParsectiX, cool :)09:01
*** xuhaiwei_ has quit IRC09:05
openstackgerritLiangChen proposed openstack/heat: Docker plugin add cpu share property  https://review.openstack.org/16997309:13
ParsectiXpas-ha: to heatclient.common.utils function format_parameters do you know how I can give those parameters in what format ?09:21
pas-hacheck the create/update shell methods and how the parameters are collected. I presume it should be key=value;key2=value209:22
pas-habut IMO if you are using the Python API, you can simply construct the dict with these values, no need to reparse them09:24
*** achanda has quit IRC09:25
ParsectiXhmm..okay thanks for the help09:27
*** achanda has joined #heat09:28
*** sdake has quit IRC09:28
*** achanda has quit IRC09:28
*** achanda has joined #heat09:30
*** bnemec has quit IRC09:33
openstackgerritMichal Rostecki proposed openstack/heat: Novaclient v2 instead of v1_1  https://review.openstack.org/16755709:37
openstackgerritGrzegorz Grasza (xek) proposed openstack/python-heatclient: Update heatclient shell to use shared arguments from Session  https://review.openstack.org/17041109:42
*** Qiming_ has joined #heat09:59
*** Qiming has quit IRC10:02
*** achanda has quit IRC10:02
*** Qiming_ has quit IRC10:08
*** dims has joined #heat10:12
*** dims has quit IRC10:13
*** serg_melikyan has joined #heat10:16
*** serg_melikyan has quit IRC10:19
*** bnemec has joined #heat10:19
*** dims has joined #heat10:19
*** Yanyanhu has quit IRC10:24
ParsectiXin heat python api "Return body"10:44
ParsectiXplease ignore :)10:44
openstackgerritPavlo Shchelokovskyy proposed openstack/heat: Remove TaskRunner from Volume resources  https://review.openstack.org/15497710:49
openstackgerritPavlo Shchelokovskyy proposed openstack/heat: Do not detach/re-attach volumes in AWS Instance  https://review.openstack.org/16616610:49
*** sputnik13 has quit IRC10:52
*** Marga_ has joined #heat10:52
*** dulek_ has joined #heat10:55
*** jcoufal_ has joined #heat10:55
*** jcoufal has quit IRC10:58
*** dulek has quit IRC10:59
openstackgerritPavlo Shchelokovskyy proposed openstack/heat: Merge Neutron AutoScaling and LoadBalancer tests  https://review.openstack.org/16594411:23
openstackgerritPavlo Shchelokovskyy proposed openstack/heat: Merge Neutron AutoScaling and LoadBalancer tests  https://review.openstack.org/16594411:24
*** Qiming has joined #heat11:24
openstackgerritPeter Razumovsky proposed openstack/heat: Improve StackValidationFailed response in properties  https://review.openstack.org/12715011:31
openstackgerritPeter Razumovsky proposed openstack/heat: Improve StackValidationFailed response in outputs  https://review.openstack.org/16081911:32
openstackgerritPeter Razumovsky proposed openstack/heat: Improve StackValidationFailed response in outputs  https://review.openstack.org/16081911:37
*** Marga_ has quit IRC11:40
*** alexpilotti has joined #heat11:41
*** Marga_ has joined #heat11:50
*** rpothier has joined #heat11:57
*** Marga_ has quit IRC12:05
*** erkules_ is now known as erkules12:19
*** erkules has joined #heat12:19
*** adam_g is now known as adam_g_out12:20
*** sdake has joined #heat12:24
*** serg_melikyan has joined #heat12:25
*** jistr_ has joined #heat12:27
*** jcoufal has joined #heat12:27
*** lsmola_ has joined #heat12:27
*** jcoufal_ has quit IRC12:28
*** jcoufal_ has joined #heat12:28
*** smccully has joined #heat12:30
*** jistr has quit IRC12:30
*** lsmola has quit IRC12:31
*** jistr has joined #heat12:31
*** jcoufal has quit IRC12:32
*** lsmola_ has quit IRC12:32
*** jistr_ has quit IRC12:32
*** jasond has joined #heat12:34
*** signed8bit has joined #heat12:35
*** lsmola_ has joined #heat12:44
*** jasond has quit IRC12:45
*** signed8bit has quit IRC12:45
*** signed8bit has joined #heat12:49
*** Qiming_ has joined #heat12:53
*** Qiming has quit IRC12:55
*** jasond has joined #heat12:59
nihiliferhello everyone12:59
nihiliferstevebaker: are you here?12:59
*** dulek_ has quit IRC13:00
*** dims has quit IRC13:01
*** dims has joined #heat13:02
*** serg_melikyan has quit IRC13:03
*** jasond has quit IRC13:03
*** derekh has quit IRC13:06
openstackgerritPeter Razumovsky proposed openstack/heat: Improve StackValidationFailed response in properties  https://review.openstack.org/12715013:11
openstackgerritPeter Razumovsky proposed openstack/heat: Improve StackValidationFailed response in outputs  https://review.openstack.org/16081913:11
*** jasond has joined #heat13:14
*** sdake_ has joined #heat13:19
*** sdake has quit IRC13:22
*** kaufer has joined #heat13:23
*** serg_melikyan has joined #heat13:27
*** serg_melikyan has quit IRC13:28
*** sdake has joined #heat13:29
*** jprovazn has quit IRC13:31
*** serg_melikyan has joined #heat13:31
*** jprovazn has joined #heat13:31
*** sdake_ has quit IRC13:33
*** openstackgerrit has quit IRC13:36
*** openstackgerrit has joined #heat13:36
*** nihilifer has quit IRC13:37
*** nihilifer has joined #heat13:38
*** tochi has quit IRC13:39
openstackgerritPeter Razumovsky proposed openstack/heat: Improve StackValidationFailed response in nested  https://review.openstack.org/17049013:39
*** serg_melikyan has quit IRC13:44
*** sabeen1 has joined #heat13:46
*** serg_melikyan has joined #heat13:52
sdakeasalkeld still awake?13:57
sdakeshardy around?13:57
sdakeanyone around that did the versioned objects support in heat?13:57
pas-hasdake, inc0 would be your person14:00
sdakepas-ha thanks14:01
sdakeIthought asalkeld  did that work but i'll ping inc014:01
sdakejust wanted to ask a question about it14:01
skraynevsdake: inc0 probably did it.14:02
sdakeanyone know his tz?14:02
skraynevI thought He was in west Europa, but I'm not sure14:03
*** serg_melikyan has quit IRC14:03
sdakeso probaby out thanks14:04
sdakei'll catch him later tonigh thten14:04
*** serg_melikyan has joined #heat14:05
*** serg_melikyan has quit IRC14:06
*** serg_mel_ has joined #heat14:06
*** InblEric has joined #heat14:10
*** kaufer has quit IRC14:13
*** serg_mel_ has quit IRC14:15
*** serg_melikyan has joined #heat14:16
*** serg_mel_ has joined #heat14:17
*** serg_melikyan has quit IRC14:17
*** Qiming__ has joined #heat14:25
*** Qiming_ has quit IRC14:29
*** pas-ha has quit IRC14:32
*** pas-ha has joined #heat14:32
*** links has quit IRC14:33
*** openstackgerrit has quit IRC14:39
*** openstackgerrit has joined #heat14:39
*** pas-ha has quit IRC14:40
*** Qiming__ has quit IRC14:45
*** Marga_ has joined #heat14:49
*** Tango|2 has joined #heat14:51
*** pas-ha has joined #heat14:55
pas-hasdake, AFAIU inc0 is in Europe, UTC+2 now, so later this evening might not be an option14:56
sdakepas-ha I caught up with dansmith and he answered my qs thanks :)14:56
pas-haok, cool14:56
*** jtomasek_ has quit IRC14:56
*** jdandrea has quit IRC14:58
*** jdandrea has joined #heat14:58
*** Raj1 has joined #heat14:59
*** Raj1 has quit IRC15:00
*** Raj1 has joined #heat15:00
openstackgerritPeter Razumovsky proposed openstack/heat: Add OS::Mistral::Workflow for Mistral workflows  https://review.openstack.org/14764515:03
*** sdake_ has joined #heat15:03
*** prazumovsky has quit IRC15:04
openstackgerritEthan Lynn proposed openstack/heat: Correct properties.Schema.NUMBER to INTEGER  https://review.openstack.org/16898615:05
*** sdake has quit IRC15:07
*** thedodd has joined #heat15:07
*** EmilienM is now known as EmilienM|afk15:07
*** Marga_ has quit IRC15:08
*** kebray has joined #heat15:13
*** Raj1 has quit IRC15:15
*** serg_mel_ has quit IRC15:17
*** serg_melikyan has joined #heat15:19
*** Raj1 has joined #heat15:20
*** jcoufal_ has quit IRC15:23
*** links has joined #heat15:27
openstackgerritTetiana Lashchova proposed openstack/heat: Add OS::Mistral::CronTrigger resource  https://review.openstack.org/14932715:28
*** Marga_ has joined #heat15:31
*** sputnik13 has joined #heat15:36
*** spzala has quit IRC15:37
*** EmilienM|afk is now known as EmilienM15:39
*** ParsectiX has quit IRC15:41
*** packet has joined #heat15:44
*** dims is now known as dimsum__15:44
*** jistr has quit IRC15:53
*** jistr has joined #heat15:53
*** randallburt has joined #heat15:56
*** radez is now known as radez_g0n315:56
*** Raj1 has quit IRC15:59
*** serg_melikyan has quit IRC16:00
*** Raj1 has joined #heat16:02
*** hdd has joined #heat16:04
*** ryansb has joined #heat16:08
*** ryansb has quit IRC16:08
*** ryansb has joined #heat16:08
*** pm90_ has joined #heat16:11
*** jistr has quit IRC16:17
*** serg_melikyan has joined #heat16:20
*** thedodd has quit IRC16:21
*** pas-ha has quit IRC16:21
*** serg_melikyan has quit IRC16:25
openstackgerritMerged openstack/heat: Do sleep(0) for first task sleep  https://review.openstack.org/16953116:26
*** thedodd has joined #heat16:27
*** Raj1 has quit IRC16:32
*** gcivitella has quit IRC16:34
*** randallburt has quit IRC16:34
*** pm90_ has quit IRC16:38
*** pm90_ has joined #heat16:39
*** Marga_ has quit IRC16:40
*** Marga_ has joined #heat16:41
*** dsanders1 has joined #heat16:42
*** jprovazn has quit IRC16:42
*** sdake_ has quit IRC16:52
*** hdd has quit IRC16:52
*** sdake has joined #heat16:53
*** hdd has joined #heat16:53
*** ParsectiX has joined #heat16:55
*** sabeen1 has left #heat16:58
*** sabeen1 has joined #heat16:59
*** ParsectiX has quit IRC17:01
*** ParsectiX has joined #heat17:02
*** ParsectiX has quit IRC17:02
*** ParsectiX has joined #heat17:02
*** harlowja_away is now known as harlowja17:02
*** Marga_ has quit IRC17:05
openstackgerritTetiana Lashchova proposed openstack/heat-specs: Add Manila resources  https://review.openstack.org/16812917:05
*** pm90_ has quit IRC17:16
*** dsanders1 has quit IRC17:24
*** dsanders1 has joined #heat17:24
*** spzala has joined #heat17:24
*** Raj1 has joined #heat17:24
*** links has quit IRC17:27
*** david-lyle has quit IRC17:29
*** sputnik13 has quit IRC17:29
*** dsanders1 has quit IRC17:29
*** dsanders1 has joined #heat17:30
*** QuentinM has left #heat17:33
*** randallburt has joined #heat17:36
*** Raj1 has quit IRC17:36
*** Raj1 has joined #heat17:37
*** hdd has quit IRC17:45
*** hdd has joined #heat17:46
*** Marga_ has joined #heat17:47
openstackgerritEthan Lynn proposed openstack/heat: Correct properties.Schema.NUMBER to INTEGER  https://review.openstack.org/16898617:54
*** achanda has joined #heat17:57
*** serg_melikyan has joined #heat18:04
*** randallburt has quit IRC18:04
*** hdd has quit IRC18:10
*** Marga_ has quit IRC18:11
*** sputnik13 has joined #heat18:12
*** dsanders1 has quit IRC18:15
*** dsanders has joined #heat18:15
*** sdake_ has joined #heat18:20
*** achanda has quit IRC18:20
*** Marga_ has joined #heat18:21
*** randallburt has joined #heat18:23
*** achanda has joined #heat18:24
*** sdake has quit IRC18:24
*** alexpilotti has quit IRC18:37
*** pm90_ has joined #heat18:49
*** Raj1 has quit IRC18:50
*** Raj1 has joined #heat18:54
*** sdake has joined #heat18:56
*** sdake_ has quit IRC19:00
openstackgerritMerged openstack/heat: Set stack status to FAILED when engine is down  https://review.openstack.org/16916019:01
*** pm90__ has joined #heat19:03
*** pm90_ has quit IRC19:04
*** sdake_ has joined #heat19:05
*** sdake has quit IRC19:08
*** serg_melikyan has quit IRC19:14
*** sdake has joined #heat19:15
*** achanda has quit IRC19:15
*** sdake_ has quit IRC19:19
*** Marga_ has quit IRC19:26
*** achanda has joined #heat19:29
*** mspreitz has joined #heat19:30
*** swygue has quit IRC19:34
*** tspatzier has joined #heat19:34
*** spzala has quit IRC19:45
*** tspatzier has quit IRC19:48
*** rpothier has quit IRC19:49
*** tspatzier has joined #heat19:51
*** Raj1 has quit IRC19:53
*** tspatzier has quit IRC19:53
*** Raj1 has joined #heat19:58
*** InblEric1 has joined #heat20:11
*** InblEric has quit IRC20:14
openstackgerritRandall Burt proposed openstack/heat: Do not resolve neutron resource attributes when resource_id is None  https://review.openstack.org/17060020:18
*** pm90__ has quit IRC20:21
*** JayJ_ has joined #heat20:25
*** pm90_ has joined #heat20:26
*** Raj1 has quit IRC20:28
*** kebray has quit IRC20:29
*** flashgordon has joined #heat20:35
*** InblEric has joined #heat20:37
*** InblEric1 has quit IRC20:38
*** hdd has joined #heat20:42
flashgordonzaneb: https://review.openstack.org/170605 https://review.openstack.org/17060420:43
*** serg_melikyan has joined #heat20:45
flashgordonand https://review.openstack.org/17060820:46
flashgordonlast steps to decouple heat tempest jobs from the standard tempest-full run20:46
flashgordonstevebaker: ^20:48
*** packet has quit IRC20:48
*** serg_melikyan has quit IRC20:49
*** kebray has joined #heat20:52
*** kebray has quit IRC20:53
*** harlowja has quit IRC20:53
*** jpeeler has quit IRC20:55
*** sdake has quit IRC20:58
*** kebray has joined #heat21:00
*** achanda has quit IRC21:08
*** JayJ_ has quit IRC21:18
*** Marga_ has joined #heat21:21
*** tspatzier has joined #heat21:24
*** sabeen1 has quit IRC21:29
*** Raj1 has joined #heat21:30
*** InblEric1 has joined #heat21:31
*** InblEric1 has quit IRC21:32
*** tspatzier has quit IRC21:32
*** Drago has quit IRC21:33
*** Raj1 has quit IRC21:33
*** InblEric has quit IRC21:33
*** Raj1 has joined #heat21:34
*** dsneddon has quit IRC21:34
*** pm90_ has quit IRC21:35
*** dsneddon has joined #heat21:37
*** dsneddon is now known as dsneddon_away21:37
*** pm90_ has joined #heat21:39
*** jasond has quit IRC21:40
*** sputnik13 has quit IRC21:46
*** achanda has joined #heat22:08
*** david-lyle has joined #heat22:12
*** randallburt has quit IRC22:13
*** pm90_ has quit IRC22:14
*** achanda has quit IRC22:14
*** mspreitz has quit IRC22:17
*** hdd has quit IRC22:21
*** pm90_ has joined #heat22:21
*** pm90_ has quit IRC22:24
*** pm90_ has joined #heat22:25
*** achanda has joined #heat22:26
*** smccully has quit IRC22:28
*** thedodd has quit IRC22:32
*** harlowja has joined #heat22:40
*** Raj1 has quit IRC22:44
*** achanda has quit IRC22:53
*** sputnik13 has joined #heat22:56
*** signed8bit has quit IRC23:17
*** pm90_ has quit IRC23:24
*** Viswanath has joined #heat23:31
*** achanda has joined #heat23:32
*** Viswanath has quit IRC23:40
*** mspreitz has joined #heat23:42

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