Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions docs/proposals/20210310-opt-in-autoscaling-from-zero.md
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,23 @@ status:
The cluster autoscaler will prefer the annotation on the MachineDeployment and will predict nodes that have a
`kubernetes.io/arch: amd64` label on them.

**CSI driver attach limits and availability**

When a user would like to signal that the node being created from a MachineSet or MachineDeployment will
have a specific CSI driver installed with any volume attach limits, they can use following
annotations to specify that information.

```
kind: <MachineSet or MachineDeployment>
metadata:
annotations:
capacity.cluster-autoscaler.kubernetes.io/csi-driver: "driver1=attach-limit,driver2=attach-limit"
```
Users can specify `attach-limit` of `0` if they merely want to signal presence of CSI driver and
driver does not have any attach limits.
### Security Model
This feature will require the service account associated with the cluster autoscaler to have
Expand Down
Loading