KubernetesAutoScaling
Name | Type | Description | Notes |
---|---|---|---|
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. | |
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. | |
require 'ionoscloud'
instance = Ionoscloud::KubernetesAutoScaling.new(
min_node_count: 1,
max_node_count: 1
)
Last modified 11mo ago