https://www.puppet.com/community logo
Join Slack
Powered by
# puppet-enterprise
  • m

    Marty Ewings

    11/29/2022, 4:37 PM
    this looks more like the metrics collection or console for PE using a ruby client
  • s

    Slackbot

    11/29/2022, 4:38 PM
    This message was deleted.
    s
    • 2
    • 1
  • c

    csharpsteen

    11/29/2022, 4:48 PM
    That's probably
    puppet_metrics_collector
    , given the Ruby client.
  • s

    Slackbot

    11/29/2022, 4:49 PM
    This message was deleted.
    s
    • 2
    • 1
  • s

    Slackbot

    11/29/2022, 7:25 PM
    This message was deleted.
    c
    s
    j
    • 4
    • 19
  • c

    csharpsteen

    11/29/2022, 8:29 PM
    Looks like the answer is that the fact count is only incremented for Hash entries: https://github.com/puppetlabs/puppet/blob/main/lib/puppet/configurer.rb#L197 No idea why Array entries aren't counted as well.
  • s

    Slackbot

    11/30/2022, 12:48 AM
    This message was deleted.
    b
    d
    z
    • 4
    • 3
  • z

    ziggy

    11/30/2022, 12:48 AM
    Hey all. Using Puppet's documentation on exporting classifier data: https://puppet.com/docs/pe/2021.7/groups_endpoint.html#groups_endpoint There is a command to export everything. The examples explain how to add individual things, but how would I import the entire export that I just took?
  • d

    David Sandilands

    11/30/2022, 9:23 AM
    https://puppet.com/docs/pe/2021.5/import_hierarchy_endpoint.html is the endpoint to restore. The PEADM module has a task using the apis https://github.com/puppetlabs/puppetlabs-peadm/blob/main/tasks/backup_classification.rb https://github.com/puppetlabs/puppetlabs-peadm/blob/main/tasks/restore_classification.rb It also has a transform to only restore application groups and not infrastructure groups if you are wanting to take your application groups to new infrastructure. https://github.com/puppetlabs/puppetlabs-peadm/blob/main/tasks/transform_classification_groups.py
  • d

    David Sandilands

    11/30/2022, 9:24 AM
    https://puppet.com/docs/pe/2021.7/import_hierarchy_endpoint.html is the endpoint to restore. The PEADM module has a task using the apis https://github.com/puppetlabs/puppetlabs-peadm/blob/main/tasks/backup_classification.rb https://github.com/puppetlabs/puppetlabs-peadm/blob/main/tasks/restore_classification.rb It also has a transform to only restore application groups and not infrastructure groups if you are wanting to take your application groups to new infrastructure. https://github.com/puppetlabs/puppetlabs-peadm/blob/main/tasks/transform_classification_groups.py
  • s

    Slackbot

    12/02/2022, 6:29 PM
    This message was deleted.
    a
    h
    +4
    • 7
    • 18
  • h

    hbui

    12/02/2022, 7:16 PM
    What I'm seeing is that a class that has the values for parameters set in controlrepo/data/os/OpenSUSE.yaml aren't getting found when I upgraded the agent from 6.28 to 7.20 and the line in hiera.yaml is "os/%{::osfamily}.yaml"
  • s

    Slackbot

    12/02/2022, 7:47 PM
    This message was deleted.
    c
    z
    • 3
    • 3
  • z

    ziggy

    12/03/2022, 12:40 AM
    Hello all. I am provisioning an Puppet HA replica in an environment with compilers. When enabling the replica, I am getting:
    Copy code
    What is the hostname and port of your load balancer for puppet-server?
    If you have more than one load balancer, enter them as a comma-separated string.
    Is the load balancer for the compilers?
  • z

    ziggy

    12/03/2022, 12:40 AM
    I dont have a load balancer for the main puppet server. It's a single server hence why Im creating an HA replica
  • z

    ziggy

    12/03/2022, 12:41 AM
    Hello all. I am provisioning an Puppet HA replica in an environment with compilers. When enabling the replica, I am getting:
    Copy code
    What is the hostname and port of your load balancer for puppet-server?
    If you have more than one load balancer, enter them as a comma-separated string.
    Is this the load balancer for the compilers?
  • z

    ziggy

    12/03/2022, 12:46 AM
    message has been deleted
  • z

    ziggy

    12/03/2022, 12:46 AM
    message has been deleted
  • s

    Slackbot

    12/06/2022, 12:13 PM
    This message was deleted.
    👍 1
    d
    j
    • 3
    • 2
  • d

    David Sandilands

    12/06/2022, 1:18 PM
    Hi @Jan Hejda good point, I will raise a ticket and get back to this thread on ensuring this is corrected but be assured PEADM has run on RHEL7 and RHEL8 without compatibility issues. I suspect the dependencies modules haven't had a recent release and just don't list latest OS rather than having any direct lack of support.
  • s

    Slackbot

    12/09/2022, 1:54 AM
    This message was deleted.
    m
    s
    • 3
    • 4
  • s

    seanmil

    12/09/2022, 1:51 PM
    message has been deleted
  • s

    Slackbot

    12/13/2022, 6:34 PM
    This message was deleted.
    a
    z
    +3
    • 6
    • 9
  • c

    CVQuesty

    12/13/2022, 10:54 PM
    Hey there, everyone. Anyone on here from the admin team at Publix Supermarkets? PM me.
  • s

    steveax

    12/14/2022, 12:05 AM
    https://github.com/puppetlabs/pcp-broker/blob/7806c6a6045c406c256b2c9d6129382923ba3d03/src/puppetlabs/pcp/broker/service.clj#L28
  • n

    NickB

    12/14/2022, 12:06 AM
    I forget what the heartbeat interval is, but it’s less than a minute I believe.
  • s

    steveax

    12/14/2022, 12:16 AM
    looks like it’s not exposed as a class param and by default is six minutes:
    idle-timeout (get-in-config [:pcp-broker :idle-timeout] (* 1000 60 6))
  • n

    nlew

    12/14/2022, 12:21 AM
    The agent heartbeat is 120 seconds by default and it will disconnect after missing three of them. The broker has a corresponding default timeout of 6 minutes so it will give up at the same time as the agent. But as long as the agent heartbeat is less than the load balancer’s timeout, it should work fine, regardless of how the broker is configured.
  • s

    Slackbot

    12/14/2022, 6:39 PM
    This message was deleted.
    b
    z
    p
    • 4
    • 14
  • s

    Slackbot

    12/15/2022, 2:05 AM
    This message was deleted.
    n
    z
    • 3
    • 2
1...323334...73Latest