Hi. I have a hiera hash like this:
profiles::microservices::filesystems:
rootvg:
physical_volumes:
- /dev/sda2
logical_volumes:
service_bin:
size: 1G
mountpath: /apps/lvservices
fs_type : xfs
service_log:
size: 1G
mountpath: /apps/lvservices/logs
what i want to do is lookup the values of all mountpath keys in the array and do something with them. My question is how on earth do i lookup those keys in my puppet class? (is that even possible?)
↧