k8s-csi-s3/deploy/helm/csi-s3
Vitaliy Filippov 25401592e1 Bump version to 0.38.3, following GeeseFS
- Make long directory listings faster (remove O(N^2))
- Fix long directory listings where some files could be skipped due to inode expiration
- Remove extra empty COPY requests when metadata is not changed
- Add --fsync-on-close option for synchronous s3fs-like mode
- Fix --disable-xattr error code
- Do not try to switch between STANDARD and COLD based on the object size
2023-09-28 11:45:36 +03:00
..
templates Publish helm chart to github pages 2023-08-28 18:41:38 +03:00
Chart.yaml Bump version to 0.38.3, following GeeseFS 2023-09-28 11:45:36 +03:00
manifest.yaml Bump version to 0.38.3, following GeeseFS 2023-09-28 11:45:36 +03:00
README.md Publish helm chart to github pages 2023-08-28 18:41:38 +03:00
values.yaml Bump version to 0.38.3, following GeeseFS 2023-09-28 11:45:36 +03:00

Helm chart for csi-s3

This chart adds S3 volume support to your cluster.

Install chart

  • Helm 2.x: helm install [--set secret.accessKey=... --set secret.secretKey=... ...] --namespace kube-system --name csi-s3 .
  • Helm 3.x: helm install [--set secret.accessKey=... --set secret.secretKey=... ...] --namespace kube-system csi-s3 .

After installation succeeds, you can get a status of Chart: helm status csi-s3.

Delete Chart

  • Helm 2.x: helm delete --purge csi-s3
  • Helm 3.x: helm uninstall csi-s3 --namespace kube-system

Configuration

By default, this chart creates a secret and a storage class. You should at least set secret.accessKey and secret.secretKey to your Yandex Object Storage keys for it to work.

The following table lists all configuration parameters and their default values.

Parameter Description Default
storageClass.create Specifies whether the storage class should be created true
storageClass.name Storage class name csi-s3
storageClass.singleBucket Use a single bucket for all dynamically provisioned persistent volumes
storageClass.mounter Mounter to use. Either geesefs, s3fs or rclone. geesefs recommended geesefs
storageClass.mountOptions GeeseFS mount options --memory-limit 1000 --dir-mode 0777 --file-mode 0666
storageClass.reclaimPolicy Volume reclaim policy Delete
storageClass.annotations Annotations for the storage class
secret.create Specifies whether the secret should be created true
secret.name Name of the secret csi-s3-secret
secret.accessKey S3 Access Key
secret.secretKey S3 Secret Key
secret.endpoint Endpoint https://storage.yandexcloud.net
tolerations.all Tolerate all taints by the CSI-S3 node driver (mounter) false
tolerations.node Custom tolerations for the CSI-S3 node driver (mounter) []
tolerations.controller Custom tolerations for the CSI-S3 controller (provisioner) []