subshell / helm-charts

Public Helm charts supported by subshell.
https://subshell.github.io/helm-charts
Apache License 2.0
6 stars 8 forks source link

Add persistent volumes to sophora-server chart #114

Closed hehu80 closed 1 month ago

hehu80 commented 4 months ago

Sometimes it's necessary to use only volumes with certain settings like CSI properties or node affinities. The ability to enable this setting via the helm chart would greatly simplify such deployments.

A values.yaml with additional volume settings could look like this:

...
storage:
  storageClass: ssd
  ...
  persistentVolume:
    csi:
      driver: pd.csi.storage.gke.io
      volumeHandle: ...
      fsType: ext4
...