*** sabeen has joined #heat | 00:03 | |
*** sabeen2 has joined #heat | 00:06 | |
*** sabeen has quit IRC | 00:08 | |
*** Drago has quit IRC | 00:13 | |
*** pradk has quit IRC | 00:14 | |
*** Qiming has quit IRC | 00:17 | |
*** mburns has joined #heat | 00:31 | |
*** pratikmallya has joined #heat | 00:35 | |
*** achanda has joined #heat | 00:41 | |
*** ricolin has joined #heat | 00:41 | |
*** achanda has quit IRC | 00:43 | |
*** achanda has joined #heat | 00:43 | |
*** achanda has quit IRC | 00:44 | |
*** achanda has joined #heat | 00:45 | |
*** sdake has quit IRC | 00:46 | |
*** achanda has quit IRC | 00:47 | |
*** achanda has joined #heat | 00:50 | |
*** Qiming has joined #heat | 00:51 | |
*** achanda has quit IRC | 00:55 | |
*** asalkeld has quit IRC | 00:57 | |
*** achanda has joined #heat | 01:00 | |
openstackgerrit | Rico Lin proposed openstack/heat: remove warnings in heat https://review.openstack.org/267269 | 01:00 |
---|---|---|
*** achanda has quit IRC | 01:01 | |
*** dims has quit IRC | 01:01 | |
*** pratikmallya has quit IRC | 01:03 | |
*** achanda has joined #heat | 01:05 | |
*** vishwanathj has joined #heat | 01:06 | |
*** vishwanathj has quit IRC | 01:07 | |
*** vishwanathj has joined #heat | 01:12 | |
openstackgerrit | huangtianhua proposed openstack/heat: Attempt to delete internal resources if create server fail https://review.openstack.org/268956 | 01:16 |
*** sdake has joined #heat | 01:17 | |
*** achanda has quit IRC | 01:17 | |
*** achanda has joined #heat | 01:21 | |
*** pradk has joined #heat | 01:23 | |
*** dims has joined #heat | 01:23 | |
*** achanda has quit IRC | 01:26 | |
*** jlk has joined #heat | 01:38 | |
jlk | Hey all, running into something with Heat on Kilo. We're the provider. A user is doing some heat stack creations, and running awry of some keystone middleware we have. Our middleware checks password complexity for users, and it appears their heat stack is causing users to be created in Keystone. | 01:39 |
jlk | I'm trying to figure out in what scenarios keystone users get created from heat templates (which don't explicitly create any users), and where passwords for these users come from | 01:39 |
Qiming | jlk, not 100% sure, but it is highly likely that the new users are created as stack users | 01:40 |
*** ccard_ has quit IRC | 01:42 | |
jlk | yeah, I'm pretty sure these are heat stack domain users that are getting created, and I'm thinking you get one for every stack, automatically | 01:42 |
Qiming | jlk, check this link: http://hardysteven.blogspot.com/2014/04/heat-auth-model-updates-part-2-stack.html | 01:42 |
jlk | or if OS::Nova::Server is used | 01:43 |
jlk | yes, that's been read :) | 01:43 |
jlk | so the odd thign is, it doesn't fail the complexity test every time | 01:43 |
jlk | so I /think/ that there is something doing a random password for the keystone user creation | 01:43 |
jlk | but I can't confirm that in the code | 01:43 |
Qiming | so ... it is not reproducible ? :) | 01:43 |
jlk | it is, just not 100% of the time | 01:43 |
Qiming | okay | 01:43 |
Qiming | jlk, mind file a bug for this? | 01:46 |
*** ccard_ has joined #heat | 01:46 | |
jlk | I'm not sure it's a bug, or at least not a bug in heat, more of our incomplete understanding of what heat does as part of normal operation | 01:46 |
jlk | We can certainly modify our password complexity checker to avoid checking heat domain users, but I want to understand what the "normal operation" is here | 01:47 |
jlk | if they're actually randomized passwords somewhere. | 01:47 |
jlk | that's what it "feels" like, why some would succeed and some would not, but it could have to do with what the customer is doing | 01:47 |
Qiming | a quick check of the source | 01:49 |
Qiming | it seems that sometimes heat may choose to use the admin_pass provided for the Server resource | 01:49 |
Qiming | sometimes it will use something like this: self.password = uuid.uuid4().hex | 01:50 |
jlk | that's what I found too. | 01:50 |
*** elynn__ has joined #heat | 01:52 | |
jlk | Could you confirm that every call to create a Nova Server would cause the creation of a stack domain user? | 01:54 |
*** elynn__ has quit IRC | 01:57 | |
*** elynn__ has joined #heat | 01:58 | |
Qiming | jlk, I'm not sure | 02:00 |
Qiming | but if you are using software configs | 02:00 |
*** elynn__ has quit IRC | 02:00 | |
Qiming | it will always get created | 02:00 |
*** elynn has joined #heat | 02:00 | |
jlk | what does that look like in a template? I'm very novice to Heat, but I have my customer's templates | 02:01 |
jlk | oh, OS::Heat::SoftwareConfig | 02:01 |
Qiming | yes | 02:04 |
*** Yanyanhu has joined #heat | 02:04 | |
*** sdake_ has joined #heat | 02:05 | |
stevebaker | jlk: there are a few resources which create users. maybe you can disable the password check for the heat domain, since it that domain only ever has non-human users in it | 02:05 |
stevebaker | jlk: alternatively, since heat passwords are failing that could be a good indication that your checker isn't very good at detecting entropy - and may even be encouraging your users to create crumby passwords, but I digress ... ;) | 02:07 |
*** sdake has quit IRC | 02:07 | |
openstackgerrit | Rico Lin proposed openstack/heat: JSON size violation gives a bad error with nested templates https://review.openstack.org/252201 | 02:11 |
jlk | stevebaker: oh there is no question that our password checker is bullshit. It's a corporate policy thing. ENTERPRISE! | 02:12 |
stevebaker | heh | 02:13 |
jlk | stevebaker: and I may be using this as even more reason to roll it back | 02:13 |
stevebaker | good luck | 02:13 |
jlk | but I want to know why heat is tripping it up, if Heat is doing random passwords for these users | 02:13 |
stevebaker | yes, its random passwords | 02:13 |
jlk | they are using SoftwareConfig, which would generate a user, so that bit of the mystery is solved, the next bit is the content for the password | 02:13 |
jlk | is it that string we found, uuid.hex ? | 02:13 |
stevebaker | let me check | 02:14 |
stevebaker | jlk: yep, all I see is uuid.uuid4().hex | 02:18 |
*** tlashchova has quit IRC | 02:19 | |
*** david-lyle has joined #heat | 02:22 | |
jlk | huh, I don't see how that would ever return anything with a uppercase letter | 02:28 |
openstackgerrit | Merged openstack/python-heatclient: Include keystone message when authentication failed https://review.openstack.org/267674 | 02:37 |
*** bana_k has quit IRC | 02:52 | |
*** e0ne has quit IRC | 02:59 | |
*** e0ne has joined #heat | 03:00 | |
*** e0ne has quit IRC | 03:01 | |
*** e0ne has joined #heat | 03:03 | |
*** e0ne has quit IRC | 03:03 | |
openstackgerrit | huangtianhua proposed openstack/heat: Don't update the name of keystone resources if name don't change https://review.openstack.org/253413 | 03:09 |
openstackgerrit | huangtianhua proposed openstack/heat: Don't check existence of keystone resource for empty value https://review.openstack.org/254672 | 03:09 |
*** Marga_ has joined #heat | 03:10 | |
*** vishwanathj has quit IRC | 03:10 | |
*** elynn has quit IRC | 03:11 | |
*** yuanying has quit IRC | 03:15 | |
*** elynn has joined #heat | 03:16 | |
*** dims has quit IRC | 03:20 | |
*** achanda has joined #heat | 03:21 | |
*** tochi has quit IRC | 03:25 | |
*** links has joined #heat | 03:27 | |
*** asalkeld has joined #heat | 03:28 | |
openstackgerrit | Rico Lin proposed openstack/heat: JSON size violation gives a bad error with nested templates https://review.openstack.org/252201 | 03:31 |
*** ccard_ has quit IRC | 03:31 | |
*** ccard_ has joined #heat | 03:32 | |
*** gberginc has joined #heat | 03:34 | |
*** mragupat has joined #heat | 03:37 | |
*** asalkeld has quit IRC | 03:39 | |
*** achanda has quit IRC | 04:00 | |
*** yuanying has joined #heat | 04:07 | |
*** kebray has joined #heat | 04:10 | |
*** KanagarajM has joined #heat | 04:12 | |
*** elynn has quit IRC | 04:21 | |
*** sdake_ has quit IRC | 04:22 | |
*** Marga_ has quit IRC | 04:30 | |
*** achanda has joined #heat | 04:30 | |
*** Marga_ has joined #heat | 04:30 | |
*** tochi has joined #heat | 04:36 | |
*** achanda has quit IRC | 04:38 | |
*** achanda has joined #heat | 04:39 | |
*** Marga_ has quit IRC | 04:44 | |
*** KanagarajM_ has joined #heat | 04:48 | |
*** sabeen2 has quit IRC | 04:49 | |
*** KanagarajM has quit IRC | 04:52 | |
*** pradk has quit IRC | 04:58 | |
*** KanagarajM__ has joined #heat | 04:59 | |
*** KanagarajM_ has quit IRC | 05:03 | |
*** elynn has joined #heat | 05:04 | |
*** daneyon has joined #heat | 05:06 | |
*** mragupat has quit IRC | 05:07 | |
*** daneyon has quit IRC | 05:11 | |
*** ananta has joined #heat | 05:33 | |
openstackgerrit | javeme proposed openstack/heat: deprecate module heat.api.middleware.ssl https://review.openstack.org/258311 | 05:34 |
*** KanagarajM__ has quit IRC | 05:38 | |
*** akuznetsov has joined #heat | 05:44 | |
*** sdake has joined #heat | 05:44 | |
*** jaosorior has joined #heat | 05:45 | |
*** jtomasek has joined #heat | 05:50 | |
*** gberginc has quit IRC | 05:56 | |
*** jamielennox is now known as jamielennox|away | 05:59 | |
*** ricolin has quit IRC | 05:59 | |
*** daneyon has joined #heat | 06:01 | |
*** elynn_ has joined #heat | 06:02 | |
*** daneyon has quit IRC | 06:05 | |
*** elynn__ has joined #heat | 06:06 | |
*** elynn_ has quit IRC | 06:07 | |
*** daneyon has joined #heat | 06:12 | |
*** elynn__ has quit IRC | 06:13 | |
*** daneyon has quit IRC | 06:17 | |
*** vgridnev has joined #heat | 06:22 | |
*** GonZo2000 has quit IRC | 06:22 | |
*** achanda_ has joined #heat | 06:25 | |
*** achanda has quit IRC | 06:28 | |
*** akuznetsov has quit IRC | 06:38 | |
*** gberginc has joined #heat | 06:40 | |
*** daneyon has joined #heat | 06:43 | |
*** achanda_ has quit IRC | 06:43 | |
*** jprovazn has joined #heat | 06:45 | |
*** vgridnev has quit IRC | 06:45 | |
*** daneyon has quit IRC | 06:47 | |
*** kebray has quit IRC | 06:59 | |
*** jcoufal has joined #heat | 07:03 | |
openstackgerrit | huangtianhua proposed openstack/heat: Use reauth context instead of stored context if enable reauth https://review.openstack.org/269456 | 07:07 |
*** vgridnev has joined #heat | 07:15 | |
*** sshen_ has quit IRC | 07:27 | |
openstackgerrit | huangtianhua proposed openstack/heat: Support neutron address scope https://review.openstack.org/259261 | 07:27 |
*** sshen has joined #heat | 07:27 | |
*** chestack has joined #heat | 07:34 | |
*** hdd has quit IRC | 07:35 | |
*** daneyon has joined #heat | 07:37 | |
*** daneyon has quit IRC | 07:41 | |
*** hdd has joined #heat | 07:43 | |
*** vgridnev has quit IRC | 07:49 | |
*** chestack has quit IRC | 07:49 | |
*** chestack has joined #heat | 07:54 | |
*** tochi has quit IRC | 08:02 | |
*** tochi has joined #heat | 08:02 | |
*** vgridnev has joined #heat | 08:19 | |
*** chlong has quit IRC | 08:27 | |
*** sdake_ has joined #heat | 08:28 | |
skraynev | morning all | 08:29 |
skraynev | therve: I have replied on your comments. Looks like there is one comment, which make sense - mentioned by Randall | 08:30 |
*** sdake has quit IRC | 08:31 | |
*** daneyon has joined #heat | 08:31 | |
therve | skraynev, Yeah | 08:34 |
skraynev | therve: thank you for understanding. | 08:35 |
*** bana_k has joined #heat | 08:35 | |
*** daneyon has quit IRC | 08:36 | |
openstackgerrit | Merged openstack/heat: Unify workers options for API services https://review.openstack.org/254728 | 08:44 |
therve | skraynev, https://github.com/openstack/oslo.messaging/blob/master/doc/source/target.rst#target-versions | 08:46 |
therve | Got the definitive clear answer :) | 08:46 |
*** hdd has quit IRC | 08:50 | |
skraynev | thereve: and it looks like we need to bump minor version, what Randall suggested. | 08:51 |
*** bana_k has quit IRC | 08:51 | |
*** rakesh_hs has joined #heat | 08:59 | |
openstackgerrit | Thomas Herve proposed openstack/heat: Provide software deployment id on create https://review.openstack.org/265714 | 09:03 |
*** e0ne has joined #heat | 09:03 | |
*** sirius_ has joined #heat | 09:04 | |
*** elynn has quit IRC | 09:04 | |
*** elynn has joined #heat | 09:04 | |
*** sdake_ has quit IRC | 09:07 | |
*** prazumovsky has joined #heat | 09:08 | |
skraynev | elynn: hi. around? | 09:09 |
prazumovsky | hello all! Could you kindly review https://review.openstack.org/#/c/264906/ (it's just adding docstrings to resource plugins). Sorry for ad:) | 09:10 |
*** yassine__ has joined #heat | 09:11 | |
*** jistr has joined #heat | 09:20 | |
*** GonZo2000 has joined #heat | 09:24 | |
*** GonZo2000 has quit IRC | 09:24 | |
*** GonZo2000 has joined #heat | 09:24 | |
*** daneyon has joined #heat | 09:25 | |
*** blues-man has joined #heat | 09:27 | |
*** blues-man has quit IRC | 09:28 | |
*** blues-man has joined #heat | 09:28 | |
*** Marga_ has joined #heat | 09:29 | |
*** daneyon has quit IRC | 09:30 | |
*** sorantis has joined #heat | 09:33 | |
*** e0ne has quit IRC | 09:34 | |
elynn | skraynev: Hi | 09:39 |
skraynev | elynn: wanted to ask you about fix for unicode names | 09:40 |
skraynev | I have seen, that zaneb left several comments, so do you plan to resolve it soon or may be will be better to move bug to m3? | 09:40 |
elynn | skraynev: yes, I saw zaneb's comments but I haven't got hands on it. | 09:40 |
skraynev | elynn: so m3 is ok for you? | 09:41 |
elynn | If it's not blocking , I will solve it at m3 | 09:41 |
elynn | thanks skraynev. | 09:41 |
skraynev | elynn: yes. it's not real blocker and I suppose, we may move to m3 it | 09:41 |
*** derekh has joined #heat | 09:43 | |
*** boris-42 has quit IRC | 09:43 | |
*** e0ne has joined #heat | 09:48 | |
*** sdake has joined #heat | 09:51 | |
openstackgerrit | Peter Razumovsky proposed openstack/heat: Refactor get_live_state using during update https://review.openstack.org/264861 | 09:55 |
*** e0ne has quit IRC | 09:57 | |
*** kse has quit IRC | 10:00 | |
*** gberginc has quit IRC | 10:02 | |
openstackgerrit | Di XiaoLi proposed openstack/heat: Replace the word "printf'd" with "formatted" https://review.openstack.org/268760 | 10:04 |
openstackgerrit | Oleg Khavroshin proposed openstack/heat: Edit backslashes for lines continuation https://review.openstack.org/266384 | 10:05 |
*** vgridnev has quit IRC | 10:06 | |
*** vgridnev has joined #heat | 10:07 | |
openstackgerrit | Peter Razumovsky proposed openstack/heat: vpnservice.py get_live_state implementation https://review.openstack.org/266910 | 10:08 |
*** mdavidson has joined #heat | 10:08 | |
*** gberginc has joined #heat | 10:09 | |
*** Qiming has quit IRC | 10:12 | |
*** kbyrne has quit IRC | 10:12 | |
*** elynn has quit IRC | 10:13 | |
*** vgridnev has quit IRC | 10:13 | |
*** sdake has quit IRC | 10:15 | |
*** Marga_ has quit IRC | 10:18 | |
*** daneyon has joined #heat | 10:19 | |
*** Yanyanhu has quit IRC | 10:24 | |
*** daneyon has quit IRC | 10:24 | |
*** vgridnev has joined #heat | 10:26 | |
*** zeih has joined #heat | 10:37 | |
*** gberginc has quit IRC | 10:44 | |
*** tlashchova has joined #heat | 10:47 | |
*** dims has joined #heat | 10:48 | |
*** vgridnev has quit IRC | 10:49 | |
*** palexster has quit IRC | 10:49 | |
*** Marga_ has joined #heat | 10:53 | |
*** yassine__ has quit IRC | 10:56 | |
*** gberginc has joined #heat | 11:00 | |
*** ananta has quit IRC | 11:03 | |
*** tochi has quit IRC | 11:04 | |
*** sirius_ has quit IRC | 11:05 | |
*** Qiming has joined #heat | 11:05 | |
*** blues-man has quit IRC | 11:11 | |
*** daneyon has joined #heat | 11:14 | |
*** Marga_ has quit IRC | 11:15 | |
*** vgridnev has joined #heat | 11:15 | |
*** zeih has quit IRC | 11:16 | |
*** daneyon has quit IRC | 11:18 | |
*** jaosorior has quit IRC | 11:22 | |
*** sorantis has quit IRC | 11:22 | |
*** jaosorior has joined #heat | 11:22 | |
openstackgerrit | Peter Razumovsky proposed openstack/heat: Cinder::VolumeType get_live_state implementation https://review.openstack.org/250451 | 11:26 |
*** blues-man has joined #heat | 11:27 | |
*** chestack has quit IRC | 11:28 | |
*** chestack has joined #heat | 11:34 | |
*** zeih has joined #heat | 11:35 | |
*** e0ne has joined #heat | 11:38 | |
*** zeih has quit IRC | 11:40 | |
openstackgerrit | Peter Razumovsky proposed openstack/heat: Cinder::VolumeType get_live_state implementation https://review.openstack.org/250451 | 11:43 |
openstackgerrit | Peter Razumovsky proposed openstack/heat: EncryptedVolumeType get_live_state implementation https://review.openstack.org/250666 | 11:44 |
dgonzalez | Hi all, i would appreciate it if somebody could have a look at https://review.openstack.org/#/c/248011/. Its a small senario test for multi-region deployments | 11:44 |
*** novegin has joined #heat | 11:52 | |
novegin | hi folks, if i have stack of 10 vms, how to do stack update for one of the vm(change image) | 11:53 |
*** zeih has joined #heat | 11:54 | |
novegin | without affecting other 9 vms | 11:55 |
*** GonZo2000 has quit IRC | 11:56 | |
openstackgerrit | Peter Razumovsky proposed openstack/heat: EncryptedVolumeType get_live_state implementation https://review.openstack.org/250666 | 11:57 |
*** yassine__ has joined #heat | 11:57 | |
openstackgerrit | Peter Razumovsky proposed openstack/heat: Barbican::Order get_live_state implementation https://review.openstack.org/252976 | 11:59 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/heat: Updated from global requirements https://review.openstack.org/269319 | 12:02 |
*** palexster has joined #heat | 12:07 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/python-heatclient: Updated from global requirements https://review.openstack.org/268510 | 12:07 |
*** daneyon has joined #heat | 12:08 | |
openstackgerrit | Peter Razumovsky proposed openstack/heat: Barbican::Order get_live_state implementation https://review.openstack.org/252976 | 12:11 |
openstackgerrit | Peter Razumovsky proposed openstack/heat: Barbican::Secret get_live_state implementation https://review.openstack.org/254226 | 12:12 |
*** daneyon has quit IRC | 12:13 | |
openstackgerrit | zhaozhilong proposed openstack/heat: On branch bug/1535051 Changes to be committed: https://review.openstack.org/269589 | 12:14 |
*** elynn has joined #heat | 12:15 | |
openstackgerrit | Peter Razumovsky proposed openstack/heat: Barbican::Secret get_live_state implementation https://review.openstack.org/254226 | 12:16 |
*** prazumovsky has quit IRC | 12:20 | |
*** sorantis has joined #heat | 12:20 | |
*** elynn_ has joined #heat | 12:28 | |
*** elynn has quit IRC | 12:30 | |
*** jtomasek__ has joined #heat | 12:30 | |
*** jtomasek__ has quit IRC | 12:30 | |
*** jtomasek_ has joined #heat | 12:30 | |
*** akuznetsov has joined #heat | 12:32 | |
openstackgerrit | zhaozhilong proposed openstack/heat: On branch bug1507502 Changes to be committed: https://review.openstack.org/269598 | 12:39 |
*** rakesh_hs has quit IRC | 12:46 | |
*** links has quit IRC | 12:46 | |
*** chestack has quit IRC | 12:56 | |
*** daneyon has joined #heat | 13:02 | |
*** sdake has joined #heat | 13:06 | |
*** daneyon has quit IRC | 13:06 | |
*** dprince has joined #heat | 13:07 | |
*** radez has quit IRC | 13:10 | |
*** vgridnev has quit IRC | 13:12 | |
*** vgridnev has joined #heat | 13:14 | |
*** shakamunyi has joined #heat | 13:24 | |
*** neelashah has quit IRC | 13:28 | |
*** akuznetsov has quit IRC | 13:46 | |
*** crose has joined #heat | 13:47 | |
*** jaosorior has quit IRC | 13:48 | |
*** jaosorior has joined #heat | 13:48 | |
*** liusheng has quit IRC | 13:55 | |
*** daneyon has joined #heat | 13:56 | |
*** Marga_ has joined #heat | 13:57 | |
*** daneyon has quit IRC | 14:01 | |
*** sabeen1 has joined #heat | 14:08 | |
*** jonesbr has joined #heat | 14:09 | |
*** sabeen3 has joined #heat | 14:11 | |
*** sabeen3 has left #heat | 14:11 | |
*** elynn_ has quit IRC | 14:12 | |
*** sabeen1 has quit IRC | 14:13 | |
*** sirius_ has joined #heat | 14:19 | |
*** pratikmallya has joined #heat | 14:27 | |
*** pratikma_ has joined #heat | 14:29 | |
*** sabeen1 has joined #heat | 14:31 | |
*** pratikmallya has quit IRC | 14:32 | |
skraynev | stevebaker: I have looked on the queue https://review.openstack.org/#/q/project:openstack/python-heatclient+status:open+-topic:bp/heat-support-python-openstackclient looks like we can introduce 0.9.0 tomorrow (after meeting) I plan to upload patch with skipping ocs registration today later. so when it land I will point his sha1 in commit to releases repo. do you have any objections? | 14:38 |
*** neelashah has joined #heat | 14:47 | |
*** daneyon has joined #heat | 14:50 | |
*** crose has quit IRC | 14:54 | |
*** daneyon has quit IRC | 14:55 | |
openstackgerrit | Zane Bitter proposed openstack/heat: Load template files only from their known source https://review.openstack.org/269689 | 15:00 |
*** Raj1 has joined #heat | 15:01 | |
*** Raj1 has quit IRC | 15:01 | |
*** Raj1 has joined #heat | 15:01 | |
*** mragupat has joined #heat | 15:04 | |
*** jcoufal_ has joined #heat | 15:06 | |
*** rpothier has joined #heat | 15:08 | |
*** jcoufal has quit IRC | 15:09 | |
*** blomquisg has quit IRC | 15:12 | |
*** jcoufal has joined #heat | 15:13 | |
*** Raj1 has quit IRC | 15:16 | |
*** jcoufal_ has quit IRC | 15:16 | |
*** spotz_zzz is now known as spotz | 15:20 | |
*** Raj1 has joined #heat | 15:27 | |
*** achanda has joined #heat | 15:29 | |
*** sirius_ has quit IRC | 15:30 | |
*** sdake has quit IRC | 15:31 | |
*** sirius_ has joined #heat | 15:32 | |
*** crose has joined #heat | 15:33 | |
*** jaime49 has joined #heat | 15:34 | |
*** inc0 has joined #heat | 15:35 | |
*** Raj1 has quit IRC | 15:38 | |
*** achanda has quit IRC | 15:40 | |
*** novegin has quit IRC | 15:40 | |
*** blues-man has quit IRC | 15:40 | |
*** sorantis has quit IRC | 15:43 | |
openstackgerrit | Mark Vanderwiel proposed openstack/python-heatclient: Add openstack client stack snapshot list https://review.openstack.org/267786 | 15:43 |
*** daneyon has joined #heat | 15:44 | |
*** sirius_ has quit IRC | 15:44 | |
*** wathoom has joined #heat | 15:47 | |
openstackgerrit | Pratik Mallya proposed openstack/heat: Make ASG resource work when no lb is specified https://review.openstack.org/269718 | 15:48 |
*** daneyon has quit IRC | 15:49 | |
*** blues-man has joined #heat | 15:51 | |
*** blues-man has quit IRC | 15:52 | |
*** blues-man has joined #heat | 15:52 | |
*** hdd has joined #heat | 15:54 | |
*** Marga_ has quit IRC | 15:54 | |
*** sirius_ has joined #heat | 15:58 | |
*** achanda has joined #heat | 15:59 | |
*** sdake has joined #heat | 16:01 | |
*** Raj1 has joined #heat | 16:03 | |
*** boris-42 has joined #heat | 16:03 | |
*** achanda has quit IRC | 16:03 | |
*** vijendar has joined #heat | 16:04 | |
*** zeih has quit IRC | 16:04 | |
*** hdd has quit IRC | 16:06 | |
*** Qiming has quit IRC | 16:09 | |
*** ahelkhou1 has joined #heat | 16:10 | |
*** blomquisg has joined #heat | 16:12 | |
openstackgerrit | Pratik Mallya proposed openstack/heat: Make ASG resource work when no lb is specified https://review.openstack.org/269718 | 16:14 |
*** Drago has joined #heat | 16:15 | |
*** Drago has quit IRC | 16:16 | |
*** Drago has joined #heat | 16:16 | |
openstackgerrit | Nanke_Liu (lnk) proposed openstack/heat: Remove openstack-common.conf https://review.openstack.org/264608 | 16:17 |
openstackgerrit | Oleksii Chuprykov proposed openstack/heat: Add default values for bit_length and alorithm prop https://review.openstack.org/269737 | 16:17 |
*** daneyon has joined #heat | 16:17 | |
openstackgerrit | Merged openstack/heat: Updated from global requirements https://review.openstack.org/269319 | 16:21 |
openstackgerrit | Oleksii Chuprykov proposed openstack/heat: Add default values for bit_length and algorithm prop https://review.openstack.org/269737 | 16:21 |
*** daneyon_ has joined #heat | 16:23 | |
*** daneyon has quit IRC | 16:26 | |
openstackgerrit | Drago proposed openstack/heat: Add Rackspace::Cloud::LBNode https://review.openstack.org/268400 | 16:29 |
*** asalkeld has joined #heat | 16:30 | |
*** sridhar_ram has joined #heat | 16:35 | |
*** vijendar has quit IRC | 16:35 | |
*** Marga_ has joined #heat | 16:44 | |
*** kebray has joined #heat | 16:45 | |
*** kebray has quit IRC | 16:46 | |
*** kebray has joined #heat | 16:50 | |
*** kebray has quit IRC | 16:51 | |
*** kebray has joined #heat | 16:52 | |
*** jprovazn has quit IRC | 16:57 | |
*** vishwanathj has joined #heat | 16:57 | |
*** david-lyle has quit IRC | 16:58 | |
*** cwolferh has joined #heat | 17:01 | |
*** e0ne has quit IRC | 17:01 | |
*** vijendar has joined #heat | 17:02 | |
*** sdake has quit IRC | 17:04 | |
*** sdake_ has joined #heat | 17:04 | |
*** david-lyle has joined #heat | 17:06 | |
*** hdd has joined #heat | 17:11 | |
*** bana_k has joined #heat | 17:12 | |
*** pas-ha has quit IRC | 17:15 | |
*** yassine__ has quit IRC | 17:18 | |
*** GonZo2000 has joined #heat | 17:20 | |
*** GonZo2000 has quit IRC | 17:20 | |
*** GonZo2000 has joined #heat | 17:20 | |
*** derekh has quit IRC | 17:23 | |
*** zeih has joined #heat | 17:31 | |
*** Marga_ has quit IRC | 17:37 | |
*** Marga_ has joined #heat | 17:38 | |
*** pratikma_ has quit IRC | 17:42 | |
*** sthillma has joined #heat | 17:43 | |
*** sthillma_ has joined #heat | 17:44 | |
*** sthillma has quit IRC | 17:47 | |
*** sthillma_ is now known as sthillma | 17:47 | |
*** zeih has quit IRC | 17:48 | |
*** jistr has quit IRC | 17:48 | |
*** Raj1 has quit IRC | 17:54 | |
*** akuznetsov has joined #heat | 18:01 | |
*** blues-man has quit IRC | 18:02 | |
*** sdake has joined #heat | 18:03 | |
*** sdake_ has quit IRC | 18:06 | |
*** Raj1 has joined #heat | 18:08 | |
openstackgerrit | Drago proposed openstack/heat: Add Rackspace::Cloud::LBNode https://review.openstack.org/268400 | 18:09 |
*** vijendar has quit IRC | 18:10 | |
*** pratikmallya has joined #heat | 18:10 | |
*** vijendar has joined #heat | 18:11 | |
openstackgerrit | Drago proposed openstack/heat: Add Rackspace::Cloud::LBNode https://review.openstack.org/268400 | 18:11 |
*** GonZo2000 has quit IRC | 18:11 | |
*** zeih has joined #heat | 18:12 | |
*** jtomasek_ has quit IRC | 18:14 | |
*** vijendar has quit IRC | 18:16 | |
*** e0ne has joined #heat | 18:16 | |
*** sabeen1 has quit IRC | 18:17 | |
*** vijendar has joined #heat | 18:18 | |
*** akuznetsov has quit IRC | 18:30 | |
*** zhiyan has quit IRC | 18:33 | |
*** sthillma has quit IRC | 18:36 | |
*** zhiyan has joined #heat | 18:36 | |
*** akuznetsov has joined #heat | 18:38 | |
*** Raj1 has quit IRC | 18:40 | |
*** Tristitia has quit IRC | 18:42 | |
*** sridhar_ram has quit IRC | 18:44 | |
*** rwsu has quit IRC | 18:45 | |
*** vishwanathj has quit IRC | 18:47 | |
*** akuznetsov has quit IRC | 18:48 | |
*** boris-42 has quit IRC | 18:53 | |
*** sdake_ has joined #heat | 18:55 | |
*** dsneddon has quit IRC | 18:56 | |
*** sdake has quit IRC | 18:57 | |
*** neelashah has quit IRC | 18:58 | |
*** neelashah has joined #heat | 19:00 | |
*** vijendar has quit IRC | 19:01 | |
*** vijendar has joined #heat | 19:02 | |
*** alex_xu has quit IRC | 19:04 | |
*** sabeen has joined #heat | 19:04 | |
*** sabeen2 has joined #heat | 19:06 | |
*** zeih has quit IRC | 19:06 | |
*** dsneddon has joined #heat | 19:07 | |
*** alex_xu has joined #heat | 19:07 | |
*** sabeen has quit IRC | 19:09 | |
*** akuznetsov has joined #heat | 19:14 | |
*** crose has quit IRC | 19:15 | |
*** akuznetsov has quit IRC | 19:15 | |
*** akuznetsov has joined #heat | 19:18 | |
*** jcoufal has quit IRC | 19:19 | |
*** sridhar_ram has joined #heat | 19:23 | |
*** jaosorior has quit IRC | 19:25 | |
*** jaosorior has joined #heat | 19:25 | |
*** rwsu has joined #heat | 19:26 | |
*** akuznetsov has quit IRC | 19:26 | |
*** sridhar_ram has quit IRC | 19:34 | |
*** sridhar_ram1 has joined #heat | 19:34 | |
stevebaker | skraynev: sounds good. You could do a 2 patch series which skip then unskip ocs registration | 19:36 |
stevebaker | skraynev: I should be able to do a 0.8.1 today | 19:36 |
*** neelashah has quit IRC | 19:42 | |
*** GonZo2000 has joined #heat | 19:44 | |
*** GonZo2000 has quit IRC | 19:44 | |
*** GonZo2000 has joined #heat | 19:44 | |
*** neelashah has joined #heat | 19:51 | |
openstackgerrit | Pratik Mallya proposed openstack/heat: Make ASG resource work when no lb is specified https://review.openstack.org/269718 | 19:55 |
*** PsionTheory has joined #heat | 19:56 | |
*** sdake_ is now known as sdaake | 19:57 | |
*** sdaake is now known as sdake | 19:57 | |
*** sirius_ has quit IRC | 19:58 | |
*** kebray has quit IRC | 20:01 | |
*** kebray has joined #heat | 20:02 | |
*** e0ne has quit IRC | 20:04 | |
*** jaosorior has quit IRC | 20:08 | |
*** neelashah has quit IRC | 20:08 | |
*** dprince has quit IRC | 20:09 | |
*** neelashah has joined #heat | 20:11 | |
openstackgerrit | Pratik Mallya proposed openstack/heat: Make ASG resource work when no lb is specified https://review.openstack.org/269718 | 20:16 |
openstackgerrit | Peter Razumovsky proposed openstack/heat: Cinder::Volume get_live_state implementation https://review.openstack.org/261445 | 20:18 |
*** e0ne has joined #heat | 20:22 | |
*** e0ne has quit IRC | 20:22 | |
*** vijendar has quit IRC | 20:24 | |
openstackgerrit | Jay Dobies proposed openstack/heat: Add environment retrieval API https://review.openstack.org/269851 | 20:29 |
*** sabeen2 has quit IRC | 20:33 | |
openstackgerrit | Steve Baker proposed openstack/heat: Push deployments metadata on delete https://review.openstack.org/254433 | 20:33 |
*** gberginc has quit IRC | 20:38 | |
*** vijendar has joined #heat | 20:38 | |
skraynev | stevebaker: awesome. I also plan to release m-2 tomorrow (after meeting) and I already uploaded patch for 5.01 | 20:41 |
skraynev | stevebaker, zaneb: https://review.openstack.org/269856 | 20:42 |
*** boris-42 has joined #heat | 20:42 | |
zaneb | skraynev: great! +1'd thank you | 20:44 |
skraynev | zaneb: thank you and stevebaker for the help ;) | 20:45 |
stevebaker | no problem | 20:45 |
skraynev | FYI: there are three fix for bugs are on review for m-2 https://review.openstack.org/#/c/258311/ , https://review.openstack.org/#/c/265714/5 , https://review.openstack.org/#/c/259657/ | 20:45 |
skraynev | stevebaker ^ | 20:46 |
skraynev | so if somebody has a power for review, please do it ;) | 20:46 |
stevebaker | looking | 20:46 |
skraynev | stevebaker, zaneb: another important thing. Probably you will not attend to the tommorrow meeting (so, please take a look on it ) | 20:49 |
skraynev | http://docs.openstack.org/project-team-guide/cross-project.html#cross-project-specification-liaisons | 20:49 |
skraynev | https://wiki.openstack.org/wiki/CrossProjectLiaisons#Cross-Project_Spec_Liaisons | 20:49 |
skraynev | probably we need to find volunteer for this role | 20:50 |
skraynev | in future of course | 20:50 |
stevebaker | sure | 20:51 |
skraynev | Go to sleep. Good day/night all :) | 20:52 |
*** blomquisg has quit IRC | 20:53 | |
*** vgridnev has quit IRC | 20:56 | |
zaneb | dammit, stevebaker you just +A'd that patch as I was in the middle of -1'ing it | 20:56 |
stevebaker | zaneb: lol, which? will unapprove | 20:57 |
zaneb | https://review.openstack.org/#/c/258311/7 | 20:57 |
stevebaker | zaneb: I thought we treated api-paste.ini as a source file, not configuration. So downstream can simply distrubute the changed api-paste.ini | 20:59 |
*** blomquisg_gone has joined #heat | 20:59 | |
*** sridhar_ram1 has quit IRC | 21:01 | |
zaneb | stevebaker: hmm, that's possible. it's still a problem for any user with a custom pipeline though isn't it | 21:03 |
zaneb | the change just seem gratuitous | 21:04 |
zaneb | it could easily be done in such a way that that could never become an issue | 21:04 |
*** blomquisg_gone is now known as blomquisg | 21:05 | |
stevebaker | zaneb: can't they just keep using their custom pipeline until they are ready to change? then they can use the distributed api-paste.ini as a reference for changes | 21:05 |
zaneb | stevebaker: that was your way of volunteering to be assigned whatever director bugs this causes, right? ;) | 21:07 |
stevebaker | zaneb: also I wonder if anyone ever used the ssl middleware in production, or do they use their own ssl proxies | 21:07 |
*** vgridnev has joined #heat | 21:07 | |
*** jonesbr has left #heat | 21:09 | |
stevebaker | zaneb: sure thing! (screw you, future Steve) | 21:10 |
zaneb | "also I wonder if anyone ever used the ssl middleware in production" <- so you're suggesting that substantially everyone will have customised this file? | 21:12 |
zaneb | stevebaker: I just don't understand why we would make a change we think/hope won't cause trouble, when we could just as easily commit a change that we *know* won't. if it were way harder to do it the other way then I might feel differently, but it doesn't look to be | 21:13 |
*** sdake has quit IRC | 21:16 | |
stevebaker | zaneb: ok, looking at ssl vs http_proxy_to_wsgi, the latter looks like a drop-in replacement for the former. They just handle any HTTP_X_FORWARDED_PROTO header (except http_proxy_to_wsgi looks more complete and correct) | 21:18 |
stevebaker | https://github.com/openstack/oslo.middleware/blob/master/oslo_middleware/http_proxy_to_wsgi.py | 21:18 |
stevebaker | https://github.com/openstack/oslo.middleware/blob/master/oslo_middleware/ssl.py | 21:18 |
*** neelashah has quit IRC | 21:19 | |
*** vgridnev has quit IRC | 21:19 | |
*** vgridnev has joined #heat | 21:19 | |
stevebaker | zaneb: Also my understanding is that api-paste.ini is completely self-contained. The only thing which refers to line 81 is the pipelines in lines 14,4 | 21:19 |
*** gberginc has joined #heat | 21:19 | |
*** jtomasek has quit IRC | 21:20 | |
*** vgridnev has quit IRC | 21:20 | |
stevebaker | zaneb: so I don't understand your concern, the vast majority of deployments use the distributed api-paste.ini, which will switch to the new pipeline automatically, custom api-paste.ini will continue to work because it is self contained, and even if the old api-paste.ini remains after an upgrade it will continue to work until we delete heat/api/middleware/ssl.py | 21:21 |
zaneb | ok, I guess that's true | 21:22 |
zaneb | but api-paste.ini didn't reference oslo_middleware before, so why should it now? | 21:23 |
zaneb | if it's a drop-in replacement, why not drop it in behind the existing abstraction? | 21:23 |
*** e0ne has joined #heat | 21:23 | |
zaneb | (i.e. heat.api.middleware.ssl) | 21:23 |
*** vijendar has quit IRC | 21:24 | |
*** r05c03 has joined #heat | 21:25 | |
*** bana_k has quit IRC | 21:25 | |
*** bana_k has joined #heat | 21:26 | |
*** mbrennan has joined #heat | 21:26 | |
zaneb | stevebaker: ok, removed the -1 | 21:27 |
stevebaker | zaneb: I don't think heat.api.middleware.ssl is an abstraction, it is copypasted middleware which predates the lib oslo_middleware *and* oslo-incubator | 21:27 |
*** vijendar has joined #heat | 21:28 | |
openstackgerrit | Jay Dobies proposed openstack/heat: Add environment retrieval API https://review.openstack.org/269851 | 21:33 |
*** e0ne has quit IRC | 21:33 | |
*** sridhar_ram has joined #heat | 21:35 | |
*** sdake has joined #heat | 21:37 | |
dgonzalez | Hi all, if somebody has some time to spare, i would appreciate it if you could take a look at https://review.openstack.org/#/c/248011/. Its a small scenario test for multi-region deployments | 21:39 |
*** jaime49 has quit IRC | 21:40 | |
openstackgerrit | Merged openstack/heat: Support neutron address scope https://review.openstack.org/259261 | 21:42 |
openstackgerrit | Merged openstack/heat: deprecate module heat.api.middleware.ssl https://review.openstack.org/258311 | 21:45 |
*** neelashah has joined #heat | 21:54 | |
*** pratikmallya has quit IRC | 22:01 | |
*** jaime49 has joined #heat | 22:05 | |
*** jaime49 has quit IRC | 22:05 | |
*** sabeen1 has joined #heat | 22:05 | |
*** jaime49 has joined #heat | 22:05 | |
*** sabeen3 has joined #heat | 22:07 | |
openstackgerrit | Merged openstack/heat: Provide software deployment id on create https://review.openstack.org/265714 | 22:10 |
*** sabeen1 has quit IRC | 22:10 | |
*** sthillma has joined #heat | 22:10 | |
openstackgerrit | Merged openstack/heat: Replace the word "printf'd" with "formatted" https://review.openstack.org/268760 | 22:10 |
*** sridhar_ram has quit IRC | 22:15 | |
*** sridhar_ram has joined #heat | 22:17 | |
*** pratikmallya has joined #heat | 22:19 | |
*** sridhar_ram has quit IRC | 22:20 | |
*** sabeen3 has quit IRC | 22:22 | |
*** sabeen has joined #heat | 22:22 | |
*** sdake has quit IRC | 22:30 | |
*** mbrennan has quit IRC | 22:31 | |
*** rpothier has quit IRC | 22:34 | |
*** jamielennox|away is now known as jamielennox | 22:35 | |
*** pratikmallya has quit IRC | 22:40 | |
cwolferh | Anything need to be done to help https://review.openstack.org/#/c/254351/ get merged? | 22:49 |
stevebaker | cwolferh: hmm, this would break any existing scripts that delete stacks. | 22:52 |
cwolferh | stevebaker, if the scripts use a tty, that's true | 22:52 |
cwolferh | for scripts that use a tty, they could add -y to skip the prompt | 22:53 |
cwolferh | i'm thinking most scripts aren't actually going to pass the isatty() check though | 22:53 |
stevebaker | cwolferh: also we have a soft freeze on changes to heat commands so that features can go into the osc plugins. I'd be happy for this to happen to "openstack stack delete" https://review.openstack.org/#/c/242302/ | 22:54 |
stevebaker | cwolferh: maybe Amey wouldn't mind if you took over the change to implement "openstack stack delete" | 22:58 |
stevebaker | cwolferh: also considering this is for tripleo, maybe we should add an overcloud delete command, which does have a prompt. Then tripleo docs can just document that as the recommended way of deleting an overcloud | 22:59 |
*** inc0 has quit IRC | 22:59 | |
stevebaker | cwolferh: but let me have some lunch and have a play with isatty | 23:00 |
cwolferh | stevebaker, cool, thanks for the thoughts :-) | 23:00 |
*** sdake has joined #heat | 23:06 | |
*** mragupat has quit IRC | 23:08 | |
*** spotz is now known as spotz_zzz | 23:24 | |
*** bana_k has quit IRC | 23:25 | |
*** r05c03 has quit IRC | 23:25 | |
*** Drago has quit IRC | 23:28 | |
*** alex_xu has quit IRC | 23:30 | |
*** alex_xu has joined #heat | 23:31 | |
*** Drago has joined #heat | 23:33 | |
*** kse has joined #heat | 23:33 | |
*** vijendar has quit IRC | 23:37 | |
*** tochi has joined #heat | 23:38 | |
*** neelashah has quit IRC | 23:40 | |
*** Drago has quit IRC | 23:48 | |
*** pratikmallya has joined #heat | 23:48 | |
*** Drago has joined #heat | 23:51 | |
*** Drago has quit IRC | 23:51 | |
*** Qiming has joined #heat | 23:51 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!