class Bcome::Node::Kube::Estate

Public Instance Methods

child_node_klass() click to toggle source
# File lib/objects/node/kube/estate.rb, line 10
def child_node_klass
  ::Bcome::Kube::Node::Namespace
end
get_child_config_from_line(raw_line) click to toggle source
# File lib/objects/node/kube/estate.rb, line 14
def get_child_config_from_line(raw_line)
  name, active, age = raw_line.split("\s")
  { name: name, active: active, age: age }
end
get_child_node_command() click to toggle source

CONTAINS NAMESPACES

# File lib/objects/node/kube/estate.rb, line 6
def get_child_node_command
  'get namespaces'
end