4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
    Type 1 or more characters for results.
    Links per page: 20 50 100
    page 1 / 1
    16 results tagged puppetdb x
    • thumbnail
      puppetexplorer/README.md at master · dalen/puppetexplorer · GitHub

      Frontend puppetdb

      May 7, 2017 at 9:38:43 PM GMT+2 - permalink - archive.org - https://github.com/dalen/puppetexplorer/blob/master/README.md
      puppet puppetdb
    • puppetdb query : get last report for all nodes

      curl -s -G http://localhost:8080/pdb/query/v4/reports --data-urlencode 'query=["=","latest_report?","true"]'| jq '.[] | {certname: .certname, receive_time: .receive_time}'

      October 19, 2015 at 5:27:38 PM GMT+2 - permalink - archive.org - https://links.infomee.fr/?N4WFzQ
      puppetdb
    • puppetdb query : get non reporting nodes

      retrieve last_report older than 30 minutes :

      curl -s -G http://localhost:8080/pdb/query/v4/reports --data-urlencode "query=[\"and\",[\"<\",\"receive_time\",\"$(date --utc +%Y-%m-%dT%H:%M -d '30 min ago')\"],[\"=\",\"latest_report?\",\"true\"]]"|jq '.[]| {certname: .certname, receive_time: .receive_time}'

      October 19, 2015 at 5:24:39 PM GMT+2 - permalink - archive.org - https://links.infomee.fr/?CW0tyw
      puppetdb
    • puppetdb ssl setup (jetty)

      Il faut récupérer le ca.pem du puppetmaster, et les certificats du puppetdb en question
      sudo scp $(puppet master --configprint ssldir)/ca/ca_crt.pem puppetdb.example.com:/etc/puppetdb/ssl/ca.pem
      $ sudo scp $(puppet master --configprint ssldir)/private_keys/puppetdb.example.com.pem puppetdb.example.com:/etc/puppetdb/ssl/private.pem
      $ sudo scp $(puppet master --configprint ssldir)/certs/puppetdb.example.com.pem puppetdb.example.com:/etc/puppetdb/ssl/public.pem

      • modifier conf pour prendre tout ça en compte :

      /etc/puppetdb/conf.d/jetty.ini

      The host or IP address to listen on for HTTPS connections

      ssl-host = 0.0.0.0

      The port to listen on for HTTPS connections

      ssl-port = 8081

      Private key path

      ssl-key = /etc/puppetdb/ssl/private.pem

      Public certificate path

      ssl-cert = /etc/puppetdb/ssl/public.pem

      Certificate authority path

      ssl-ca-cert = /etc/puppetdb/ssl/ca.pem

      October 19, 2015 at 11:36:54 AM GMT+2 - permalink - archive.org - https://docs.puppetlabs.com/puppetdb/3.1/install_from_source.html#step-3-option-b-manually-generating-and-preparing-certificates
      puppetdb
    • puppetdb call api en HTTPS

      With SSL:

      curl -X GET https://puppetdb.example.com:8081/pdb/query/v4/resources \
      --tlsv1 \
      --cacert /etc/puppet/ssl/certs/ca.pem \
      --cert /etc/puppet/ssl/certs/thisnode.pem \
      --key /etc/puppet/ssl/private_keys/thisnode.pem \
      --data-urlencode query@<filename>

      This requires that you specify a certificate (issued by the same CA PuppetDB trusts), a private key, and a CA certificate.

      In both examples, <filename> should be a file that contains the query to execute.

      October 19, 2015 at 11:35:51 AM GMT+2 - permalink - archive.org - https://docs.puppetlabs.com/puppetdb/3.1/api/query/tutorial.html
      puppetdb
    • Frontend puppetdb

      Ya le choix :

      https://github.com/puppet-community/puppetboard
      https://github.com/spotify/puppetexplorer
      https://github.com/propyless/panopuppet

      October 16, 2015 at 3:48:47 PM GMT+2 - permalink - archive.org - https://links.infomee.fr/?ZBgWyQ
      frontend puppetdb
    • thumbnail
      propyless/panopuppet

      puppet puppetdb

      April 23, 2015 at 5:22:53 PM GMT+2 - permalink - archive.org - https://github.com/propyless/panopuppet
      puppet puppetdb
    • thumbnail
      puppet-community/puppetboard
      April 23, 2015 at 5:22:31 PM GMT+2 - permalink - archive.org - https://github.com/puppet-community/puppetboard#puppet-module
      puppet puppetdb
    • thumbnail
      https://github.com/spotify/puppetexplorer

      UI pour puppetdb

      July 2, 2014 at 4:53:10 PM GMT+2 - permalink - archive.org - https://github.com/spotify/puppetexplorer
      puppet puppetdb
    • Consuming JSON REST resource through HTTP - Ruby Intro
      April 18, 2014 at 3:17:58 PM GMT+2 - permalink - archive.org - http://nizhu.github.io/ruby-intro-site/blog/2013/07/31/consuming-json-rest-resource-through-http/
      api puppetdb rest ruby
    • thumbnail
      github.com/dalen/dm-puppetdb-adapter

      ror adapter to query puppetdb

      April 7, 2014 at 5:23:35 PM GMT+2 - permalink - archive.org - https://github.com/dalen/dm-puppetdb-adapter
      puppet puppetdb ror
    • dalen/puppetdbquery · Puppet Forge
      March 28, 2014 at 9:58:03 AM GMT+1 - permalink - archive.org - https://forge.puppetlabs.com/dalen/puppetdbquery
      module puppet puppetdb
    • github.com/nedap/puppetboard

      Un frontend pour puppetdn (en python)

      March 27, 2014 at 10:07:42 AM GMT+1 - permalink - archive.org - https://github.com/nedap/puppetboard
      puppet puppetdb
    • Feature #16529: Making puppetdb-terminus available as a gem - PuppetDB - Puppet Labs

      Comment construire la gem puppetdb-terminus à partir des sources github :

      git clone https://github.com/puppetlabs/puppetdb
      git checkout 1.6.2
      cd puppetdb
      cp contrib/gem/puppetdb-terminus.gemspec puppet/
      cd puppet
      modifier le spec pour mettre version=1.6.2
      gem build puppetdb-terminus.gemspec

      Installer la gem : gem install puppetdb-terminus-1.6.2.gem

      March 26, 2014 at 5:11:11 PM GMT+1 - permalink - archive.org - https://projects.puppetlabs.com/issues/16529
      puppet puppetdb
    • Intro to PuppetDB - PuppetConf '12 - YouTube

      Bonnes conf sur puppetdb

      • https://www.youtube.com/watch?v=iGVoqCb9CkA
      • https://github.com/dalen/puppet-puppetdbquery
      • https://github.com/jasonhancock/nagios-puppetdb
      • http://docs.puppetlabs.com/puppetdb/
      March 18, 2014 at 5:04:56 PM GMT+1 - permalink - archive.org - https://www.youtube.com/watch?v=xw83cRofkpM
      puppet puppetdb
    • PuppetDB Highlights from PuppetConf 2013 | Puppet Labs
      • http://puppetlabs.com/blog/introducing-puppetdb-put-your-data-to-work
      • http://docs.puppetlabs.com/puppetdb/
      • http://puppetlabs.com/blog/module-of-the-week-puppetlabs-puppetdb
      March 13, 2014 at 12:56:20 PM GMT+1 - permalink - archive.org - http://puppetlabs.com/blog/puppetdb-highlights-puppetconf-2013?utm_campaign=blog&utm_medium=socnet
      puppet puppetdb
    Links per page: 20 50 100
    page 1 / 1
    Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation