Class: KubeDSL::DSL::Autoscaling::V2beta1::HorizontalPodAutoscalerSpec

Inherits:
KubeDSL::DSLObject
  • Object
show all
Defined in:
lib/kube-dsl/dsl/autoscaling/v2beta1/horizontal_pod_autoscaler_spec.rb

Instance Method Summary collapse

Methods inherited from KubeDSL::DSLObject

#initialize, #to_resource

Methods included from ValueFields

#array_field, #object_field, #value_field, #value_fields

Constructor Details

This class inherits a constructor from KubeDSL::DSLObject

Instance Method Details

#kind_symObject



16
17
18
# File 'lib/kube-dsl/dsl/autoscaling/v2beta1/horizontal_pod_autoscaler_spec.rb', line 16

def kind_sym
  :horizontal_pod_autoscaler_spec
end

#serializeObject



7
8
9
10
11
12
13
14
# File 'lib/kube-dsl/dsl/autoscaling/v2beta1/horizontal_pod_autoscaler_spec.rb', line 7

def serialize
  {}.tap do |result|
    result[:maxReplicas] = max_replicas
    result[:minReplicas] = min_replicas
    result[:metrics] = metrics.map(&:serialize)
    result[:scaleTargetRef] = scale_target_ref.serialize
  end
end