Re: [Puppet Users] parameterized values displaying tooltip on ENC

2014-11-03 Thread Felix Frank
Hi, sounds like a complex problem. Here's a simple counter case that shows why I don't think that any ENC out there does this. class resolv::params { if $ipaddress =~ /^192/ { $ns1 = '192.168.0.1' } else { $ns1 = '8.8.8.8' } } The raison d'etre (as far as I know

Re: [Puppet Users] parameterized values displaying tooltip on ENC

2014-11-03 Thread Craig White
I believe the ENC already has access to the node's stored value and would display that after assignment if assigned. I didn't consider 'cost' but it would seem that loading 'params.pp' values is not a large cost in terms of server but perhaps just in programming. I am just gathering that the

Re: [Puppet Users] parameterized values displaying tooltip on ENC

2014-11-03 Thread Felix Frank
On 11/03/2014 11:21 PM, Craig White wrote: I believe the ENC already has access to the node's stored value and would display that after assignment if assigned. I'm not so sure. The classes that are included from a node should be available, but I don't think that each last parameter value is

[Puppet Users] parameterized values displaying tooltip on ENC

2014-10-14 Thread Craig White
I am trying to figure out if parameterized variables can be displayed when hovering over the appropriate section in an ENC. At the moment, I am playing with PE 3.3 with it's console/dashboard and my previous experience was with puppet 2.6.x and Foreman. Simplified example, module resolv #