Module: Chef::Knife::NcBase
- Included in:
- NcImageList, NcServerCreate, NcServerDelete, NcServerList
- Defined in:
- lib/chef/knife/nc_base.rb
Class Method Summary collapse
-
.included(includer) ⇒ Object
:nodoc: Would prefer to do this in a rational way, but can’t be done b/c of Mixlib::CLI’s design :(.
Instance Method Summary collapse
- #connection ⇒ Object
- #locate_config_value(key) ⇒ Object
- #msg_pair(label, value, color = :cyan) ⇒ Object
- #validate!(keys = [:nc_access_key, :nc_secret_key]) ⇒ Object
Class Method Details
.included(includer) ⇒ Object
:nodoc: Would prefer to do this in a rational way, but can’t be done b/c of Mixlib::CLI’s design :(
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/chef/knife/nc_base.rb', line 30 def self.included(includer) includer.class_eval do deps do require 'NIFTY' require 'readline' require 'chef/json_compat' end option :nc_access_key, :short => "-A ACCESS_KEY", :long => "--access-key KEY", :description => "Your NIFTY Cloud Access Key ID", :proc => Proc.new { |key| Chef::Config[:knife][:nc_access_key] = key } option :nc_secret_key, :short => "-K SECRET_KEY", :long => "--secret-key SECRET", :description => "Your NIFTY Cloud API Secret Access Key", :proc => Proc.new { |key| Chef::Config[:knife][:nc_secret_key] = key } end end |
Instance Method Details
#connection ⇒ Object
53 54 55 56 57 58 59 60 |
# File 'lib/chef/knife/nc_base.rb', line 53 def connection @connection ||= begin connection = NIFTY::Cloud::Base.new( :access_key => Chef::Config[:knife][:nc_access_key], :secret_key => Chef::Config[:knife][:nc_secret_key] ) end end |
#locate_config_value(key) ⇒ Object
62 63 64 65 |
# File 'lib/chef/knife/nc_base.rb', line 62 def locate_config_value(key) key = key.to_sym Chef::Config[:knife][key] || config[key] end |
#msg_pair(label, value, color = :cyan) ⇒ Object
67 68 69 70 71 |
# File 'lib/chef/knife/nc_base.rb', line 67 def msg_pair(label, value, color=:cyan) if value && !value.to_s.empty? puts "#{ui.color(label, color)}: #{value}" end end |
#validate!(keys = [:nc_access_key, :nc_secret_key]) ⇒ Object
73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
# File 'lib/chef/knife/nc_base.rb', line 73 def validate!(keys=[:nc_access_key, :nc_secret_key]) errors = [] keys.each do |k| pretty_key = k.to_s.gsub(/_/, ' ').gsub(/\w+/){ |w| (w =~ /(ssh)|(nc)|(id)/i) ? w.upcase : w.capitalize } if Chef::Config[:knife][k].nil? errors << "You did not provide a valid '#{pretty_key}' value." end end if errors.each{|e| ui.error(e)}.any? exit 1 end end |