Re: [Puppet Users] Puppet Basics Blog Post

2018-05-07 Thread Dan White
Satellite 6.3 has the option for Puppet 4, but I do not yet know the exact version. You may have better luck after an upgrade. > On May 7, 2018, at 9:38 PM, warron.french wrote: > > Martin, Red Hat Satellite (even version with 3.8.6) doesn't support EPP > templates. > > > > \\Warron French

Re: [Puppet Users] Puppet Basics Blog Post

2018-05-07 Thread warron.french
Martin, Red Hat Satellite (even version with 3.8.6) doesn't support EPP templates. \\Warron French from mobile On Sun, May 6, 2018, 22:14 Joaquin Menchaca wrote: > I will likely apply these. I wish there was a minimalist PDK way to > generate module. What is generated is everything under th

[Puppet Users] Re: Setting puppet up to use a dns alias as a servername

2018-05-07 Thread jcbollinger
On Monday, May 7, 2018 at 4:23:35 AM UTC-5, buoyant_puppy wrote: > > > > On Friday, May 4, 2018 at 3:13:41 PM UTC+2, jcbollinger wrote: >> >> >> >> On Thursday, May 3, 2018 at 9:54:11 AM UTC-5, buoyant_puppy wrote: >>> >>> >>> >>> On Wednesday, May 2, 2018 at 2:59:33 PM UTC+2, jcbollinger wrote:

Re: [Puppet Users] Re: Hiera brainstorming

2018-05-07 Thread Robert
Hi Thomas, I appreciate your input. While these might be too many levels according to a specific metric, I don't think it's *that* much. I'd be uncomfortable with even more levels but not because it wouldn't work from a technical aspect. A hiera lookup from a data_hash backend is considered an ine

[Puppet Users] Re: Class composition + parameterization

2018-05-07 Thread Thomas Müller
Am Montag, 7. Mai 2018 09:21:20 UTC+2 schrieb a...@example42.com: > > Actually you don't have to inherit, you can (and should) just have > something like: > > class dk_oracle_java::install { > include dk_oracle_java > package { 'oracle-java8-installer': > ensure => $::dk_oracle_java::ve

[Puppet Users] Re: Getting failure in puppet pipelines on premise enterprise installation, Please help

2018-05-07 Thread sidharth . venugopalan
It has been almost a week now and i have requested multiple times for the demo, do you know by when they would send it, any info regarding this would be highly appreciated as we have tight deadlines to meet. -- You received this message because you are subscribed to the Google Groups "Puppet U

[Puppet Users] Re: Hiera brainstorming

2018-05-07 Thread Thomas Müller
Hi Robert I personally think these are too many levels. Instead introducing complexity by levels I would suggest you to implement a review process (like: pull-requests with mandatory reviews) to prevent disallowed settings to even hit production. This also will help you to share knowledge and

[Puppet Users] Re: Setting puppet up to use a dns alias as a servername

2018-05-07 Thread buoyant_puppy
On Friday, May 4, 2018 at 3:13:41 PM UTC+2, jcbollinger wrote: > > > > On Thursday, May 3, 2018 at 9:54:11 AM UTC-5, buoyant_puppy wrote: >> >> >> >> On Wednesday, May 2, 2018 at 2:59:33 PM UTC+2, jcbollinger wrote: >>> >>> >>> >>> On Wednesday, May 2, 2018 at 6:25:37 AM UTC-5, Gavin Williams wro

[Puppet Users] Re: Class composition + parameterization

2018-05-07 Thread al
Actually you don't have to inherit, you can (and should) just have something like: class dk_oracle_java::install { include dk_oracle_java package { 'oracle-java8-installer': ensure => $::dk_oracle_java::version, } } The above include is not necessary if you are already incuding the d