Skip to content

Commit

Permalink
Patch aws csi driver to enable VolumeAttributesClass (#429)
Browse files Browse the repository at this point in the history
  • Loading branch information
ffilippopoulos authored Dec 19, 2024
1 parent 9c2b87f commit 0c9b627
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion aws-ebs-csi-driver/controller-patch.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# VolumeAttributesClass feature gate patched based on:
# https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/2240/files
kind: Deployment
apiVersion: apps/v1
metadata:
Expand Down Expand Up @@ -27,7 +29,19 @@ spec:
- --csi-address=$(ADDRESS)
- --v=2
- --feature-gates=Topology=true
- --feature-gates=CrossNamespaceVolumeDataSource=true
- --feature-gates=CrossNamespaceVolumeDataSource=true,VolumeAttributesClass=true
- --extra-create-metadata
- --leader-election=true
- --default-fstype=ext4
- name: csi-resizer
args:
- --timeout=60s
- --csi-address=$(ADDRESS)
- --v=2
- --handle-volume-inuse-error=false
- --leader-election=true
- --kube-api-qps=20
- --kube-api-burst=100
- --workers=100
- --retry-interval-max=30m
- --feature-gates=VolumeAttributesClass=true

0 comments on commit 0c9b627

Please sign in to comment.