https://www.puppet.com/community logo
Join Slack
Powered by
# puppet
  • r

    runlolarun

    07/22/2022, 6:46 PM
    not upgrading right now 🙂 okay, will find a workaround.
  • r

    runlolarun

    07/22/2022, 6:46 PM
    Thanks!
  • v

    vchepkov

    07/22/2022, 6:48 PM
    https://github.com/puppetlabs/puppet/commit/786433ebee8cee7bcaeb9d487e1b217c12301418
  • v

    vchepkov

    07/22/2022, 6:48 PM
    6.15.0 has it 🙂
  • r

    runlolarun

    07/22/2022, 6:49 PM
    Oh well, next time. Definitely not doing it right now. Upgrade is on my todo list. thank you!
  • v

    vchepkov

    07/22/2022, 6:58 PM
    updating from 6.14 to 6.15 should be of minimal affect on the server
  • r

    runlolarun

    07/22/2022, 7:36 PM
    We have a huge upgrade coming up. I am already overwhelmed and stressed out. Not adding more drama :)
    👍 1
  • r

    runlolarun

    07/22/2022, 7:37 PM
    We have a huge upgrade coming up. I am already overwhelmed and stressed out. Not adding more drama :)
  • r

    ramnad

    07/22/2022, 9:46 PM
    I am trying to install puppet agent on ubuntu20, and it's not able to find the package. I have checked the installation documentation and there was no information about the repo that to be used. Anyone faced this issue?
    Copy code
    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    Package puppet-agent is not available, but is referred to by another package.
    This may mean that the package is missing, has been obsoleted, or
    is only available from another source
    
    E: Package 'puppet-agent' has no installation candidate
  • g

    Greg Bristol

    07/22/2022, 9:49 PM
    https://puppet.com/docs/puppet/6/install_puppet.html#enable_the_puppet_platform_repository
    ✅ 1
    👍 1
  • g

    Greg Bristol

    07/22/2022, 9:49 PM
    you'll have to do this
  • n

    natemccurdy

    07/22/2022, 9:51 PM
    Copy code
    wget <https://apt.puppet.com/puppet7-release-focal.deb>
    sudo dpkg -i puppet7-release-focal.deb
    sudo apt update
    sudo apt install puppet-agent
    👍 2
    ✅ 1
  • n

    natemccurdy

    07/22/2022, 9:51 PM
    (side note, I really wish the Puppet install docs showed actual full paths to all the repo packages.)
  • n

    natemccurdy

    07/22/2022, 9:52 PM
    (side note, I really wish the Puppet install docs showed actual full paths to all the repo packages.
  • n

    natemccurdy

    07/22/2022, 9:52 PM
    (side note, I really wish the Puppet install docs showed actual full paths to all the repo packages.)
  • r

    ramnad

    07/22/2022, 9:53 PM
    Thank you, I have missed it, didnt use the right search strings I suppose 🙂 . Anyone know if there is a way to get the packages for version puppet agent version 4?
  • n

    natemccurdy

    07/22/2022, 9:54 PM
    Those don’t exist for Focal.
  • n

    natemccurdy

    07/22/2022, 9:54 PM
    Also… why 4?!?! (https://apt.puppet.com/eol-releases/index.html)
  • n

    natemccurdy

    07/22/2022, 9:54 PM
    Also… why 4?!?! (https://apt.puppet.com/eol-releases/index.html)
  • r

    ramnad

    07/22/2022, 10:02 PM
    message has been deleted
  • s

    Slackbot

    07/23/2022, 12:01 AM
    This message was deleted.
    n
    s
    +3
    • 6
    • 12
  • s

    sranganathan

    07/23/2022, 12:02 AM
    Hi Puppet Experts, We have puppet master server with 16CPUs, 44GB Memory; I had set the puppet server's configuration as max-active-instances = 15 , max-requests-per-instance: 0, max-queued-requests: 5000; I have close to 3000 clients integrated to master. Still then performance is very bad and it takes close to 5 to 10 mins for each sync. can you share somelight to what am doing wrong here ?
  • s

    sranganathan

    07/23/2022, 12:02 AM
    Hi Puppet Experts, We have puppet master server with 16CPUs, 44GB Memory; I had set the puppet server's configuration as max-active-instances = 15 , max-requests-per-instance: 0, max-queued-requests: 5000; I have close to 3000 clients integrated to master. Still then performance is very bad and it takes close to 5 to 10 mins for each sync. can you share somelight to what am doing wrong here ? and suggestions to improve performance.
  • s

    sranganathan

    07/23/2022, 12:03 AM
    Hi Puppet Experts, We have puppet master server with 16CPUs, 44GB Memory; I had set the puppet server's configuration as max-active-instances = 15 , max-requests-per-instance: 0, max-queued-requests: 5000 and puppet java process heap -Xms10G -Xmx10G; I have close to 3000 clients integrated to master. Still then performance is very bad and it takes close to 5 to 10 mins for each sync. can you share somelight to what am doing wrong here ? and suggestions to improve performance.
  • e

    elliot

    07/23/2022, 6:00 PM
    puppet runs fine with
    puppet apply -t -v
    on the command line, but is giving me
    Copy code
    puppet-agent[34695]: Failed to deserialize multiple Puppet::FileServing::Metadata from json: undefined method `missing_extensions?' for nil:NilClass
    puppet-agent[34695]: Wrapped exception:
    puppet-agent[34695]: undefined method `missing_extensions?' for nil:NilClass
    puppet-agent[34695]: Failed to apply catalog: Could not find terminus rest for indirection catalog
    when running as a daemon
  • v

    vchepkov

    07/23/2022, 6:02 PM
    a buggy module. An environment variable, which is present in your environment is not present in daemon
  • e

    elliot

    07/23/2022, 6:03 PM
    i hope turning up
    log_level
    will help tell me what it is.
  • v

    vchepkov

    07/23/2022, 6:04 PM
    I am going to bet that adding
    LANG=en_US.UTF-8
    to /etc/sysconfig/puppet will cure this one
  • v

    vchepkov

    07/23/2022, 6:05 PM
    or something to that extent
  • e

    elliot

    07/23/2022, 6:06 PM
    it's a freebsd system; there was a stale pid file that couldn't be replaced when it started
    👍 1
1...104105106...428Latest