Class: Kitchen::Driver::Aws::StandardPlatform::Amazon

Inherits:
Kitchen::Driver::Aws::StandardPlatform show all
Defined in:
lib/kitchen/driver/aws/standard_platform/amazon.rb

Overview

Constant Summary

Constants inherited from Kitchen::Driver::Aws::StandardPlatform

SUPPORTED_ARCHITECTURES

Instance Attribute Summary

Attributes inherited from Kitchen::Driver::Aws::StandardPlatform

#architecture, #driver, #name, #version

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Kitchen::Driver::Aws::StandardPlatform

#find_image, from_platform_string, #initialize, platforms, #to_s

Constructor Details

This class inherits a constructor from Kitchen::Driver::Aws::StandardPlatform

Class Method Details

.from_image(driver, image) ⇒ Object



39
40
41
42
43
44
# File 'lib/kitchen/driver/aws/standard_platform/amazon.rb', line 39

def self.from_image(driver, image)
  if image.name =~ /amzn-ami/i
    image.name =~ /\b(\d+(\.\d+[\.\d])?)/i
    new(driver, "amazon", (Regexp.last_match || [])[1], image.architecture)
  end
end

Instance Method Details

#image_searchObject



30
31
32
33
34
35
36
37
# File 'lib/kitchen/driver/aws/standard_platform/amazon.rb', line 30

def image_search
  search = {
    "owner-id" => "137112412989",
    "name" => version ? "amzn-ami-*-#{version}*" : "amzn-ami-*",
  }
  search["architecture"] = architecture if architecture
  search
end

#usernameObject



26
27
28
# File 'lib/kitchen/driver/aws/standard_platform/amazon.rb', line 26

def username
  "ec2-user"
end