Sha256: 3d21f13c459d6756006f481348796891003b2c0ec46b2ccd2b78382ec99c4448

Contents?: true

Size: 959 Bytes

Versions: 3

Compression:

Stored size: 959 Bytes

Contents

require "kitchen/driver/aws/standard_platform"

module Kitchen
  module Driver
    class Aws
      class StandardPlatform
        # https://help.ubuntu.com/community/EC2StartersGuide#Official_Ubuntu_Cloud_Guest_Amazon_Machine_Images_.28AMIs.29
        class Ubuntu < StandardPlatform
          StandardPlatform.platforms["ubuntu"] = self

          def username
            "ubuntu"
          end

          def image_search
            search = {
              "owner-id" => "099720109477",
              "name" => "ubuntu/images/*/ubuntu-*-#{version}*",
            }
            search["architecture"] = architecture if architecture
            search
          end

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
kitchen-ec2-2.1.0 lib/kitchen/driver/aws/standard_platform/ubuntu.rb
kitchen-ec2-2.0.0 lib/kitchen/driver/aws/standard_platform/ubuntu.rb
kitchen-ec2-1.4.0 lib/kitchen/driver/aws/standard_platform/ubuntu.rb