Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add annotations to homeStorage #618

Open
SamEdwardes opened this issue Nov 20, 2024 · 0 comments
Open

Add annotations to homeStorage #618

SamEdwardes opened this issue Nov 20, 2024 · 0 comments
Labels
enhancement New feature or request

Comments

@SamEdwardes
Copy link
Contributor

sharedStorage has an option to add annotations.

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.

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.

@SamEdwardes SamEdwardes added the enhancement New feature or request label Nov 20, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant