-
Notifications
You must be signed in to change notification settings - Fork 35
Open
Labels
enhancementNew feature or requestNew feature or requestteam: workbenchPosit Workbench related issuePosit Workbench related issue
Description
sharedStorage has an option to add annotations.
helm/charts/rstudio-workbench/values.yaml
Lines 31 to 54 in cb9b077
| sharedStorage: | |
| # -- whether to create the persistentVolumeClaim for shared storage | |
| create: false | |
| # -- The name of the pvc. By default, computes a value from the release name | |
| name: "" | |
| # -- Whether the persistentVolumeClaim should be mounted (even if not created) | |
| mount: false | |
| # -- the path to mount the sharedStorage claim within the pod | |
| path: /var/lib/rstudio-server | |
| # -- storageClassName - the type of storage to use. Must allow ReadWriteMany | |
| storageClassName: false | |
| # -- accessModes defined for the storage PVC (represented as YAML) | |
| accessModes: | |
| - ReadWriteMany | |
| requests: | |
| # -- the volume of storage to request for this persistent volume claim | |
| storage: "10Gi" | |
| # -- selector for PVC definition | |
| selector: {} | |
| # -- the volumeName passed along to the persistentVolumeClaim. Optional | |
| volumeName: "" | |
| # -- Define the annotations for the Persistent Volume Claim resource | |
| annotations: | |
| helm.sh/resource-policy: keep |
homeStorage does not.
helm/charts/rstudio-workbench/values.yaml
Lines 111 to 133 in cb9b077
| homeStorage: | |
| # -- whether to create the persistentVolumeClaim for homeStorage | |
| create: false | |
| # -- The name of the pvc. By default, computes a value from the release name | |
| name: "" | |
| # -- Whether the persistentVolumeClaim should be mounted (even if not created) | |
| mount: false | |
| # -- the path to mount the homeStorage claim within the pod | |
| path: /home | |
| # -- storageClassName - the type of storage to use. Must allow ReadWriteMany | |
| storageClassName: false | |
| # -- accessModes defined for the storage PVC (represented as YAML) | |
| accessModes: | |
| - ReadWriteMany | |
| requests: | |
| # -- the volume of storage to request for this persistent volume claim | |
| storage: "10Gi" | |
| # -- selector for PVC definition | |
| selector: {} | |
| # -- the volumeName passed along to the persistentVolumeClaim. Optional | |
| volumeName: "" | |
| # -- an optional subPath for the volume mount | |
| subPath: "" |
It would be nice to have the ability to also add annotations to homeStorage.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestteam: workbenchPosit Workbench related issuePosit Workbench related issue