Sha256: 4e66c1a7b864d8255f779623bdea110c69f0dab908e5954730a3fdf8d27d5f31

Contents?: true

Size: 1.66 KB

Versions: 105

Compression:

Stored size: 1.66 KB

Contents

require 'puppet/indirector/face'
Puppet::Indirector::Face.define(:node, '0.0.1') do
  copyright "Puppet Labs", 2011
  license   "Apache 2 license; see COPYING"

  summary "View and manage node definitions."
  description <<-'EOT'
    This subcommand interacts with node objects, which are used by Puppet to
    build a catalog. A node object consists of the node's facts, environment,
    node parameters (exposed in the parser as top-scope variables), and classes.
  EOT

  get_action(:destroy).summary "Invalid for this subcommand."
  get_action(:search).summary "Invalid for this subcommand."
  get_action(:save).summary "Invalid for this subcommand."
  get_action(:save).description "Invalid for this subcommand."

  find = get_action(:find)
  find.summary "Retrieve a node object."
  find.arguments "<host>"
  find.returns <<-'EOT'
    A hash containing the node's `classes`, `environment`, `expiration`, `name`,
    `parameters` (its facts, combined with any ENC-set parameters), and `time`.
    When used from the Ruby API: a Puppet::Node object.

    RENDERING ISSUES: Rendering as string and json are currently broken;
    node objects can only be rendered as yaml.
  EOT
  find.examples <<-'EOT'
    Retrieve an "empty" (no classes, no ENC-imposed parameters, and an
    environment of "production") node:

    $ puppet node find somenode.puppetlabs.lan --terminus plain --render-as yaml

    Retrieve a node using the puppet master's configured ENC:

    $ puppet node find somenode.puppetlabs.lan --terminus exec --run_mode master --render-as yaml

    Retrieve the same node from the puppet master:

    $ puppet node find somenode.puppetlabs.lan --terminus rest --render-as yaml
  EOT
end

Version data entries

105 entries across 105 versions & 3 rubygems

Version Path
puppet-retrospec-0.12.2 vendor/gems/puppet-3.7.3/lib/puppet/face/node.rb
puppet-3.8.7 lib/puppet/face/node.rb
puppet-3.8.7-x86-mingw32 lib/puppet/face/node.rb
puppet-3.8.7-x64-mingw32 lib/puppet/face/node.rb
puppet-3.8.6 lib/puppet/face/node.rb
puppet-3.8.6-x86-mingw32 lib/puppet/face/node.rb
puppet-retrospec-0.12.1 vendor/gems/puppet-3.7.3/lib/puppet/face/node.rb
puppet-3.8.6-x64-mingw32 lib/puppet/face/node.rb
puppet-retrospec-0.12.0 vendor/gems/puppet-3.7.3/lib/puppet/face/node.rb
puppet-3.8.5 lib/puppet/face/node.rb
puppet-3.8.5-x86-mingw32 lib/puppet/face/node.rb
puppet-3.8.5-x64-mingw32 lib/puppet/face/node.rb
puppet-3.8.4 lib/puppet/face/node.rb
puppet-3.8.4-x86-mingw32 lib/puppet/face/node.rb
puppet-3.8.4-x64-mingw32 lib/puppet/face/node.rb
puppet-retrospec-0.11.0 vendor/gems/puppet-3.7.3/lib/puppet/face/node.rb
puppet-retrospec-0.10.0 vendor/gems/puppet-3.7.3/lib/puppet/face/node.rb
puppet-retrospec-0.9.1 vendor/gems/puppet-3.7.3/lib/puppet/face/node.rb
puppet-retrospec-0.9.0 vendor/gems/puppet-3.7.3/lib/puppet/face/node.rb
puppet-retrospec-0.8.1 vendor/gems/puppet-3.7.3/lib/puppet/face/node.rb