# KubernetesAutoScaling

## Properties

\| **max\_node\_count** | **Integer** | The maximum number of worker nodes that the managed node pool can scale in. Must be >= minNodeCount and must be >= nodeCount. Required if autoScaling is specified. | |

\| **min\_node\_count** | **Integer** | The minimum number of working nodes that the managed node pool can scale must be >= 1 and >= nodeCount. Required if autoScaling is specified. | |

## Example

```ruby
require 'ionoscloud'


instance = Ionoscloud::KubernetesAutoScaling.new(
  max_node_count: 3,

  min_node_count: 1
)
```
