You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cluster-autoscaler/cloudprovider/magnum/README.md
+24Lines changed: 24 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,30 @@ to match your cluster.
47
47
| --nodes | Used to select a specific node group to autoscale and constrain its node count. Of the form `min:max:NodeGroupName`. Can be used multiple times. |
48
48
| --node-group-auto-discovery | See below. |
49
49
50
+
#### Deployment with helm
51
+
52
+
Alternatively, the autoscaler can be deployed with the cluster autoscaler helm chart.
53
+
A minimal values.yaml file looks like:
54
+
55
+
```yaml
56
+
cloudProvider: "magnum"
57
+
58
+
magnumClusterName: "cluster name or ID"
59
+
60
+
autoscalingGroups:
61
+
- name: default-worker
62
+
maxSize: 5
63
+
minSize: 1
64
+
65
+
cloudConfigPath: "/etc/kubernetes/cloud-config"
66
+
```
67
+
68
+
For running on the master node and other suggested settings, see
0 commit comments