*** ducttape_ has joined #puppet-openstack | 00:01 | |
openstackgerrit | Ivan Chavero proposed openstack/puppet-nova: Support allow_start and allow_end parameters https://review.openstack.org/135123 | 00:06 |
---|---|---|
imcsk8 | crinkle: are you around? can you take a look to: https://review.openstack.org/#/c/135123/ | 00:07 |
*** ducttape_ has quit IRC | 00:10 | |
*** saneax has quit IRC | 00:13 | |
gildub | richm, hi - re keystone_provider, openstackclient suports names AND IDs, so I don't really understand your comment | 00:17 |
richm | gildub: ok | 00:22 |
richm | was just wondering because the spec file uses ids | 00:22 |
gildub | richm, ah yeah, fair enough, I'll replace them with name then. | 00:22 |
gildub | names | 00:23 |
gildub | richm, Also I'm happy to add a proper manifest use example but I'm not sure were that should go | 00:26 |
richm | gildub: See my latest comment | 00:30 |
richm | in the review | 00:30 |
gildub | richm, ok | 00:32 |
gildub | richm, the id is the name | 00:35 |
gildub | richm, The name gets replaced with the id, so once created the id is the name to use for manipulating existing resource. | 00:35 |
gildub | richm, I initially tried using combos such as trustor_user/trustee_user/project but that's really bad, the thing here there is no legacy burden, so better just use the id, which guarantee uniqueness of the resource | 00:37 |
*** topshare has joined #puppet-openstack | 00:37 | |
*** rcallawa has joined #puppet-openstack | 00:41 | |
richm | gildub: ok - so I use keystone_trust { 'some random name': ...} for the first manifest run - it creates the trust with some ID | 00:42 |
*** linkedinyou has quit IRC | 00:42 | |
gildub | richm, correct | 00:42 |
richm | gildub: Then I run the manifest again, exactly the same as before with keystone_trust { 'some random name': ... } | 00:42 |
richm | gildub: and it should find the existing trust and not do anything | 00:43 |
*** rcallawa has quit IRC | 00:43 | |
richm | gildub: because one of the most important features of puppet is that it is idempotent | 00:43 |
*** rcallawa has joined #puppet-openstack | 00:43 | |
richm | gildub: how does the code in self.instances and self.prefetch know that keystone_trust { 'some random name': ... } refers to the existing trust? | 00:43 |
gildub | richm, yeah, I know about idempotency | 00:43 |
richm | Are you saying that I have to look up the IDs and change my manifests to use the ID instead of the names? | 00:44 |
openstackgerrit | Ivan Chavero proposed openstack/puppet-nova: Support allow_start and allow_end parameters https://review.openstack.org/135123 | 00:44 |
gildub | richm, the second time one runs the resource, one will have to use the id | 00:45 |
gildub | richm, because trusts are not limited to one per project/trustor/trustee tuples | 00:45 |
richm | I think that's a non-starter, but I'm willing to be proven wrong by some of our operators/manifest writers | 00:45 |
gildub | richm, I know what you're talking :) | 00:46 |
gildub | richm, trusts cannot be changed anyway | 00:46 |
gildub | richm, by design | 00:46 |
richm | I'm not talking about changing them | 00:47 |
richm | I'm talking about finding one and knowing that it is the one specified in the manifest | 00:47 |
richm | and not trying to create another one | 00:47 |
richm | maybe the name doesn't matter, and self.prefetch should instead match on _all_ of the fields? | 00:48 |
gildub | richm, openstack trust create --role admin --project openstackv3 --impersonate --expiration 2016-01-01T0:0:0 adminv3 foo --format shell | 00:49 |
richm | that is, self.prefetch will determine that the trust specified in the manifest matches the trust returned by the trust list because the trustor matches, the trustee matches, the project matches, etc. | 00:49 |
gildub | richm, everytime you run ^ it will create a new trust, now we can associate a name, whatever the user provides and associate to it | 00:49 |
richm | yes, I get that 1) trusts have no name parameter 2) it will keep creating the trust over and over again | 00:51 |
gildub | richm, ok, so the user provide some name and we associate it with the trust | 00:52 |
richm | gildub: how? There's no field in the db for the name? | 00:52 |
gildub | richm, and no description either | 00:52 |
richm | so no place to store a name | 00:52 |
richm | so we can't rely on name | 00:52 |
richm | so we need to rely on what we have | 00:53 |
richm | which is the project, trustor, trustee, etc. other fields | 00:53 |
gildub | richm, and the date and the impersonate flag | 00:53 |
*** morazi has joined #puppet-openstack | 00:53 | |
gildub | richm, and we take the first one in the short list | 00:53 |
richm | whatever other fields we can use to uniquely identify and match the trust returned from the trust list command, with what the user specified in the manifest | 00:54 |
gildub | richm, there is no way to uniquely identify a trust besides its ID | 00:54 |
gildub | richm, now that said it doesn't really matter as long as there is at least one trust to use | 00:55 |
gildub | richm, so the first valid trust that shows up will win the resource slot | 00:56 |
richm | how do you determine if a trust is valid? | 00:57 |
gildub | richm, same project/trustor_user/trustee_user triple and date | 00:57 |
richm | ok | 00:58 |
gildub | richm, viva Puppet! | 00:58 |
richm | I think that should work | 00:58 |
gildub | richm, we don't much choice | 00:59 |
gildub | richm, we don't have much choice | 00:59 |
richm | right | 01:01 |
gildub | richm, so basically that means even though in keystone there could be many trusts (for same triple project/trustor/trustee and a given date and flag) there could be only one in puppet | 01:01 |
richm | right - and then either 1) users will have to manage more complex scenarios outside of puppet or 2) there will be a need to add some sort of name field to the keystone db for trusts | 01:02 |
gildub | richm, ack | 01:03 |
gildub | richm, shall we push for 2) right away? | 01:03 |
richm | gildub: sure | 01:05 |
gildub | richm, ok | 01:06 |
*** rcallawa_ has joined #puppet-openstack | 01:09 | |
*** _ody has quit IRC | 01:12 | |
*** rcallawa has quit IRC | 01:13 | |
*** openstack has joined #puppet-openstack | 01:25 | |
*** xingchao has quit IRC | 01:34 | |
*** ilbot3 has quit IRC | 01:44 | |
*** ilbot3 has joined #puppet-openstack | 01:47 | |
*** markvoelker has quit IRC | 02:22 | |
*** ducttape_ has joined #puppet-openstack | 02:28 | |
*** ducttape_ has quit IRC | 02:44 | |
*** richm has quit IRC | 03:06 | |
*** saneax has joined #puppet-openstack | 03:33 | |
*** markvoelker has joined #puppet-openstack | 03:33 | |
*** markvoelker has quit IRC | 03:34 | |
*** markvoelker has joined #puppet-openstack | 03:34 | |
*** markvoelker_ has joined #puppet-openstack | 03:37 | |
*** markvoelker has quit IRC | 03:39 | |
*** tchaypo has quit IRC | 03:45 | |
*** rhefner has quit IRC | 03:45 | |
*** dalgaaf has quit IRC | 03:46 | |
*** rhefner has joined #puppet-openstack | 04:01 | |
openstackgerrit | Matthew Treinish proposed openstack/puppet-keystone: acceptance: validate Keystone with Tempest https://review.openstack.org/198561 | 04:09 |
*** dalgaaf has joined #puppet-openstack | 04:10 | |
openstackgerrit | Sergii Golovatiuk proposed openstack/puppet-horizon: Add cache_backend and cache_options params https://review.openstack.org/190548 | 04:28 |
*** nibalizer has quit IRC | 04:44 | |
*** tchaypo_ has joined #puppet-openstack | 04:45 | |
*** markvoelker has joined #puppet-openstack | 04:49 | |
*** stamak has joined #puppet-openstack | 04:52 | |
*** markvoelker_ has quit IRC | 04:53 | |
*** saneax has quit IRC | 04:56 | |
*** saneax has joined #puppet-openstack | 04:59 | |
*** morazi has quit IRC | 05:06 | |
*** _ody has joined #puppet-openstack | 05:06 | |
*** _ody has quit IRC | 05:11 | |
*** rcallawa_ has quit IRC | 05:13 | |
*** rcallawa has joined #puppet-openstack | 05:14 | |
*** xarses_ has joined #puppet-openstack | 05:16 | |
*** xarses has quit IRC | 05:19 | |
*** andreww has joined #puppet-openstack | 05:27 | |
*** xarses_ has quit IRC | 05:30 | |
*** stamak has quit IRC | 05:36 | |
*** xarses_ has joined #puppet-openstack | 05:42 | |
*** andreww has quit IRC | 05:46 | |
*** dboik has joined #puppet-openstack | 05:57 | |
*** dboik has quit IRC | 06:02 | |
*** degorenko has quit IRC | 06:10 | |
*** LimorStotland has joined #puppet-openstack | 06:14 | |
*** sergmelikyan has joined #puppet-openstack | 06:42 | |
*** tchaypo_ is now known as tchaypo | 06:52 | |
*** sergmelikyan has quit IRC | 06:53 | |
openstackgerrit | Gilles Dubreuil proposed openstack/puppet-keystone: Resource keystone_group for Keystone V3 API https://review.openstack.org/202409 | 07:02 |
*** tdb has quit IRC | 07:06 | |
*** _ody has joined #puppet-openstack | 07:07 | |
openstackgerrit | Gilles Dubreuil proposed openstack/puppet-keystone: Resource keystone_group for Keystone V3 API https://review.openstack.org/202409 | 07:10 |
*** tdb has joined #puppet-openstack | 07:10 | |
*** _ody has quit IRC | 07:11 | |
*** gildub has quit IRC | 07:12 | |
*** ashestakov has joined #puppet-openstack | 07:17 | |
ashestakov | review pls https://review.openstack.org/#/c/202215 | 07:17 |
*** rhefner has quit IRC | 07:41 | |
*** BrianShang has joined #puppet-openstack | 07:45 | |
*** linkedinyou has joined #puppet-openstack | 07:51 | |
*** paramite has joined #puppet-openstack | 07:53 | |
*** markvoelker has quit IRC | 08:04 | |
*** markvoelker has joined #puppet-openstack | 08:11 | |
*** markvoelker has quit IRC | 08:16 | |
*** jistr has joined #puppet-openstack | 08:16 | |
*** gildub has joined #puppet-openstack | 08:16 | |
*** markvoelker has joined #puppet-openstack | 08:17 | |
*** topshare has quit IRC | 08:17 | |
*** topshare has joined #puppet-openstack | 08:19 | |
*** topshare has quit IRC | 08:23 | |
*** markvoelker has quit IRC | 08:25 | |
*** derekh has joined #puppet-openstack | 08:27 | |
*** topshare has joined #puppet-openstack | 08:27 | |
*** markvoelker has joined #puppet-openstack | 08:29 | |
*** markvoelker has quit IRC | 08:33 | |
*** gildub is now known as gildub_bbl | 08:35 | |
*** aarefiev has joined #puppet-openstack | 08:35 | |
*** markvoelker has joined #puppet-openstack | 08:44 | |
*** markvoelker has quit IRC | 08:48 | |
*** rcallawa has quit IRC | 08:52 | |
*** rcallawa has joined #puppet-openstack | 08:52 | |
*** markvoelker has joined #puppet-openstack | 08:58 | |
*** stamak has joined #puppet-openstack | 09:01 | |
*** markvoelker has quit IRC | 09:03 | |
*** _ody has joined #puppet-openstack | 09:08 | |
*** paramite is now known as paramite|afk | 09:11 | |
*** _ody has quit IRC | 09:12 | |
*** stamak has quit IRC | 09:18 | |
*** paramite|afk is now known as paramite | 09:22 | |
*** rcallawa_ has joined #puppet-openstack | 09:28 | |
*** LimorStotland has quit IRC | 09:29 | |
*** rcallawa has quit IRC | 09:31 | |
*** dgurtner has joined #puppet-openstack | 09:31 | |
*** dgurtner has quit IRC | 09:31 | |
*** dgurtner has joined #puppet-openstack | 09:31 | |
*** rcallawa_ has quit IRC | 09:37 | |
*** rcallawa has joined #puppet-openstack | 09:38 | |
*** stamak has joined #puppet-openstack | 09:41 | |
*** degorenko has joined #puppet-openstack | 09:46 | |
*** ashestakov has quit IRC | 09:49 | |
*** xingchao has joined #puppet-openstack | 09:53 | |
*** paramite is now known as paramite|afk | 09:54 | |
*** sergmelikyan has joined #puppet-openstack | 10:01 | |
openstackgerrit | Yanis Guenane proposed openstack/puppet-openstacklib: Add a proxy inifile provider https://review.openstack.org/202488 | 10:30 |
*** linkedinyou has quit IRC | 10:31 | |
*** xingchao has quit IRC | 10:31 | |
*** linkedinyou has joined #puppet-openstack | 10:33 | |
*** xingchao has joined #puppet-openstack | 10:33 | |
*** sergmelikyan has quit IRC | 10:36 | |
*** nibalizer has joined #puppet-openstack | 10:40 | |
*** sergmelikyan has joined #puppet-openstack | 10:40 | |
*** BrianShang has quit IRC | 10:45 | |
*** sergmelikyan has quit IRC | 10:45 | |
openstackgerrit | Yanis Guenane proposed openstack/puppet-openstacklib: Add a proxy inifile provider https://review.openstack.org/202488 | 10:53 |
*** xingchao has quit IRC | 10:57 | |
rcarrillocruz | nm | 10:58 |
rcarrillocruz | spotted the problem | 10:59 |
*** paramite|afk is now known as paramite | 11:01 | |
*** topshare has quit IRC | 11:03 | |
*** _ody has joined #puppet-openstack | 11:08 | |
openstackgerrit | Ricardo Carrillo Cruz proposed openstack/puppet-ironic: Add bifrost manifest https://review.openstack.org/202025 | 11:10 |
*** dgurtner has quit IRC | 11:11 | |
*** _ody has quit IRC | 11:13 | |
*** LimorStotland has joined #puppet-openstack | 11:18 | |
*** gfidente has joined #puppet-openstack | 11:19 | |
*** LimorStotland_ has joined #puppet-openstack | 11:20 | |
*** LimorStotland_ has quit IRC | 11:21 | |
*** gildub_bbl is now known as gildub | 11:22 | |
*** LimorStotland has quit IRC | 11:24 | |
openstackgerrit | Yanis Guenane proposed openstack/puppet-openstacklib: Add a proxy inifile provider https://review.openstack.org/202488 | 11:31 |
*** saneax has quit IRC | 11:33 | |
*** sergmelikyan has joined #puppet-openstack | 11:33 | |
*** dgurtner has joined #puppet-openstack | 11:34 | |
*** rcallawa has quit IRC | 11:36 | |
openstackgerrit | Yanis Guenane proposed openstack/puppet-openstacklib: Add a proxy inifile provider https://review.openstack.org/202488 | 11:37 |
openstackgerrit | Ricardo Carrillo Cruz proposed openstack/puppet-ironic: Add bifrost manifest https://review.openstack.org/202025 | 11:43 |
openstackgerrit | Yanis Guenane proposed openstack/puppet-keystone: Reflect provider change in openstacklib https://review.openstack.org/202513 | 11:46 |
*** skolekonov has joined #puppet-openstack | 11:47 | |
openstackgerrit | Ricardo Carrillo Cruz proposed openstack/puppet-ironic: Add bifrost manifest https://review.openstack.org/202025 | 11:47 |
*** ducttape_ has joined #puppet-openstack | 11:48 | |
*** topshare has joined #puppet-openstack | 11:52 | |
*** topshare has quit IRC | 11:52 | |
*** ducttape_ has quit IRC | 11:57 | |
*** sergmelikyan has quit IRC | 11:57 | |
*** vinsh has quit IRC | 11:58 | |
*** ducttape_ has joined #puppet-openstack | 11:59 | |
*** ducttape_ has quit IRC | 12:02 | |
*** topshare has joined #puppet-openstack | 12:02 | |
*** dprince has joined #puppet-openstack | 12:02 | |
*** dgurtner has quit IRC | 12:06 | |
*** prad has joined #puppet-openstack | 12:06 | |
*** ddmitriev has joined #puppet-openstack | 12:07 | |
*** jayg|g0n3 is now known as jayg | 12:13 | |
openstackgerrit | Giulio Fidente proposed openstack/puppet-tripleo: Add param to configure HAProxy default maxconn (per frontend) https://review.openstack.org/202525 | 12:14 |
*** dgurtner has joined #puppet-openstack | 12:14 | |
*** rcallawa has joined #puppet-openstack | 12:17 | |
*** morazi has joined #puppet-openstack | 12:18 | |
*** LimorStotland has joined #puppet-openstack | 12:22 | |
*** saneax has joined #puppet-openstack | 12:23 | |
*** markvoelker has joined #puppet-openstack | 12:29 | |
*** rcallawa has quit IRC | 12:32 | |
*** dgurtner has quit IRC | 12:33 | |
*** markvoelker has quit IRC | 12:34 | |
*** topshare has quit IRC | 12:38 | |
*** rcallawa has joined #puppet-openstack | 12:38 | |
*** dgurtner has joined #puppet-openstack | 12:41 | |
*** sergmelikyan has joined #puppet-openstack | 12:43 | |
*** sergmelikyan has quit IRC | 12:43 | |
*** sergmelikyan has joined #puppet-openstack | 12:43 | |
*** markvoelker has joined #puppet-openstack | 12:43 | |
*** topshare has joined #puppet-openstack | 12:44 | |
*** topshare has quit IRC | 12:45 | |
*** saneax has quit IRC | 12:45 | |
*** topshare has joined #puppet-openstack | 12:45 | |
*** topshare has quit IRC | 12:45 | |
*** topshare has joined #puppet-openstack | 12:46 | |
*** topshare has quit IRC | 12:46 | |
*** topshare has joined #puppet-openstack | 12:47 | |
*** markvoelker has quit IRC | 12:48 | |
*** chem has quit IRC | 12:48 | |
*** chem has joined #puppet-openstack | 12:49 | |
*** saneax has joined #puppet-openstack | 12:53 | |
*** ducttape_ has joined #puppet-openstack | 12:55 | |
*** morazi has quit IRC | 12:55 | |
*** LimorStotland has quit IRC | 12:55 | |
*** ducttape_ has quit IRC | 12:57 | |
openstackgerrit | Sergey Kolekonov proposed openstack/puppet-neutron: Allow deployment when DVR is enabled and L2 pop and tunneling are disabled https://review.openstack.org/202542 | 12:57 |
*** markvoelker has joined #puppet-openstack | 12:57 | |
*** markvoelker has quit IRC | 13:02 | |
*** gildub has quit IRC | 13:04 | |
*** markvoelker has joined #puppet-openstack | 13:05 | |
*** vsaienko has joined #puppet-openstack | 13:05 | |
*** markvoelker_ has joined #puppet-openstack | 13:06 | |
*** _ody has joined #puppet-openstack | 13:09 | |
*** markvoelker has quit IRC | 13:10 | |
*** _ody has quit IRC | 13:14 | |
*** sergmelikyan has quit IRC | 13:16 | |
*** ducttape_ has joined #puppet-openstack | 13:25 | |
openstackgerrit | Yanis Guenane proposed openstack/puppet-heat: Add heat::config class https://review.openstack.org/202556 | 13:27 |
*** topshare has quit IRC | 13:27 | |
*** richm has joined #puppet-openstack | 13:28 | |
*** sergmelikyan has joined #puppet-openstack | 13:28 | |
openstackgerrit | Yanis Guenane proposed openstack/puppet-heat: Add heat::config class https://review.openstack.org/202556 | 13:28 |
*** ducttape_ has quit IRC | 13:30 | |
*** ducttape_ has joined #puppet-openstack | 13:30 | |
*** xingchao has joined #puppet-openstack | 13:32 | |
*** morazi has joined #puppet-openstack | 13:32 | |
*** rhefner has joined #puppet-openstack | 13:32 | |
*** topshare has joined #puppet-openstack | 13:33 | |
*** sergmelikyan has quit IRC | 13:33 | |
*** rcallawa has quit IRC | 13:34 | |
*** rcallawa has joined #puppet-openstack | 13:36 | |
*** prad has quit IRC | 13:41 | |
*** prad has joined #puppet-openstack | 13:42 | |
*** ferest has joined #puppet-openstack | 13:44 | |
*** ferest has quit IRC | 13:47 | |
*** dboik has joined #puppet-openstack | 13:55 | |
*** dboik has quit IRC | 13:55 | |
*** dboik has joined #puppet-openstack | 13:55 | |
openstackgerrit | Yanis Guenane proposed openstack/puppet-openstacklib: Add a proxy inifile provider https://review.openstack.org/202488 | 13:57 |
openstackgerrit | Yanis Guenane proposed openstack/puppet-openstacklib: Allow the use of an ensure_absent_val param https://review.openstack.org/202574 | 13:57 |
*** dfisher has joined #puppet-openstack | 13:57 | |
openstackgerrit | Yanis Guenane proposed openstack/puppet-openstacklib: Add a proxy inifile provider https://review.openstack.org/202488 | 13:59 |
*** topshare has quit IRC | 13:59 | |
*** topshare has joined #puppet-openstack | 14:00 | |
*** dboik_ has joined #puppet-openstack | 14:00 | |
openstackgerrit | Yanis Guenane proposed openstack/puppet-keystone: Reflect provider change in openstacklib https://review.openstack.org/202513 | 14:00 |
*** dboik has quit IRC | 14:04 | |
*** topshare has quit IRC | 14:04 | |
clayton | spredzy: nice | 14:11 |
spredzy | clayton, :) | 14:11 |
clayton | having a base provider in openstacklib will also allow moving some of the boilerplate like the section parsing into the shared code, I like that | 14:11 |
spredzy | yup, only the hardcoded file path remains in the various base provider | 14:12 |
clayton | spredzy: is value a required parameter in the upstream inifile type? | 14:13 |
clayton | I was wondering the other day (and this is probably me missing something), but if we pass undef in as value, it looks like value isn't set right? | 14:14 |
spredzy | if we pass undef as a vlue basically nothing happens | 14:14 |
spredzy | neither it writes or unset the value | 14:14 |
spredzy | it mainly does nothing based on my test and understanding | 14:14 |
clayton | couldn't we change the behavior so that if value is not set it acts as if ensure => absent? | 14:15 |
clayton | preventing the need to have a magic value? | 14:15 |
*** mdorman has joined #puppet-openstack | 14:15 | |
spredzy | I think that undef is treated a a different citizen | 14:17 |
spredzy | thus we wouldn't be able to manipulate the param value if it is undef | 14:17 |
spredzy | not even to to a test if undef then | 14:17 |
spredzy | we'll need to confirm with PL guys Hunner _ody | 14:18 |
clayton | my recollection is that it just shows up as if the paramter is not set at all | 14:18 |
clayton | ie, I think in the ruby code you get nil when you refer to an unset param or if it's set to undef | 14:18 |
* spredzy tries | 14:21 | |
*** skolekonov has quit IRC | 14:21 | |
*** sergmelikyan has joined #puppet-openstack | 14:23 | |
*** markvoelker_ has quit IRC | 14:24 | |
*** dgurtner has quit IRC | 14:25 | |
*** sergmelikyan has quit IRC | 14:27 | |
richm | clayton: or the empty string '' | 14:30 |
richm | iirc a value in puppet of undef is passed into a ruby function as '' | 14:30 |
clayton | it seems reasonable to me that not setting value, setting it to undef or '' is the same as setting the config item to absent | 14:31 |
clayton | or at least it's a convention we could live with | 14:31 |
clayton | and less gross than a magic string | 14:31 |
richm | I can't think of anything in keystone which has a valid value of '' | 14:31 |
clayton | richm: probably not, since the existing provider cant' set it anyway | 14:32 |
richm | right | 14:32 |
richm | just to be safe, I had code like this: | 14:33 |
richm | val = nil if [nil, :undef, :undefined, ''].include?(val) | 14:33 |
richm | where val is the value passed in from puppet to ruby | 14:33 |
clayton | that's pretty horrible but I understand why you did that :) | 14:33 |
richm | I figured that should catch all possible "undef" style values | 14:33 |
richm | yeah, ugly for sure | 14:34 |
*** skolekonov has joined #puppet-openstack | 14:39 | |
spredzy | clayton, so I can deal with '' but set to undef I am not sure through which call it goes | 14:44 |
spredzy | can't see to capture it | 14:44 |
clayton | doesn't it just look like the param isn't set at all? | 14:45 |
*** markvoelker has joined #puppet-openstack | 14:53 | |
spredzy | clayton, so when puting puts in all function of the main provider (exists?, create,value,value=) when set to undef it doesn't show in any but exists? | 14:54 |
spredzy | so what I am trying to say is thaat I cant't seem to find where I could actually make the tests, see what I mean ? | 14:54 |
*** _ody has joined #puppet-openstack | 15:10 | |
*** _ody has quit IRC | 15:15 | |
*** paramite has quit IRC | 15:15 | |
*** sergmelikyan has joined #puppet-openstack | 15:17 | |
*** sergmelikyan has quit IRC | 15:21 | |
*** dgurtner has joined #puppet-openstack | 15:26 | |
openstackgerrit | Benedikt von St. Vieth proposed openstack/puppet-nova: Allow to disable openstackocci installation via pip https://review.openstack.org/194977 | 15:38 |
*** dgurtner has quit IRC | 15:40 | |
*** dprince has quit IRC | 15:42 | |
*** ashestakov has joined #puppet-openstack | 15:43 | |
*** xarses_ has quit IRC | 15:43 | |
*** bklei has joined #puppet-openstack | 15:44 | |
*** ducttape_ has quit IRC | 15:44 | |
*** chem has quit IRC | 15:50 | |
spredzy | Hunner, if I pass a value of undef to an ini_setting provider would you know where in the provider I can 'check' the value of the 'value' parameter and take action based on its value ? | 15:52 |
*** ashestakov has quit IRC | 15:52 | |
Hunner | spredzy: I think passing undef is the same as not passing a value | 15:53 |
Hunner | At least on puppet 4 | 15:53 |
spredzy | Hunner, ack. Can it be checked somewhere and act upon ? I did put 'puts' to see where it was going through in https://github.com/puppetlabs/puppetlabs-inifile/blob/master/lib/puppet/provider/ini_setting/ruby.rb but except the exists? method it didn't get into any | 15:54 |
Hunner | Also on puppet 4: `puppet apply -e 'class foo($bar="hi"){notify{$bar:}}class{"foo":bar=>undef,}'` | 15:55 |
Hunner | prints hi | 15:56 |
Hunner | err, "at least on puppet 3" | 15:56 |
Hunner | You might be able to search the catalog for the resource and ask for .original_parameters, but I think even that will only show the defaults | 15:56 |
spredzy | Ok... well it seems then hard to determine if the parameter was set to undef within the provider :/ | 15:58 |
*** xarses_ has joined #puppet-openstack | 15:59 | |
*** xarses_ is now known as xarses | 15:59 | |
crinkle | it looks to me like it just gives nil if there was no parameter passed, or the default value if the type property had a default | 16:01 |
*** dboik_ has quit IRC | 16:03 | |
spredzy | crinkle, what I have a hard time finding out is how I can detect this nil from the provider side ? in which method call ? | 16:03 |
Hunner | spredzy: I usually have `false` | 16:08 |
Hunner | be the undef value | 16:08 |
Hunner | for users | 16:08 |
spredzy | Hunner, issue here for the ini_file provider is that false can be a valid value | 16:09 |
spredzy | I guess I can go with '' (empty string) instead of 'nil' as the undef value /cc clayton | 16:09 |
*** sergmelikyan has joined #puppet-openstack | 16:11 | |
openstackgerrit | Lukas Bezdicka proposed openstack/puppet-neutron: Run neutron db sync also for each neutron module https://review.openstack.org/200877 | 16:12 |
Hunner | '' should work | 16:15 |
*** sergmelikyan has quit IRC | 16:15 | |
*** stamak has quit IRC | 16:16 | |
*** dboik has joined #puppet-openstack | 16:20 | |
*** samuelBartel has quit IRC | 16:25 | |
*** samuelBartel has joined #puppet-openstack | 16:26 | |
openstackgerrit | Yanis Guenane proposed openstack/puppet-openstacklib: Allow to ensure absent a config when value set to empty string https://review.openstack.org/202574 | 16:26 |
openstackgerrit | Yanis Guenane proposed openstack/puppet-keystone: Reflect provider change in openstacklib https://review.openstack.org/202513 | 16:28 |
spredzy | Hunner, thx | 16:29 |
*** aimon has quit IRC | 16:29 | |
openstackgerrit | Athlan-Guyot sofer proposed openstack/puppet-keystone: Resource keystone_identity_provider for Keystone. https://review.openstack.org/202689 | 16:37 |
*** rwsu has quit IRC | 16:44 | |
*** skolekonov has quit IRC | 16:49 | |
*** rcallawa_ has joined #puppet-openstack | 16:55 | |
*** mdorman has quit IRC | 16:56 | |
*** xingchao has quit IRC | 16:56 | |
*** rcallawa has quit IRC | 16:58 | |
*** derekh has quit IRC | 17:00 | |
*** jistr has quit IRC | 17:00 | |
*** mwhahaha has quit IRC | 17:01 | |
*** pasquier-s has quit IRC | 17:01 | |
*** mattymo has quit IRC | 17:02 | |
*** maximov has quit IRC | 17:03 | |
*** mattymo has joined #puppet-openstack | 17:04 | |
*** xingchao has joined #puppet-openstack | 17:04 | |
*** mattymo has quit IRC | 17:05 | |
*** mattymo_ has joined #puppet-openstack | 17:05 | |
*** sergmelikyan has joined #puppet-openstack | 17:05 | |
*** mattymo has joined #puppet-openstack | 17:05 | |
*** mattymo has quit IRC | 17:06 | |
*** mattymo has joined #puppet-openstack | 17:07 | |
*** maximov has joined #puppet-openstack | 17:07 | |
*** pasquier-s has joined #puppet-openstack | 17:08 | |
*** mattymo has joined #puppet-openstack | 17:09 | |
*** aimon has joined #puppet-openstack | 17:10 | |
*** sergmelikyan has quit IRC | 17:10 | |
*** mattymo_ has joined #puppet-openstack | 17:11 | |
*** mattymo has joined #puppet-openstack | 17:13 | |
*** pasquier-s has quit IRC | 17:15 | |
*** mattymo has joined #puppet-openstack | 17:16 | |
*** maximov has quit IRC | 17:16 | |
*** mattymo has joined #puppet-openstack | 17:17 | |
*** mattymo has quit IRC | 17:17 | |
*** mattymo has joined #puppet-openstack | 17:19 | |
*** mwhahaha_ has joined #puppet-openstack | 17:21 | |
*** mattymo has joined #puppet-openstack | 17:21 | |
*** pasquier-s_ has joined #puppet-openstack | 17:22 | |
*** mattymo has joined #puppet-openstack | 17:22 | |
*** mattymo_ has joined #puppet-openstack | 17:23 | |
*** mattymo has quit IRC | 17:23 | |
*** mattymo_ has quit IRC | 17:23 | |
*** maximov has joined #puppet-openstack | 17:24 | |
*** ducttape_ has joined #puppet-openstack | 17:25 | |
*** mattymo has joined #puppet-openstack | 17:25 | |
*** mattymo has quit IRC | 17:25 | |
*** mattymo has joined #puppet-openstack | 17:26 | |
*** mattymo has quit IRC | 17:27 | |
*** mattymo_ has joined #puppet-openstack | 17:27 | |
*** mattymo has joined #puppet-openstack | 17:27 | |
*** mattymo has quit IRC | 17:29 | |
*** mattymo_ has joined #puppet-openstack | 17:29 | |
*** mattymo has joined #puppet-openstack | 17:30 | |
*** mattymo has quit IRC | 17:31 | |
*** mattymo_ has joined #puppet-openstack | 17:31 | |
*** mattymo has joined #puppet-openstack | 17:31 | |
*** mattymo_ has joined #puppet-openstack | 17:33 | |
*** mattymo has quit IRC | 17:33 | |
*** mattymo has joined #puppet-openstack | 17:34 | |
*** xingchao has quit IRC | 17:35 | |
*** mattymo has quit IRC | 17:35 | |
*** mattymo_ has joined #puppet-openstack | 17:35 | |
*** mattymo has joined #puppet-openstack | 17:36 | |
*** mattymo_ has joined #puppet-openstack | 17:37 | |
*** mattymo has quit IRC | 17:37 | |
*** mattymo_ has quit IRC | 17:37 | |
*** mattymo has joined #puppet-openstack | 17:38 | |
*** mattymo has quit IRC | 17:39 | |
*** mattymo_ has joined #puppet-openstack | 17:39 | |
*** mattymo_ has quit IRC | 17:39 | |
*** mattymo has joined #puppet-openstack | 17:40 | |
*** mattymo has quit IRC | 17:41 | |
*** mattymo_ has joined #puppet-openstack | 17:41 | |
*** mattymo has joined #puppet-openstack | 17:42 | |
*** mattymo_ has joined #puppet-openstack | 17:43 | |
*** mattymo has quit IRC | 17:43 | |
*** mattymo_ has quit IRC | 17:43 | |
*** mattymo has joined #puppet-openstack | 17:44 | |
*** linkedinyou has quit IRC | 17:44 | |
*** mattymo has quit IRC | 17:45 | |
*** mattymo_ has joined #puppet-openstack | 17:45 | |
*** mwhahaha_ is now known as mwhahaha | 17:46 | |
*** mattymo has joined #puppet-openstack | 17:46 | |
*** mattymo_ has joined #puppet-openstack | 17:47 | |
*** mattymo has quit IRC | 17:47 | |
*** mattymo_ has quit IRC | 17:47 | |
*** mattymo has joined #puppet-openstack | 17:48 | |
*** mattymo_ has joined #puppet-openstack | 17:49 | |
*** mattymo has quit IRC | 17:49 | |
*** mattymo_ has quit IRC | 17:49 | |
*** mattymo has joined #puppet-openstack | 17:50 | |
*** mattymo_ has joined #puppet-openstack | 17:51 | |
*** mattymo has quit IRC | 17:51 | |
*** mattymo_ has quit IRC | 17:51 | |
*** mattymo has joined #puppet-openstack | 17:52 | |
*** mattymo has quit IRC | 17:53 | |
*** mattymo_ has joined #puppet-openstack | 17:53 | |
*** mattymo has joined #puppet-openstack | 17:54 | |
*** mattymo has quit IRC | 17:55 | |
*** mattymo_ has joined #puppet-openstack | 17:55 | |
*** mattymo has joined #puppet-openstack | 17:56 | |
*** mattymo has quit IRC | 17:57 | |
*** mattymo_ has joined #puppet-openstack | 17:57 | |
*** mattymo has joined #puppet-openstack | 17:58 | |
*** mattymo has quit IRC | 17:59 | |
*** mattymo_ has joined #puppet-openstack | 17:59 | |
*** mattymo has joined #puppet-openstack | 18:00 | |
*** mattymo_ has joined #puppet-openstack | 18:01 | |
*** mattymo has quit IRC | 18:01 | |
*** mattymo_ has quit IRC | 18:01 | |
*** rcallawa_ has quit IRC | 18:02 | |
*** mattymo has joined #puppet-openstack | 18:02 | |
*** rcallawa has joined #puppet-openstack | 18:02 | |
*** dboik has quit IRC | 18:02 | |
*** mattymo_ has joined #puppet-openstack | 18:04 | |
*** mattymo has quit IRC | 18:04 | |
*** mattymo_ has quit IRC | 18:04 | |
*** mattymo has joined #puppet-openstack | 18:04 | |
*** mattymo_ has joined #puppet-openstack | 18:06 | |
*** mattymo has quit IRC | 18:06 | |
*** mattymo_ has quit IRC | 18:06 | |
*** mattymo has joined #puppet-openstack | 18:06 | |
*** degorenko has quit IRC | 18:07 | |
*** mattymo_ has joined #puppet-openstack | 18:08 | |
*** mattymo has quit IRC | 18:08 | |
*** mattymo_ has quit IRC | 18:08 | |
*** mattymo has joined #puppet-openstack | 18:08 | |
*** mattymo has quit IRC | 18:10 | |
*** mattymo_ has joined #puppet-openstack | 18:10 | |
*** mattymo has joined #puppet-openstack | 18:10 | |
*** mattymo_ has joined #puppet-openstack | 18:12 | |
*** mattymo has quit IRC | 18:12 | |
*** mattymo_ has quit IRC | 18:12 | |
*** mattymo has joined #puppet-openstack | 18:12 | |
pabelanger | mattymo, you need a better IRC proxy :) | 18:13 |
*** mattymo has quit IRC | 18:14 | |
*** mattymo_ has joined #puppet-openstack | 18:14 | |
*** mattymo has joined #puppet-openstack | 18:14 | |
*** mattymo has quit IRC | 18:16 | |
*** mattymo_ has joined #puppet-openstack | 18:16 | |
*** mattymo has joined #puppet-openstack | 18:16 | |
*** mattymo has quit IRC | 18:18 | |
*** mattymo_ has joined #puppet-openstack | 18:18 | |
*** mattymo has joined #puppet-openstack | 18:18 | |
*** mattymo_ has joined #puppet-openstack | 18:20 | |
*** mattymo has quit IRC | 18:20 | |
*** mattymo has joined #puppet-openstack | 18:20 | |
*** mattymo has quit IRC | 18:22 | |
*** mattymo_ has joined #puppet-openstack | 18:22 | |
*** mattymo has joined #puppet-openstack | 18:22 | |
*** dboik has joined #puppet-openstack | 18:23 | |
*** mattymo_ has joined #puppet-openstack | 18:24 | |
*** mattymo has quit IRC | 18:24 | |
*** mattymo_ has quit IRC | 18:24 | |
*** mattymo has joined #puppet-openstack | 18:24 | |
*** mattymo has quit IRC | 18:26 | |
*** mattymo_ has joined #puppet-openstack | 18:26 | |
*** mattymo has joined #puppet-openstack | 18:26 | |
*** mattymo has quit IRC | 18:28 | |
*** mattymo_ has joined #puppet-openstack | 18:28 | |
*** mattymo has joined #puppet-openstack | 18:28 | |
*** _ody has joined #puppet-openstack | 18:29 | |
Hunner | lol | 18:30 |
*** mattymo has quit IRC | 18:30 | |
*** mattymo_ has joined #puppet-openstack | 18:30 | |
*** mattymo has joined #puppet-openstack | 18:30 | |
openstackgerrit | Ivan Chavero proposed openstack/puppet-nova: Support allow_start and allow_end parameters https://review.openstack.org/135123 | 18:31 |
imcsk8 | crinkle: i've modified the commit msg on this one: https://review.openstack.org/#/c/135123/7 can you take a look? | 18:31 |
*** mattymo has quit IRC | 18:32 | |
*** mattymo_ has joined #puppet-openstack | 18:32 | |
*** mattymo has joined #puppet-openstack | 18:32 | |
*** mattymo has quit IRC | 18:34 | |
*** mattymo_ has joined #puppet-openstack | 18:34 | |
*** _ody has quit IRC | 18:34 | |
*** mattymo has joined #puppet-openstack | 18:34 | |
*** mattymo has quit IRC | 18:36 | |
*** mattymo_ has joined #puppet-openstack | 18:36 | |
*** mattymo has joined #puppet-openstack | 18:36 | |
*** mattymo has quit IRC | 18:38 | |
*** mattymo_ has joined #puppet-openstack | 18:38 | |
*** mattymo has joined #puppet-openstack | 18:38 | |
*** mattymo has quit IRC | 18:40 | |
*** mattymo_ has joined #puppet-openstack | 18:40 | |
*** mattymo has joined #puppet-openstack | 18:40 | |
*** mattymo has quit IRC | 18:42 | |
*** mattymo_ has joined #puppet-openstack | 18:42 | |
*** mattymo has joined #puppet-openstack | 18:42 | |
*** mattymo has quit IRC | 18:44 | |
*** mattymo_ has joined #puppet-openstack | 18:44 | |
*** mattymo has joined #puppet-openstack | 18:44 | |
*** mattymo_ has joined #puppet-openstack | 18:46 | |
*** mattymo has quit IRC | 18:46 | |
*** mattymo_ has quit IRC | 18:46 | |
*** mattymo has joined #puppet-openstack | 18:46 | |
*** mattymo_ has joined #puppet-openstack | 18:48 | |
*** mattymo has quit IRC | 18:48 | |
*** mattymo has joined #puppet-openstack | 18:49 | |
*** mattymo has quit IRC | 18:50 | |
*** mattymo_ has joined #puppet-openstack | 18:50 | |
*** mattymo_ has quit IRC | 18:50 | |
*** mattymo has joined #puppet-openstack | 18:50 | |
*** mattymo has quit IRC | 18:52 | |
*** mattymo_ has joined #puppet-openstack | 18:52 | |
*** mattymo has joined #puppet-openstack | 18:52 | |
*** mattymo_ has joined #puppet-openstack | 18:54 | |
*** mattymo has quit IRC | 18:54 | |
*** mattymo_ has quit IRC | 18:54 | |
*** mattymo has joined #puppet-openstack | 18:55 | |
*** mattymo has quit IRC | 18:56 | |
*** mattymo_ has joined #puppet-openstack | 18:56 | |
*** mattymo has joined #puppet-openstack | 18:57 | |
*** mattymo_ has joined #puppet-openstack | 18:58 | |
*** mattymo has quit IRC | 18:58 | |
*** mattymo_ has quit IRC | 18:58 | |
*** mattymo has joined #puppet-openstack | 18:59 | |
*** mattymo_ has joined #puppet-openstack | 19:00 | |
*** mattymo has quit IRC | 19:00 | |
*** mattymo_ has quit IRC | 19:00 | |
*** mattymo has joined #puppet-openstack | 19:01 | |
*** rbrooker has joined #puppet-openstack | 19:01 | |
openstackgerrit | Ivan Berezovskiy proposed openstack/puppet-heat: Add retries for heat domain commands https://review.openstack.org/202749 | 19:02 |
*** mattymo_ has joined #puppet-openstack | 19:02 | |
*** mattymo has quit IRC | 19:02 | |
*** mattymo_ has quit IRC | 19:02 | |
*** mattymo has joined #puppet-openstack | 19:03 | |
*** mattymo_ has joined #puppet-openstack | 19:04 | |
*** mattymo has quit IRC | 19:04 | |
*** mattymo_ has quit IRC | 19:04 | |
*** mattymo has joined #puppet-openstack | 19:05 | |
*** ashestakov has joined #puppet-openstack | 19:05 | |
ashestakov | hello | 19:05 |
ashestakov | review pls https://review.openstack.org/#/c/202215/ | 19:05 |
*** mattymo has quit IRC | 19:06 | |
*** mattymo_ has joined #puppet-openstack | 19:06 | |
*** mattymo_ has quit IRC | 19:06 | |
*** mattymo has joined #puppet-openstack | 19:07 | |
*** mattymo_ has joined #puppet-openstack | 19:08 | |
*** mattymo has quit IRC | 19:08 | |
*** mattymo_ has quit IRC | 19:08 | |
*** mattymo has joined #puppet-openstack | 19:09 | |
*** rcallawa_ has joined #puppet-openstack | 19:10 | |
*** mattymo has quit IRC | 19:10 | |
*** mattymo_ has joined #puppet-openstack | 19:10 | |
*** mattymo has joined #puppet-openstack | 19:11 | |
*** mattymo has quit IRC | 19:12 | |
*** mattymo_ has joined #puppet-openstack | 19:13 | |
*** mattymo has joined #puppet-openstack | 19:13 | |
*** rcallawa has quit IRC | 19:13 | |
*** mattymo has quit IRC | 19:15 | |
*** mattymo_ has joined #puppet-openstack | 19:15 | |
*** mattymo has joined #puppet-openstack | 19:15 | |
*** mattymo_ has joined #puppet-openstack | 19:17 | |
*** mattymo has quit IRC | 19:17 | |
*** mattymo_ has quit IRC | 19:17 | |
*** mattymo has joined #puppet-openstack | 19:17 | |
*** mattymo_ has joined #puppet-openstack | 19:19 | |
*** mattymo has quit IRC | 19:19 | |
*** mattymo_ has quit IRC | 19:19 | |
*** mattymo has joined #puppet-openstack | 19:19 | |
*** mattymo has quit IRC | 19:21 | |
*** mattymo_ has joined #puppet-openstack | 19:21 | |
*** mattymo_ has quit IRC | 19:21 | |
*** mattymo has joined #puppet-openstack | 19:21 | |
*** mattymo has quit IRC | 19:23 | |
*** mattymo_ has joined #puppet-openstack | 19:23 | |
*** mattymo has joined #puppet-openstack | 19:23 | |
*** mattymo_ has joined #puppet-openstack | 19:25 | |
*** mattymo has quit IRC | 19:25 | |
*** mattymo_ has quit IRC | 19:25 | |
*** mattymo has joined #puppet-openstack | 19:25 | |
*** mattymo_ has joined #puppet-openstack | 19:27 | |
*** mattymo has quit IRC | 19:27 | |
*** mattymo_ has quit IRC | 19:27 | |
*** mattymo has joined #puppet-openstack | 19:27 | |
*** mdorman has joined #puppet-openstack | 19:28 | |
*** mattymo has quit IRC | 19:29 | |
*** mattymo_ has joined #puppet-openstack | 19:29 | |
*** mattymo_ has quit IRC | 19:29 | |
*** mattymo has joined #puppet-openstack | 19:29 | |
*** mattymo has quit IRC | 19:31 | |
*** mattymo_ has joined #puppet-openstack | 19:31 | |
*** mattymo has joined #puppet-openstack | 19:31 | |
*** mattymo has quit IRC | 19:33 | |
*** mattymo_ has joined #puppet-openstack | 19:33 | |
*** mattymo has joined #puppet-openstack | 19:33 | |
*** mattymo_ has joined #puppet-openstack | 19:35 | |
*** mattymo has quit IRC | 19:35 | |
*** mattymo_ has quit IRC | 19:35 | |
*** mattymo has joined #puppet-openstack | 19:35 | |
*** mattymo has quit IRC | 19:37 | |
*** mattymo_ has joined #puppet-openstack | 19:37 | |
*** mattymo has joined #puppet-openstack | 19:37 | |
*** mdorman_ has joined #puppet-openstack | 19:39 | |
*** mattymo has quit IRC | 19:39 | |
*** mattymo_ has joined #puppet-openstack | 19:39 | |
*** mattymo has joined #puppet-openstack | 19:39 | |
*** mdorman has quit IRC | 19:40 | |
*** mdorman_ is now known as mdorman | 19:40 | |
*** mattymo has quit IRC | 19:41 | |
*** mattymo_ has joined #puppet-openstack | 19:41 | |
*** mattymo has joined #puppet-openstack | 19:41 | |
*** mattymo_ has joined #puppet-openstack | 19:43 | |
*** mattymo has quit IRC | 19:43 | |
*** mattymo_ has quit IRC | 19:43 | |
*** mattymo has joined #puppet-openstack | 19:44 | |
*** mattymo has quit IRC | 19:45 | |
*** mattymo_ has joined #puppet-openstack | 19:45 | |
*** mattymo has joined #puppet-openstack | 19:46 | |
*** mattymo has quit IRC | 19:47 | |
*** mattymo_ has joined #puppet-openstack | 19:47 | |
*** mattymo has joined #puppet-openstack | 19:48 | |
*** mattymo has quit IRC | 19:49 | |
*** mattymo_ has joined #puppet-openstack | 19:49 | |
*** mattymo has joined #puppet-openstack | 19:50 | |
*** mattymo has quit IRC | 19:51 | |
*** mattymo_ has joined #puppet-openstack | 19:51 | |
*** mattymo has joined #puppet-openstack | 19:52 | |
*** mattymo has quit IRC | 19:53 | |
*** mattymo_ has joined #puppet-openstack | 19:53 | |
*** mattymo_ has quit IRC | 19:53 | |
*** mattymo has joined #puppet-openstack | 19:54 | |
*** mattymo has quit IRC | 19:55 | |
*** mattymo_ has joined #puppet-openstack | 19:55 | |
*** mattymo has joined #puppet-openstack | 19:56 | |
*** mattymo has quit IRC | 19:57 | |
*** mattymo_ has joined #puppet-openstack | 19:57 | |
*** mattymo has joined #puppet-openstack | 19:58 | |
*** mattymo has quit IRC | 19:59 | |
*** mattymo_ has joined #puppet-openstack | 19:59 | |
*** mattymo has joined #puppet-openstack | 20:00 | |
*** mattymo has quit IRC | 20:01 | |
*** mattymo_ has joined #puppet-openstack | 20:01 | |
*** mattymo has joined #puppet-openstack | 20:02 | |
*** mattymo_ has joined #puppet-openstack | 20:03 | |
*** rcallawa_ has quit IRC | 20:03 | |
*** mattymo has quit IRC | 20:03 | |
*** mattymo has joined #puppet-openstack | 20:04 | |
*** rcallawa has joined #puppet-openstack | 20:05 | |
*** mattymo has quit IRC | 20:05 | |
*** mattymo_ has joined #puppet-openstack | 20:05 | |
*** mattymo has joined #puppet-openstack | 20:06 | |
*** mattymo has quit IRC | 20:07 | |
*** mattymo_ has joined #puppet-openstack | 20:07 | |
*** mattymo has joined #puppet-openstack | 20:08 | |
*** mattymo has quit IRC | 20:09 | |
*** mattymo_ has joined #puppet-openstack | 20:09 | |
*** mattymo has joined #puppet-openstack | 20:10 | |
*** mattymo has quit IRC | 20:11 | |
*** mattymo_ has joined #puppet-openstack | 20:11 | |
*** mattymo_ has quit IRC | 20:11 | |
*** mattymo has joined #puppet-openstack | 20:12 | |
*** mattymo has quit IRC | 20:13 | |
*** mattymo_ has joined #puppet-openstack | 20:13 | |
*** mattymo has joined #puppet-openstack | 20:14 | |
*** mattymo_ has joined #puppet-openstack | 20:15 | |
*** mattymo has quit IRC | 20:15 | |
*** mattymo_ has quit IRC | 20:15 | |
*** mattymo has joined #puppet-openstack | 20:16 | |
*** mattymo_ has joined #puppet-openstack | 20:17 | |
*** mattymo has quit IRC | 20:17 | |
*** mattymo_ has quit IRC | 20:17 | |
*** mattymo has joined #puppet-openstack | 20:18 | |
*** mattymo_ has joined #puppet-openstack | 20:19 | |
*** mattymo has quit IRC | 20:19 | |
*** mattymo_ has quit IRC | 20:19 | |
*** mattymo has joined #puppet-openstack | 20:20 | |
*** mattymo has quit IRC | 20:21 | |
*** mattymo_ has joined #puppet-openstack | 20:21 | |
*** mattymo has joined #puppet-openstack | 20:22 | |
*** rcallawa has quit IRC | 20:22 | |
*** rcallawa has joined #puppet-openstack | 20:22 | |
*** mattymo has quit IRC | 20:23 | |
*** mattymo_ has joined #puppet-openstack | 20:23 | |
*** mattymo has joined #puppet-openstack | 20:24 | |
*** mattymo_ has joined #puppet-openstack | 20:25 | |
*** mattymo has quit IRC | 20:25 | |
*** mattymo_ has quit IRC | 20:25 | |
*** mattymo has joined #puppet-openstack | 20:26 | |
*** mattymo has quit IRC | 20:27 | |
*** mattymo_ has joined #puppet-openstack | 20:27 | |
*** mattymo has joined #puppet-openstack | 20:28 | |
*** mattymo has quit IRC | 20:29 | |
*** mattymo_ has joined #puppet-openstack | 20:29 | |
*** mattymo has joined #puppet-openstack | 20:30 | |
*** jasondotstar has joined #puppet-openstack | 20:30 | |
*** mattymo has quit IRC | 20:31 | |
*** mattymo_ has joined #puppet-openstack | 20:31 | |
*** mattymo has joined #puppet-openstack | 20:32 | |
*** mattymo has quit IRC | 20:33 | |
*** mattymo_ has joined #puppet-openstack | 20:33 | |
*** mattymo has joined #puppet-openstack | 20:34 | |
*** mattymo has quit IRC | 20:36 | |
*** mattymo_ has joined #puppet-openstack | 20:36 | |
*** mattymo_ has quit IRC | 20:36 | |
*** mattymo has joined #puppet-openstack | 20:36 | |
*** delattec has quit IRC | 20:37 | |
*** mattymo has quit IRC | 20:38 | |
*** mattymo_ has joined #puppet-openstack | 20:38 | |
*** mattymo has joined #puppet-openstack | 20:38 | |
*** mattymo has quit IRC | 20:40 | |
*** mattymo_ has joined #puppet-openstack | 20:40 | |
*** mattymo has joined #puppet-openstack | 20:40 | |
*** mattymo has quit IRC | 20:42 | |
*** mattymo_ has joined #puppet-openstack | 20:42 | |
*** mattymo_ has quit IRC | 20:42 | |
*** mattymo has joined #puppet-openstack | 20:42 | |
*** mattymo_ has joined #puppet-openstack | 20:44 | |
*** mattymo has quit IRC | 20:44 | |
*** mattymo_ has quit IRC | 20:44 | |
*** mattymo has joined #puppet-openstack | 20:44 | |
*** mattymo_ has joined #puppet-openstack | 20:46 | |
*** mattymo has quit IRC | 20:46 | |
*** mattymo_ has quit IRC | 20:46 | |
*** mattymo has joined #puppet-openstack | 20:46 | |
*** jayg is now known as jayg|g0n3 | 20:47 | |
*** mattymo_ has joined #puppet-openstack | 20:48 | |
*** mattymo has quit IRC | 20:48 | |
*** mattymo_ has quit IRC | 20:48 | |
*** mattymo has joined #puppet-openstack | 20:48 | |
*** xarses has quit IRC | 20:49 | |
*** mattymo has quit IRC | 20:50 | |
*** mattymo_ has joined #puppet-openstack | 20:50 | |
*** mattymo has joined #puppet-openstack | 20:50 | |
*** mattymo has quit IRC | 20:52 | |
*** mattymo_ has joined #puppet-openstack | 20:52 | |
*** mattymo has joined #puppet-openstack | 20:52 | |
*** mattymo_ has joined #puppet-openstack | 20:54 | |
*** mattymo has quit IRC | 20:54 | |
*** mattymo_ has quit IRC | 20:54 | |
*** mattymo has joined #puppet-openstack | 20:54 | |
*** mattymo has quit IRC | 20:56 | |
*** mattymo_ has joined #puppet-openstack | 20:56 | |
*** mattymo has joined #puppet-openstack | 20:56 | |
*** mattymo_ has joined #puppet-openstack | 20:58 | |
*** mattymo has quit IRC | 20:58 | |
*** mattymo_ has quit IRC | 20:58 | |
*** mattymo has joined #puppet-openstack | 20:58 | |
*** mattymo has quit IRC | 21:00 | |
*** mattymo_ has joined #puppet-openstack | 21:00 | |
*** mattymo has joined #puppet-openstack | 21:00 | |
*** mattymo has quit IRC | 21:02 | |
*** mattymo_ has joined #puppet-openstack | 21:02 | |
*** mattymo has joined #puppet-openstack | 21:02 | |
*** mattymo_ has joined #puppet-openstack | 21:04 | |
*** mattymo has quit IRC | 21:04 | |
*** mattymo_ has quit IRC | 21:04 | |
*** mattymo has joined #puppet-openstack | 21:04 | |
*** cdelatte has joined #puppet-openstack | 21:05 | |
*** mattymo has quit IRC | 21:06 | |
*** mattymo_ has joined #puppet-openstack | 21:06 | |
*** mattymo has joined #puppet-openstack | 21:06 | |
*** xarses has joined #puppet-openstack | 21:07 | |
*** mattymo_ has joined #puppet-openstack | 21:08 | |
*** mattymo has quit IRC | 21:08 | |
*** mattymo_ has quit IRC | 21:08 | |
*** mattymo has joined #puppet-openstack | 21:08 | |
*** mattymo_ has joined #puppet-openstack | 21:10 | |
*** mattymo has quit IRC | 21:10 | |
*** mattymo_ has quit IRC | 21:10 | |
openstackgerrit | Ivan Berezovskiy proposed openstack/puppet-nova: Add nameservers (dns) parameters https://review.openstack.org/202788 | 21:10 |
*** mattymo has joined #puppet-openstack | 21:10 | |
*** mattymo has quit IRC | 21:12 | |
*** mattymo_ has joined #puppet-openstack | 21:12 | |
*** mattymo has joined #puppet-openstack | 21:12 | |
*** rcallawa has quit IRC | 21:13 | |
*** mattymo has quit IRC | 21:14 | |
*** mattymo_ has joined #puppet-openstack | 21:14 | |
*** mattymo has joined #puppet-openstack | 21:14 | |
*** mattymo has quit IRC | 21:16 | |
*** mattymo_ has joined #puppet-openstack | 21:16 | |
*** mattymo has joined #puppet-openstack | 21:16 | |
*** mattymo_ has joined #puppet-openstack | 21:18 | |
*** mattymo has quit IRC | 21:18 | |
*** mattymo has joined #puppet-openstack | 21:19 | |
*** mattymo_ has joined #puppet-openstack | 21:20 | |
*** mattymo has quit IRC | 21:20 | |
*** mattymo_ has quit IRC | 21:20 | |
*** mattymo has joined #puppet-openstack | 21:21 | |
*** mattymo has quit IRC | 21:22 | |
*** mattymo_ has joined #puppet-openstack | 21:22 | |
*** mattymo has joined #puppet-openstack | 21:22 | |
*** mattymo has quit IRC | 21:24 | |
*** mattymo_ has joined #puppet-openstack | 21:24 | |
*** mattymo has joined #puppet-openstack | 21:25 | |
*** mattymo has quit IRC | 21:26 | |
*** mattymo_ has joined #puppet-openstack | 21:26 | |
*** mattymo has joined #puppet-openstack | 21:27 | |
*** mattymo_ has joined #puppet-openstack | 21:28 | |
*** mattymo has quit IRC | 21:28 | |
*** mattymo_ has quit IRC | 21:28 | |
*** mattymo has joined #puppet-openstack | 21:29 | |
*** mattymo has quit IRC | 21:30 | |
*** mattymo_ has joined #puppet-openstack | 21:30 | |
*** mattymo_ has quit IRC | 21:30 | |
*** mattymo has joined #puppet-openstack | 21:31 | |
*** mattymo_ has joined #puppet-openstack | 21:32 | |
*** mattymo has quit IRC | 21:32 | |
*** mattymo_ has quit IRC | 21:32 | |
*** mattymo has joined #puppet-openstack | 21:33 | |
*** mattymo has quit IRC | 21:34 | |
*** mattymo_ has joined #puppet-openstack | 21:34 | |
*** mattymo has joined #puppet-openstack | 21:35 | |
gfidente | for those around | 21:36 |
*** mattymo has quit IRC | 21:36 | |
*** mattymo_ has joined #puppet-openstack | 21:36 | |
gfidente | I'd like to manage catalog_info setting | 21:36 |
gfidente | anyone started doing some work around that? | 21:37 |
*** mattymo has joined #puppet-openstack | 21:37 | |
*** stamak has joined #puppet-openstack | 21:38 | |
*** mattymo has quit IRC | 21:38 | |
*** mattymo_ has joined #puppet-openstack | 21:38 | |
*** mattymo has joined #puppet-openstack | 21:39 | |
*** mattymo_ has joined #puppet-openstack | 21:40 | |
*** mattymo has quit IRC | 21:40 | |
*** mattymo_ has quit IRC | 21:40 | |
*** mattymo has joined #puppet-openstack | 21:41 | |
*** mattymo_ has joined #puppet-openstack | 21:42 | |
*** mattymo has quit IRC | 21:42 | |
*** mattymo_ has quit IRC | 21:42 | |
*** mattymo has joined #puppet-openstack | 21:43 | |
bodepd | is there some known magic to get the new providers to work with ssl endpoints for keystone? | 21:43 |
bodepd | returned 1: ERROR: openstack SSL exception connecting to https://keystone.service.consul:35357/v3/services | 21:43 |
bodepd | sorry, nm, totally specific to my env... | 21:44 |
*** mattymo has quit IRC | 21:44 | |
*** mattymo_ has joined #puppet-openstack | 21:44 | |
*** mattymo has joined #puppet-openstack | 21:45 | |
*** mattymo has quit IRC | 21:46 | |
*** mattymo_ has joined #puppet-openstack | 21:46 | |
*** mattymo has joined #puppet-openstack | 21:47 | |
*** mattymo has quit IRC | 21:48 | |
*** mattymo_ has joined #puppet-openstack | 21:48 | |
*** mattymo has joined #puppet-openstack | 21:49 | |
bodepd | it just works as long as the certs are correct :) !!! | 21:49 |
*** mattymo_ has joined #puppet-openstack | 21:50 | |
*** mattymo has quit IRC | 21:50 | |
*** mattymo_ has quit IRC | 21:50 | |
*** mattymo has joined #puppet-openstack | 21:51 | |
*** mattymo has quit IRC | 21:52 | |
*** mattymo_ has joined #puppet-openstack | 21:52 | |
*** mattymo has joined #puppet-openstack | 21:53 | |
*** mattymo_ has joined #puppet-openstack | 21:54 | |
*** mattymo has quit IRC | 21:54 | |
*** mattymo_ has quit IRC | 21:54 | |
*** mattymo has joined #puppet-openstack | 21:55 | |
*** mattymo_ has joined #puppet-openstack | 21:57 | |
*** mattymo has quit IRC | 21:57 | |
*** mattymo_ has quit IRC | 21:57 | |
*** mattymo has joined #puppet-openstack | 21:57 | |
*** mattymo has quit IRC | 21:59 | |
*** mattymo_ has joined #puppet-openstack | 21:59 | |
*** mattymo has joined #puppet-openstack | 21:59 | |
*** mattymo_ has joined #puppet-openstack | 22:01 | |
*** mattymo has quit IRC | 22:01 | |
*** mattymo_ has quit IRC | 22:01 | |
*** mattymo has joined #puppet-openstack | 22:01 | |
*** dboik has quit IRC | 22:02 | |
*** mattymo has quit IRC | 22:03 | |
*** mattymo_ has joined #puppet-openstack | 22:03 | |
*** mattymo has joined #puppet-openstack | 22:03 | |
*** mattymo has quit IRC | 22:05 | |
*** mattymo_ has joined #puppet-openstack | 22:05 | |
*** mattymo has joined #puppet-openstack | 22:05 | |
*** mattymo has quit IRC | 22:07 | |
*** mattymo_ has joined #puppet-openstack | 22:07 | |
*** stamak has quit IRC | 22:07 | |
*** mattymo has joined #puppet-openstack | 22:07 | |
*** mattymo has quit IRC | 22:09 | |
*** mattymo_ has joined #puppet-openstack | 22:09 | |
*** mattymo has joined #puppet-openstack | 22:09 | |
*** ashestakov has quit IRC | 22:10 | |
*** mattymo has quit IRC | 22:11 | |
*** mattymo_ has joined #puppet-openstack | 22:11 | |
*** mattymo has joined #puppet-openstack | 22:11 | |
*** mattymo has quit IRC | 22:13 | |
*** mattymo_ has joined #puppet-openstack | 22:13 | |
*** mattymo has joined #puppet-openstack | 22:13 | |
*** mattymo has quit IRC | 22:15 | |
*** mattymo_ has joined #puppet-openstack | 22:15 | |
*** jasondotstar has quit IRC | 22:15 | |
*** mattymo has joined #puppet-openstack | 22:15 | |
*** mattymo has quit IRC | 22:17 | |
*** mattymo_ has joined #puppet-openstack | 22:17 | |
*** mattymo has joined #puppet-openstack | 22:17 | |
*** mattymo has quit IRC | 22:19 | |
*** mattymo_ has joined #puppet-openstack | 22:19 | |
*** mattymo has joined #puppet-openstack | 22:19 | |
*** mattymo_ has joined #puppet-openstack | 22:21 | |
*** mattymo has quit IRC | 22:21 | |
*** mattymo_ has quit IRC | 22:21 | |
*** mattymo has joined #puppet-openstack | 22:21 | |
*** mattymo has quit IRC | 22:23 | |
*** mattymo_ has joined #puppet-openstack | 22:23 | |
*** mattymo has joined #puppet-openstack | 22:23 | |
*** mattymo has quit IRC | 22:25 | |
*** mattymo_ has joined #puppet-openstack | 22:25 | |
*** mattymo_ has quit IRC | 22:25 | |
*** mattymo has joined #puppet-openstack | 22:25 | |
*** mattymo has quit IRC | 22:27 | |
*** mattymo_ has joined #puppet-openstack | 22:27 | |
*** mattymo has joined #puppet-openstack | 22:27 | |
*** mattymo has quit IRC | 22:29 | |
*** mattymo_ has joined #puppet-openstack | 22:29 | |
*** mattymo has joined #puppet-openstack | 22:29 | |
*** mattymo has quit IRC | 22:31 | |
*** mattymo_ has joined #puppet-openstack | 22:31 | |
*** mattymo has joined #puppet-openstack | 22:31 | |
*** mattymo_ has joined #puppet-openstack | 22:33 | |
*** mattymo has quit IRC | 22:33 | |
*** mattymo has joined #puppet-openstack | 22:34 | |
*** mattymo has quit IRC | 22:35 | |
*** mattymo_ has joined #puppet-openstack | 22:35 | |
*** mattymo has joined #puppet-openstack | 22:35 | |
*** mattymo_ has joined #puppet-openstack | 22:37 | |
*** mattymo has quit IRC | 22:37 | |
*** mattymo_ has quit IRC | 22:37 | |
*** mattymo has joined #puppet-openstack | 22:37 | |
*** mattymo_ has joined #puppet-openstack | 22:39 | |
*** mattymo has quit IRC | 22:39 | |
*** mattymo_ has quit IRC | 22:39 | |
*** mattymo has joined #puppet-openstack | 22:39 | |
*** mattymo_ has joined #puppet-openstack | 22:41 | |
*** mattymo has quit IRC | 22:41 | |
*** mattymo_ has quit IRC | 22:41 | |
*** mattymo has joined #puppet-openstack | 22:41 | |
*** mattymo has quit IRC | 22:43 | |
*** mattymo_ has joined #puppet-openstack | 22:43 | |
*** mattymo has joined #puppet-openstack | 22:43 | |
*** mattymo has quit IRC | 22:45 | |
*** mattymo_ has joined #puppet-openstack | 22:45 | |
*** mattymo has joined #puppet-openstack | 22:45 | |
*** mattymo has quit IRC | 22:47 | |
*** mattymo_ has joined #puppet-openstack | 22:47 | |
*** mattymo has joined #puppet-openstack | 22:48 | |
*** dfisher has quit IRC | 22:48 | |
*** mattymo_ has joined #puppet-openstack | 22:49 | |
*** mattymo has quit IRC | 22:49 | |
*** mattymo_ has quit IRC | 22:49 | |
*** gildub has joined #puppet-openstack | 22:49 | |
*** mattymo has joined #puppet-openstack | 22:50 | |
*** mattymo has quit IRC | 22:51 | |
*** mattymo_ has joined #puppet-openstack | 22:51 | |
*** mattymo has joined #puppet-openstack | 22:52 | |
*** mattymo has quit IRC | 22:53 | |
*** mattymo_ has joined #puppet-openstack | 22:53 | |
*** mattymo has joined #puppet-openstack | 22:54 | |
*** mattymo has quit IRC | 22:55 | |
*** mattymo_ has joined #puppet-openstack | 22:55 | |
*** bklei has quit IRC | 22:56 | |
*** mattymo has joined #puppet-openstack | 22:56 | |
*** mattymo has quit IRC | 22:57 | |
*** mattymo_ has joined #puppet-openstack | 22:57 | |
*** mattymo has joined #puppet-openstack | 22:58 | |
*** mattymo has quit IRC | 22:59 | |
*** mattymo_ has joined #puppet-openstack | 22:59 | |
*** mattymo has joined #puppet-openstack | 23:00 | |
*** ducttape_ has quit IRC | 23:00 | |
*** mattymo has quit IRC | 23:01 | |
*** mattymo_ has joined #puppet-openstack | 23:01 | |
*** hogepodge has quit IRC | 23:02 | |
*** mattymo has joined #puppet-openstack | 23:02 | |
*** mattymo_ has joined #puppet-openstack | 23:04 | |
*** mattymo has quit IRC | 23:04 | |
*** mattymo_ has quit IRC | 23:04 | |
*** mattymo has joined #puppet-openstack | 23:04 | |
*** mattymo_ has joined #puppet-openstack | 23:05 | |
*** mattymo has quit IRC | 23:05 | |
*** mattymo_ has quit IRC | 23:06 | |
*** mattymo has joined #puppet-openstack | 23:06 | |
*** aimon has quit IRC | 23:07 | |
*** mattymo has quit IRC | 23:07 | |
*** mattymo_ has joined #puppet-openstack | 23:07 | |
*** mattymo- has joined #puppet-openstack | 23:08 | |
*** dgurtner has joined #puppet-openstack | 23:08 | |
*** dgurtner has quit IRC | 23:08 | |
*** dgurtner has joined #puppet-openstack | 23:08 | |
*** mattymo has joined #puppet-openstack | 23:10 | |
*** mattymo has joined #puppet-openstack | 23:12 | |
*** gfidente has quit IRC | 23:13 | |
*** mattymo has joined #puppet-openstack | 23:14 | |
*** mattymo has joined #puppet-openstack | 23:16 | |
*** mattymo has joined #puppet-openstack | 23:18 | |
*** mattymo has joined #puppet-openstack | 23:20 | |
*** rcallawa has joined #puppet-openstack | 23:21 | |
*** rcallawa has quit IRC | 23:21 | |
*** zigo has quit IRC | 23:21 | |
*** mattymo has joined #puppet-openstack | 23:22 | |
*** rcallawa has joined #puppet-openstack | 23:22 | |
*** zigo has joined #puppet-openstack | 23:22 | |
*** mattymo has joined #puppet-openstack | 23:24 | |
*** mdorman has quit IRC | 23:24 | |
*** jasondotstar has joined #puppet-openstack | 23:25 | |
*** colby_ has joined #puppet-openstack | 23:25 | |
*** mattymo has joined #puppet-openstack | 23:26 | |
colby_ | Hello everyone we just upgrade to the new kilo release of the puppet modules and we are seeing an error when applying to the systems: Error: Could not retrieve catalog from remote server: Error 400 on SERVER: Could not autoload puppet/type/keystone_tenant: interning empty string on node openstack-controller1.sdsc.edu | 23:26 |
colby_ | has anyone see any errors like this. I have not been able to track down what the issue is. | 23:27 |
*** mattymo has joined #puppet-openstack | 23:28 | |
*** mattymo has joined #puppet-openstack | 23:30 | |
*** mattymo has joined #puppet-openstack | 23:32 | |
*** mattymo has joined #puppet-openstack | 23:34 | |
*** mattymo has joined #puppet-openstack | 23:36 | |
*** morazi has quit IRC | 23:37 | |
*** mattymo has joined #puppet-openstack | 23:38 | |
*** rcallawa_ has joined #puppet-openstack | 23:39 | |
*** dgurtner has quit IRC | 23:40 | |
*** mattymo has joined #puppet-openstack | 23:40 | |
*** mattymo has joined #puppet-openstack | 23:42 | |
*** rcallawa has quit IRC | 23:43 | |
*** mattymo has joined #puppet-openstack | 23:44 | |
*** mattymo has joined #puppet-openstack | 23:46 | |
*** mattymo has joined #puppet-openstack | 23:48 | |
*** mattymo has quit IRC | 23:48 | |
*** mattymo has joined #puppet-openstack | 23:50 | |
*** mattymo has joined #puppet-openstack | 23:52 | |
*** mattymo has joined #puppet-openstack | 23:54 | |
*** mattymo has joined #puppet-openstack | 23:56 | |
*** mattymo has joined #puppet-openstack | 23:58 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!