Questions tagged [puppet-enterprise]

Puppet Enterprise is the commercially supported and packaged release of Puppet.

Puppet Enterprise is the commercially supported and packaged release of Puppet.

It consists of a stack of various Puppet tools:

A Basic Split Installation

Related Tags

250 questions
0
votes
1 answer

How to copy and install 3 different files from puppet master to 3 different agent locations

I created a module to copy one file from the master and install to agents and it works fine with code below: but now I am trying to copy 3 different files in different directory and install each one on different set of nodes. ( it is like a range…
Moez
  • 1
  • 2
0
votes
1 answer

Puppet agent returning error on windows 7

I am new to puppet and have a very little knowledge of it. I have just started working on it and trying to configure windows machine as an agent. While trying to run agent process it is giving following error. Error: Could not request certificate:…
anurag
  • 202
  • 3
  • 12
0
votes
0 answers

PE Puppet Console and manage multiple node user accounts

I'm new to puppet and using Puppet Enterprise with the module from puppet for accounts. https://forge.puppet.com/puppetlabs/accounts I'd like to be able to manage the user account details from the PE console for multiple users. The best I can seem…
Paul
  • 45
  • 9
0
votes
1 answer

puppet functions exec windows command line

Currently i am trying to automate the start mode in windows server services. i tried to use puppetlabs registry but realized that the module didn't work as i expected. Basically i have list of windows services that i need to update on each server…
AlamHo
  • 193
  • 1
  • 3
  • 12
0
votes
1 answer

Per module hiera data with eyaml?

I have been using hiera to store information in ./modulename/data using a hiera.yaml file under ./modulename/hiera.yaml one looks like this: # --- version: 5 defaults: datadir: data data_hash: yaml_data hierarchy: - name: "source file" …
cmyk0
  • 11
  • 3
0
votes
1 answer

validating puppet in jenkins

I would like to run puppet-parser-validate, and puppet-lint on my existing puppet orchestration. We will be creating a Jenkins job which is triggered by a gitlab push. The project structure is as…
troz
  • 165
  • 1
  • 1
  • 8
0
votes
0 answers

Puppet on Windows create service with generated service name

I'm writing a module to install a package and configure it afterwards, the package installation is working fine, however, to add some custom configuration I need to restart the service and that isn't working, So the code below install the package,…
Chris
  • 21
  • 1
  • 2
0
votes
0 answers

Parse "puppet agent" run

We are using Puppet 3.7.4 to manage our servers (RedHat & Windows server). We have a python API that runs the remote command puppet agent -t on the servers. Sometimes new classes are being applied, sometimes classes are failed. The result is being…
Oz Bar-Shalom
  • 1,747
  • 1
  • 18
  • 33
0
votes
0 answers

Managing multiple projects having multiple environments using Puppet

I have setup Puppet Enterprise server on CentOS Linux 7 (Core). # /opt/puppetlabs/bin/puppetserver --version puppetserver version: 2016.5.0.11 I have different client-specific projects and they all have multiple environments (QA, Staging, Prod). I…
Technext
  • 7,887
  • 9
  • 48
  • 76
0
votes
1 answer

Puppet enterprise error while running "puppet agent -t" commnad, unable to get User/Group data from hieara

I have Puppet enterprise installed on my VM, running in Virtualbox. The installation went fine, but when I try to run the command puppet agent -t I get the following error: [root@puppetmaster ~]# puppet agent -t Info: Using configured environment…
Tdl Matias
  • 173
  • 1
  • 2
  • 11
0
votes
0 answers

Puppet Enterprise Console certificate update

I've setup and been managing a Puppet (enterprise 2016.1) instance with over 50 nodes. PE console uses self-signed certificate (https:///) which is starting to get flagged down by the security audits and forcing me to…
Karthik
  • 97
  • 2
  • 3
  • 10
0
votes
0 answers

Puppet Enterprise Installer - Validating page stuck

I am trying to install puppet-enterprise-2016.1.2-ubuntu-14.04-amd64.tar on Ubuntu 14.04. I get to the browser gui installer. I open the server FQDN with port 3000 in a browser, select monothilic, and on the same server. I fill in the FQDN name, DNS…
samash
  • 757
  • 2
  • 15
  • 32
0
votes
1 answer

Puppet print all attributes of a resource

In the exists? method I get the value from a remote source. Then I want to check the value against what has been requested. My resource type is volume volume { 'create a volume 1': ensure => present, name => "vol1", description =>…
user1191140
  • 1,559
  • 3
  • 18
  • 37
0
votes
1 answer

Puppet Resource Ordering not working

I have a large manifest that sets up an OpenStack Controller node that also has HAProxy, Galera and RabbitMQ co-located on the same host. I am running into problems because the HAProxy service always seems to be the last thing to start. This…
Red Cricket
  • 9,762
  • 21
  • 81
  • 166
0
votes
0 answers

Multiple control conditions validation in puppet

I need to validate agent like memory, processor, and port connectivity before running my other manifest files. So I've created a manifest like following by keeping global facts with and statement and exec resource. class vc { #Validateing Infra…
Dev
  • 371
  • 1
  • 4
  • 19