Sha256: d172b7955eb2c12d1f1bb0924611644896abc88a6a133503cc597eb8abf38081

Contents?: true

Size: 1.22 KB

Versions: 3

Compression:

Stored size: 1.22 KB

Contents

Puppet::Parser::Functions.newfunction(:query_nodes, type: :rvalue, arity: -2, doc: <<-EOT

  accepts two arguments, a query used to discover nodes, and a optional
  fact that should be returned.

  The query specified should conform to the following format:
    (Type[title] and fact_name<operator>fact_value) or ...
    Package["mysql-server"] and cluster_id=my_first_cluster

  The second argument should be single fact (this argument is optional)

EOT
                                     ) do |args|
  query, fact = args

  require 'puppet/util/puppetdb'

  # This is needed if the puppetdb library isn't pluginsynced to the master
  $LOAD_PATH.unshift File.expand_path(File.join(File.dirname(__FILE__), '..', '..', '..'))
  begin
    require 'puppetdb/connection'
  ensure
    $LOAD_PATH.shift
  end

  PuppetDB::Connection.check_version

  uri = URI(Puppet::Util::Puppetdb.config.server_urls.first)
  puppetdb = PuppetDB::Connection.new(uri.host, uri.port)
  parser = PuppetDB::Parser.new
  if fact
    query = parser.facts_query query, [fact]
    puppetdb.query(:facts, query).collect { |f| f['value'] }
  else
    query = parser.parse query, :nodes if query.is_a? String
    puppetdb.query(:nodes, query).collect { |n| n['certname'] }
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ruby-puppetdb-2.0.2 lib/puppet/parser/functions/query_nodes.rb
ruby-puppetdb-2.0.1 lib/puppet/parser/functions/query_nodes.rb
ruby-puppetdb-2.0.0 lib/puppet/parser/functions/query_nodes.rb