I thought I was doing those things.  I set up a FACTER_ env var on one of
my nodes to test like so ...

[root@vii-osc4-mgmt-001 ~]# cat /etc/profile.d/POD_prefix.sh export
FACTER_pod_prefix=vii-osc4

I rebooted the node, vii-osc4-mgmt-001, and checked that env. var is being
set (maybe it's not)

[root@vii-osc4-mgmt-001 ~]# env | grep FACTER_pod_prefix
FACTER_pod_prefix=vii-osc4[root@vii-osc4-mgmt-001 ~]# facter pod_prefix
vii-osc4

So I believe node vii-osc4-mgmt-001 should be reporting the fact pod_prefix
to the puppet master.

Then on my puppet master I adjusted the hiera hierarchy by changing my
hiera.yaml to this ...

# cat /etc/puppetlabs/puppet/hiera.yaml

---

:backends:

  - yaml

:hierarchy:

  - "%{pod_prefix}"

  - defaults

  - "%{clientcert}"

  - "%{environment}"

  - global


:yaml:

# datadir is empty here, so hiera uses its defaults:

# - /var/lib/hiera on *nix

# - %CommonAppData%\PuppetLabs\hiera\var on Windows

# When specifying a datadir, make sure the directory exists.

  :datadir:

# ls -l /var/lib/hiera/svl-osc4.yaml

-rw-r--r--. 1 root root 49317 Jul 20 15:44 /var/lib/hiera/svl-osc4.yaml

And then I restarted pe-httpd like so ...

# systemctl restart pe-httpd




On Tue, Jul 21, 2015 at 12:22 AM, Thomas Müller <tho...@chaschperli.ch>
wrote:

> you need to adjust the hiera hierarchy. To adjust it you need a  top scope
> variable (e.g. "pod_prefix") (
> https://docs.puppetlabs.com/puppet/latest/reference/lang_scope.html#top-scope
>
> )  to be used in hiera.yaml configuration file.
>
> you could also make a custom fact (
> https://docs.puppetlabs.com/facter/2.4/custom_facts.html) in a module or
> a facter-dot-d fact (
> https://puppetlabs.com/blog/module-of-the-week-puppetlabsstdlib-puppetlabs-standard-library-part-3
> )
>
> you could also use an hiera based ENC like
> https://github.com/Zetten/puppet-hiera-enc to  define the value in hiera.
>
> - Thomas
>
>
>
>
> Am Dienstag, 21. Juli 2015 07:48:43 UTC+2 schrieb red:
>>
>> Hi,
>>
>> I use to keep all my class parameters in the default hiera data file,
>> /var/lib/hiera/defaults.yaml, but now I need to maintain another set of
>> nodes that would need to use different values for the class parameters in
>> the defaults.yaml.
>>
>> I figured, no bug deal, just add the FACTER_something_or_other
>> environment variable to all my nodes and set the value to particular
>> node_set.  Use this env. var in my :hierarchy: section of my hiera.yaml.
>> But it appears it is not really that easy.
>>
>> I posted a detailed question on ask puppet but haven't gotten any
>> responses yet.
>> Could someone please take a look at my question?  I am stumped.
>>
>>
>> https://ask.puppetlabs.com/question/18360/how-come-data-is-not-coming-from-hiera-yaml-file/
>> <https://www.google.com/url?q=https%3A%2F%2Fask.puppetlabs.com%2Fquestion%2F18360%2Fhow-come-data-is-not-coming-from-hiera-yaml-file%2F&sa=D&sntz=1&usg=AFQjCNHf7jLpK79lC76jraIdCVZrTXRmRQ>
>>
>> If you prefer, I also posted on stackover flow here
>>
>>
>> http://stackoverflow.com/questions/31522249/how-come-data-is-not-coming-from-my-hiera-yaml-file
>>
>> Thanks :)
>>
>>
>>  --
> 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/402bde62-1703-4e31-9f9b-35a0edbe34a0%40googlegroups.com
> <https://groups.google.com/d/msgid/puppet-users/402bde62-1703-4e31-9f9b-35a0edbe34a0%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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/CAHu%2B3OxoqD4nSummDPG9%2B-m%3DLxtBni2N3g2oJ%3DQ8B-9RPb2JKw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to