Puppet Function: query_nodes

Defined in:
lib/puppet/parser/functions/query_nodes.rb
Function type:
Ruby 3.x API

Overview

query_nodes()Any

accepts two arguments, a query used to discover nodes, and an 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 or series of keys joined on periods (this argument is optional)

Returns:

  • (Any)


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'lib/puppet/parser/functions/query_nodes.rb', line 1

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

  accepts two arguments, a query used to discover nodes, and an 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 or series of keys joined on periods
  (this argument is optional)

EOT
                                     ) do |args|
  query, fact = args
  fact_for_query = if fact && fact.match(/\./)
                     fact.split('.').first
                   else
                     fact
                   end

  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, uri.scheme == 'https')
  parser = PuppetDB::Parser.new
  if fact_for_query
    query = parser.facts_query(query, [fact_for_query])
    response = puppetdb.query(:facts, query, :extract => :value)

    if fact.split('.').size > 1
      parser.extract_nested_fact(response, fact.split('.')[1..-1])
    else
      response.collect { |f| f['value'] }
    end
  else
    query = parser.parse(query, :nodes) if query.is_a? String
    puppetdb.query(:nodes, query, :extract => :certname).collect { |n| n['certname'] }
  end
end