Class: KuberKit::Core::Service
Constant Summary collapse
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
-
#dependencies ⇒ Object
readonly
Returns the value of attribute dependencies.
-
#deployer_strategy ⇒ Object
readonly
Returns the value of attribute deployer_strategy.
-
#images ⇒ Object
readonly
Returns the value of attribute images.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#tags ⇒ Object
readonly
Returns the value of attribute tags.
-
#template_name ⇒ Object
readonly
Returns the value of attribute template_name.
Instance Method Summary collapse
- #attribute(attribute_name, default: nil) ⇒ Object
-
#initialize(name:, dependencies:, template_name:, tags:, images:, attributes:, deployer_strategy:) ⇒ Service
constructor
A new instance of Service.
- #uri ⇒ Object
Constructor Details
#initialize(name:, dependencies:, template_name:, tags:, images:, attributes:, deployer_strategy:) ⇒ Service
Returns a new instance of Service.
15 16 17 18 19 20 21 22 23 |
# File 'lib/kuber_kit/core/service.rb', line 15 def initialize(name:, dependencies:, template_name:, tags:, images:, attributes:, deployer_strategy:) @name = name @dependencies = dependencies @template_name = template_name @tags = @images = images @attributes = attributes @deployer_strategy = deployer_strategy end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
4 5 6 |
# File 'lib/kuber_kit/core/service.rb', line 4 def attributes @attributes end |
#dependencies ⇒ Object (readonly)
Returns the value of attribute dependencies.
4 5 6 |
# File 'lib/kuber_kit/core/service.rb', line 4 def dependencies @dependencies end |
#deployer_strategy ⇒ Object (readonly)
Returns the value of attribute deployer_strategy.
4 5 6 |
# File 'lib/kuber_kit/core/service.rb', line 4 def deployer_strategy @deployer_strategy end |
#images ⇒ Object (readonly)
Returns the value of attribute images.
4 5 6 |
# File 'lib/kuber_kit/core/service.rb', line 4 def images @images end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
4 5 6 |
# File 'lib/kuber_kit/core/service.rb', line 4 def name @name end |
#tags ⇒ Object (readonly)
Returns the value of attribute tags.
4 5 6 |
# File 'lib/kuber_kit/core/service.rb', line 4 def @tags end |
#template_name ⇒ Object (readonly)
Returns the value of attribute template_name.
4 5 6 |
# File 'lib/kuber_kit/core/service.rb', line 4 def template_name @template_name end |
Instance Method Details
#attribute(attribute_name, default: nil) ⇒ Object
29 30 31 32 33 34 35 36 37 38 39 |
# File 'lib/kuber_kit/core/service.rb', line 29 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 |
#uri ⇒ Object
25 26 27 |
# File 'lib/kuber_kit/core/service.rb', line 25 def uri name.to_s.gsub("_", "-") end |