[Puppet Users] Puppet Enterprise 2019.2.2 is now available!

2019-12-12 Thread Jed Gresham
The latest patch for Puppet Enterprise, 2019.2.2, is now available. This is a backward-compatible release that contains a bug fix affecting code deployment after upgrade. For details, see the release notes . Download PE 2019.2.2 here

Re: [Puppet Users] Re: Bolt duplicate vagrant nodes issue

2019-12-12 Thread Brent Clark
Thanks so much. Regards Brent On 2019/12/12 18:33, Lucy Wyman wrote: Hi Brent The main issue here is not that you have two `- name` calls, it's that both nodes have the *same* name '127.0.0.1'. The `name` key must be unique for all targets, though alongside it you can define a `uri` key whi

[Puppet Users] Re: Bolt duplicate vagrant nodes issue

2019-12-12 Thread Lucy Wyman
Hi Brent The main issue here is not that you have two `- name` calls, it's that both nodes have the *same* name '127.0.0.1'. The `name` key must be unique for all targets, though alongside it you can define a `uri` key which sets the actual uri for the target which does not need to be unique. G

Re: [Puppet Users] RFE Proposal: lookup_options in the manifest

2019-12-12 Thread Henrik Lindberg
On 2019-12-12 02:59, Alan Evans wrote: I love Automatic Parameter Lookup (APL) and hiera in general.  But one thing I have found awkward is that `lookup_options` are found in the hiera data.  In general the idea is to separate data from code right? Exactly, and that is why the options should b

Re: [Puppet Users] Bolt duplicate vagrant nodes issue

2019-12-12 Thread Michael Smith
The error is because you use the name '127.0.0.1' for two different entries. It needs to be unique in any particular 'nodes' array. One way we commonly fix that is to include the port in the name, so you would have '127.0.0.1:2200' and '127.0.0.1:2201'. This technique is kind of mentioned in the

[Puppet Users] Re: RFE Proposal: lookup_options in the manifest

2019-12-12 Thread jcbollinger
On Wednesday, December 11, 2019 at 7:59:47 PM UTC-6, Alan Evans wrote: > > I love Automatic Parameter Lookup (APL) and hiera in general. But one > thing I have found awkward is that `lookup_options` are found in the hiera > data. In general the idea is to separate data from code right? Looku

[Puppet Users] Github actions for Puppet module deploy

2019-12-12 Thread Thomas Bendler
Hi @all, are there any official Github Actions available to deploy Puppet modules to the Puppet forge? I know they exist for TravisCI ( https://docs.travis-ci.com/user/deployment/puppetforge/) but didn't find the equivalent for Github Actions yet. Does anyone know more? Kind regards Thomas -- Li

[Puppet Users] Bolt duplicate vagrant nodes issue

2019-12-12 Thread Brent Clark
Good day Guys I am trialing puppet bolt. I have two vagrant instances up and running. Im trying to run bolt against. Here in my inventory content. https://pastebin.com/raw/2aKHbRxH The error message I am getting is "Ignoring duplicate node in all" I think the problem is that I have two '- nam