Gave it a shot tonight with a masterless Puppet set up and it appears to 
work ok (just like your own module-data module)

metadata.json (note:data_provider)

{
  "name": "goffinf-lookuptest",
  "version": "0.1.0",
  "author": "goffinf",
  "summary": "Test of Puppet 4 lookup experimental feature",
  "license": "Apache-2.0",
  "source": "",
  "project_page": null,
  "issues_url": null,
  "dependencies": [
    {"name":"puppetlabs-stdlib","version_requirement":">= 1.0.0"}
  ],
  "data_provider": "hiera"
}

hiera.yaml (in the 'data' folder)

---
version: 4
datadir: data
hierarchy:
- name: "common"
  backend: yaml

common.yaml (in the 'data' folder)

lookuptest::foo: 'foo_from_COMMON'
lookuptest::bar: 'bar_from_COMMON'

init.pp

class lookuptest {

  # Test of Puppet 4 MODULE LEVEL Hiera lookup
  
  $foo = lookup('lookuptest::foo')
  
  notice('==================')
  notice($foo)
  notice('==================')

}

Output :

Notice: Scope(Class[Lookuptest]): ==================
Notice: Scope(Class[Lookuptest]): foo_from_COMMON
Notice: Scope(Class[Lookuptest]): ==================
Notice: Compiled catalog for lt6440.home in environment production in 0.34 
seconds

HTHs

Fraser.

On Thursday, 19 November 2015 17:38:19 UTC, R.I. Pienaar wrote:
>
> hello, 
>
> Does anyone know if puppet lookup is supposed to work in a non master 
> based setup? 
>
> Running puppet lookup --node some.node some::key results in messages about 
>
> Warning: Host is missing hostname and/or domain: some.node 
>
> This is as seen in https://tickets.puppetlabs.com/browse/PUP-5519 and it 
> appears to me that it just does not work well in an apply based 
> environment 
>
> Is this supposed to work or a known issue at the moment? 
>
> --- 
> R.I.Pienaar 
>

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/5c6136a6-7378-45f8-841e-1a83b5d88374%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to