Skip to content

Discovery cookbook for search, implements Discovery#search environment and non-environment aware search for roles with a few extra checks

Notifications You must be signed in to change notification settings

leifmadsen/chef-discovery

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 

Repository files navigation

Discovery Library

Search

You can use the #search method to locate a role, optionally restricted to the environment.

It will fall back to searching the local nodes run_list for roles, so you can have less logic flow in recipes.

host = Discovery.search("any_role",
                        :node => node,
                        :environment_aware => false)

All

You can use the #all method to locate all nodes with a role, optionally restricted to the environment.

Additional options:

hosts = Discovery.all("base",
                      :node => node,
                      :environment_aware => true,
                      :empty_ok => false,
                      :remove_self => true,
                      :minimum_response_time => false

ipaddress

You can use the #ipaddress method to automatically grab a prioritised ipaddress from a node.

The remote node will be compared against the same node, if any are in any clouds detected by ohai (and they are in the same cloud) the local ipv4 will be returned.

You can optionally supply a type argument specifying which ipaddress you would like.

ipaddress = Discovery.ipaddress(:remote_node => host,
                                :node => node)
local_ipv4 = Discovery.ipaddress(:remote_node => host,
                                 :node => node,
                                 :type => :local)
public_ipv4 = Discovery.ipaddress(:remote_node => host,
                                 :node => node,
                                 :type => :public)

About

Discovery cookbook for search, implements Discovery#search environment and non-environment aware search for roles with a few extra checks

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • Ruby 100.0%