awslabs / mountpoint-s3-csi-driver

Built on Mountpoint for Amazon S3, the Mountpoint CSI driver presents an Amazon S3 bucket as a storage volume accessible by containers in your Kubernetes cluster.
Apache License 2.0
193 stars 23 forks source link

Enable `podInfoOnMount` when using k8s>=1.30 #262

Closed muddyfish closed 1 week ago

muddyfish commented 1 week ago

Issue #, if available: N/A

Description of changes:

Enable podInfoOnMount when k8s>=1.30


Tested with

helm template --kube-version 1.30 --debug charts/aws-mountpoint-s3-csi-driver | python3 -m yq 'select(.kind=="CSIDriver") | .spec | .podInfoOnMount'

true

helm template --kube-version 1.29 --debug charts/aws-mountpoint-s3-csi-driver | python3 -m yq 'select(.kind=="CSIDriver") | .spec | .podInfoOnMount'

null

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.