Class: Rhea::Kubernetes::Commands::Scale

Inherits:
Base
  • Object
show all
Defined in:
lib/rhea/kubernetes/commands/scale.rb

Constant Summary

Constants inherited from Base

Base::NAMESPACE

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(command_attributes) ⇒ Scale

Returns a new instance of Scale.



7
8
9
# File 'lib/rhea/kubernetes/commands/scale.rb', line 7

def initialize(command_attributes)
  self.command = Command.new(command_attributes)
end

Instance Attribute Details

#commandObject

Returns the value of attribute command.



5
6
7
# File 'lib/rhea/kubernetes/commands/scale.rb', line 5

def command
  @command
end

Instance Method Details

#performObject



11
12
13
14
15
16
17
# File 'lib/rhea/kubernetes/commands/scale.rb', line 11

def perform
  if is_replication_controller_running?
    scale_replication_controller
  else
    start_replication_controller
  end
end