Module: Kontena::Plugin::Azure::Common

Included in:
Master::CreateCommand, Nodes::CreateCommand
Defined in:
lib/kontena/plugin/azure/common.rb

Constant Summary collapse

LOCATIONS =
[
  'East US',
  'East US 2',
  'Central US',
  'North Central US',
  'South Central US',
  'West Central US',
  'West US',
  'West US 2',
  'US Gov Virginia',
  'US Gov Iowa',
  'Canada East',
  'Canada Central',
  'Brazil South',

  'North Europe',
  'West Europe',
  'Germany Central',
  'Germany Northeast',
  'UK West',
  'UK South',

  'Southeast Asia',
  'East Asia',
  'Australia East',
  'Australia Southeast',
  'Central India',
  'West India',
  'South India',
  'Japan East',
  'Japan West',
  'China East',
  'China North'
].freeze
SIZES =
[
  'ExtraSmall',
  'Small',
  'Medium',
  'Large',
  'ExtraLarge'
]

Instance Method Summary collapse

Instance Method Details

#locationsObject



46
47
48
# File 'lib/kontena/plugin/azure/common.rb', line 46

def locations
  LOCATIONS
end

#sizesObject



50
51
52
# File 'lib/kontena/plugin/azure/common.rb', line 50

def sizes
  SIZES
end