KubernetesAutoScaling

Properties

NameTypeDescriptionNotes

min_node_count

Integer

The minimum number of worker nodes that the managed node group can scale in. Should be set together with 'maxNodeCount'. Value for this attribute must be greater than equal to 1 and less than equal to maxNodeCount.

[optional]

max_node_count

Integer

The maximum number of worker nodes that the managed node pool can scale-out. Should be set together with 'minNodeCount'. Value for this attribute must be greater than equal to 1 and minNodeCount.

[optional]

Example

require 'ionoscloud'

instance = Ionoscloud::KubernetesAutoScaling.new(
  min_node_count: 1,
  max_node_count: 1
)

Last updated