Sha256: 783080bbdd14a7a7697a19804f773c1b8d5a2df488272d8555fbfac4a7dde757
Contents?: true
Size: 768 Bytes
Versions: 9
Compression:
Stored size: 768 Bytes
Contents
# KubernetesAutoScaling ## Properties | 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. | | ## Example ```ruby require 'ionoscloud' instance = Ionoscloud::KubernetesAutoScaling.new( min_node_count: 1, max_node_count: 1 ) ```
Version data entries
9 entries across 9 versions & 1 rubygems