You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
which you may have to do anyway, because Puppet ignores the hiera merge behavior definition and always uses the strategy "first".
Even if you defined something like this (assuming the module had a parameter repos):
class { '::aptly':
repos => lookup('aptly::repos', Hash, 'deep', {}),
}
Puppet would implicitly do a lookup('aptly::repos', Hash, 'first', {}) and ignore everything else. You'd have to do a lookup on a differntly named key to get around this (not configurable) behavior:
class { '::aptly':
repos => lookup('my::repos', Hash, 'deep', {}),
}
I'd like to have all of my aptly configuration be done by hiera, as such, I'd like to be able to create repos/mirrors via hiera hashes.
The text was updated successfully, but these errors were encountered: