Sha256: ea568649362774f2a893453be9e41b2f4343aca0b3492a398594ad36a62b8d1f

Contents?: true

Size: 1.04 KB

Versions: 7

Compression:

Stored size: 1.04 KB

Contents

class KuberKit::Core::Service
  AttributeNotSet = Class.new(Indocker::Error)

  attr_reader :name, :template_name, :tags, :images, :attributes, :deployer_strategy

  Contract KeywordArgs[
    name:             Symbol,
    template_name:    Symbol,
    tags:             ArrayOf[Symbol],
    images:           ArrayOf[Symbol],
    attributes:       HashOf[Symbol => Any],
    deployer_strategy:  Maybe[Symbol]
  ] => Any
  def initialize(name:, template_name:, tags:, images:, attributes:, deployer_strategy:)
    @name = name
    @template_name = template_name
    @tags = tags
    @images = images
    @attributes = attributes
    @deployer_strategy = deployer_strategy
  end

  def uri
    name.to_s.gsub("_", "-")
  end

  def attribute(attribute_name, default: nil)
    if !attributes.has_key?(attribute_name.to_sym) && default.nil?
      raise AttributeNotSet, "attribute #{attribute_name} was not set"
    end

    if !attributes.has_key?(attribute_name.to_sym) && !default.nil?
      return default
    end

    attributes[attribute_name.to_sym]
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
kuber_kit-0.3.8 lib/kuber_kit/core/service.rb
kuber_kit-0.3.7 lib/kuber_kit/core/service.rb
kuber_kit-0.3.6 lib/kuber_kit/core/service.rb
kuber_kit-0.3.5 lib/kuber_kit/core/service.rb
kuber_kit-0.3.4 lib/kuber_kit/core/service.rb
kuber_kit-0.3.3 lib/kuber_kit/core/service.rb
kuber_kit-0.3.2 lib/kuber_kit/core/service.rb