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

    Neeloj

    01/24/2023, 7:51 AM
    message has been deleted
  • s

    Slackbot

    01/24/2023, 9:38 AM
    This message was deleted.
    y
    n
    +2
    • 5
    • 13
  • s

    Slackbot

    01/24/2023, 12:21 PM
    This message was deleted.
    r
    • 2
    • 1
  • s

    Slackbot

    01/24/2023, 1:01 PM
    This message was deleted.
    b
    b
    +7
    • 10
    • 91
  • s

    Slackbot

    01/24/2023, 2:39 PM
    This message was deleted.
    b
    p
    +2
    • 5
    • 8
  • w

    wil.rodriguez

    01/24/2023, 4:17 PM
    CD4PE effectively takes the model of a single integration environment with other enviroments (such as production) being release branches based off it. That model does seem to work pretty well and its probably more supportable long-term
  • h

    helindbe

    01/24/2023, 4:50 PM
    The thing
    sensitive::mysecret
    is just an example for accessing something in a user defined class named
    sensitive
    and getting its parameter
    mysecret
    . There is no feature in puppet that makes all secrets available in some scope. What you do is simply reference the variables that hold values, and some of them may have a
    Sensitive
    value.
  • l

    Les Shiner

    01/24/2023, 5:29 PM
    regex within my enc will for some reason not work, and I need someone to tell me why i'm dumb
  • l

    Les Shiner

    01/24/2023, 5:30 PM
    node name is tom1000, if I have 'tom1000': 'production' it works. If i have '\w{3}\d{4}': 'production' it does not
  • l

    Les Shiner

    01/24/2023, 5:31 PM
    even adding '^\w{3}\d{4}' to ask it to start at the beginning of the string doesn't work
  • s

    Slackbot

    01/24/2023, 5:31 PM
    This message was deleted.
    s
    l
    b
    • 4
    • 16
  • r

    rismoney

    01/24/2023, 7:32 PM
    I guess. But it is Puppet's fault for not being a proper steward of the tech with its own ecosystem. Containers should have been the go to way to deploy puppet. Not some clunky OS heavy model of splattering bits and tools everywhere. I still love and use it, because the competitors have faultier models, but puppet just hasn't considered more grandiose models of moving to where the community wants to be.
  • b

    Brian Schonecker

    01/24/2023, 7:48 PM
    Thanks for the clarification.
  • l

    Les Shiner

    01/24/2023, 8:29 PM
    how do i stop puppetdb from managing my firewall? i went into manifests/init.pp and commented out line 76
    Copy code
    $manage_firewall                         = $puppetdb::params::manage_firewall,
    still getting:
  • s

    Slackbot

    01/24/2023, 8:30 PM
    This message was deleted.
    b
    l
    +3
    • 6
    • 10
  • l

    Les Shiner

    01/24/2023, 8:30 PM
    From: https://github.com/puppetlabs/puppetlabs-puppetdb/blob/main/manifests/init.pp#L76
  • d

    David Sandilands

    01/24/2023, 8:34 PM
    cd4pe and comply are on replicated and can deploy in customer kubernetes and I think we had expected PE to follow but to be blunt most large organisations are lacking the people and knowledge to operationally run kubernetes based applications at all. It's therefore been a huge amount of support effort compared to traditional deployments. I'm not saying Puppet doesn't have to work towards a cloud native / containerized solution but I don't think people are aware how big the gap still is, which is complicating how to find the right balance. When PDK was looking at being replaced with PCT and other components and developers wanted to make it container based it became clear very few enterprise customers would actually be able to use it.
  • d

    David Sandilands

    01/24/2023, 8:39 PM
    I agree and to be honest once the new roadmap settles in I would be surprised if we didn't look that way in the near future
  • b

    bastelfreak

    01/24/2023, 8:40 PM
    no, where you call the puppetdb class, or in hiera
  • s

    Slackbot

    01/24/2023, 9:18 PM
    This message was deleted.
    n
    • 2
    • 1
  • p

    Piergiorgio Spagnolatti

    01/24/2023, 9:40 PM
    say goodbye to al ci/cd pipelines until this gets fixed from puppet's side. :-(
  • d

    Dr Bunsen Honeydew

    01/24/2023, 10:45 PM
    fry dancing 🧑‍🏫 Bolt is about to start up in #CFD8Z9A4T
  • g

    Gerard Lynch

    01/24/2023, 11:05 PM
    Hello, can anyone point me to docs/guide on how to configure litmus to perform pre-reqs, e.g. install the epel repo, before running the acceptance tests?
  • s

    Slackbot

    01/24/2023, 11:13 PM
    This message was deleted.
    👀 1
    n
    g
    • 3
    • 8
  • j

    jms1

    01/24/2023, 11:14 PM
    dumb question: i need to print a visually distinctive reminder in the agent's output. normally i would use ANSI colour sequences for this, but when i tried, it prints the raw string rather than the coloured message ... in the code:
    Copy code
    notify { 'xxx-reminder' :
        message => "\033[0;1;37;41mthis is a reminder\033[0m" ,
      }
    and in the agent output
    Copy code
    Notice: \033[0;1;37;41mthis is a reminder\033[0m
    Notice: /Stage[main]/Class/Notify[xxx-reminder]/message: defined 'message' as '\033[0;1;37;41mthis is a reminder\033[0m'
    the
    \033
    is supposed to be an ESC character ... is there a way to make it include an actual ESC character in the agent's output?
  • j

    jms1

    01/24/2023, 11:15 PM
    dumb question: i need to print a visually distinctive reminder in the agent's output. normally i would use ANSI colour sequences for this, but when i tried, it prints the raw string rather than the coloured message ... in the code:
    Copy code
    notify { 'xxx-reminder' :
        message => "\033[0;1;37;41mthis is a reminder\033[0m" ,
      }
    and in the agent output
    Copy code
    Notice: \033[0;1;37;41mthis is a reminder\033[0m
    Notice: /Stage[main]/Class/Notify[xxx-reminder]/message: defined 'message' as '\033[0;1;37;41mthis is a reminder\033[0m'
    the
    \033
    is supposed to be an ESC character ... is there a way to make it include an actual ESC character in the agent's output?
  • n

    natemccurdy

    01/24/2023, 11:15 PM
    Rather than ASCII codes, a trick I like to use is changing the resource's `loglevel`: https://www.puppet.com/docs/puppet/7/metaparameter.html#loglevel
  • n

    natemccurdy

    01/24/2023, 11:16 PM
    For example:
    Copy code
    notify { 'reminder':
      message  => 'This is an important reminder',
      loglevel => 'warning',  # This makes the log entry for this resource yellow
    }
    🤩 1
  • n

    natemccurdy

    01/24/2023, 11:16 PM
    For example:
    Copy code
    notify { 'reminder':
      message  => 'This is an important reminder',
      loglevel => 'warning',
    }
  • n

    natemccurdy

    01/24/2023, 11:16 PM
    Also I've never seen ascii color codes in Puppet output before, so I don't think they're supported.
1...283284285...428Latest