-
Notifications
You must be signed in to change notification settings - Fork 106
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 LocalVolume to supported volume types #1019
Comments
Hey @p53! Thanks for the submission. When you say local do you mean your local machine disk mounted to a pod running in minikube on your local machine as well? |
I think it is already possible if you create PersistentVolume that is mounted to host path, bind it with PersistentVolumeClaim, and use that PVC's name in the workflow. i.e. Following examples may help. |
@jeongukjae local volume and hostPath are not same thing see https://stackoverflow.com/a/63492933, https://vocon-it.com/2018/12/20/kubernetes-local-persistent-volumes/ |
@p53 Yep, those are different thing.
Otherwise, can I get your detailed scenarios that should be solved? |
but then i need to create PV/PVC externally and then mount it with VolumeMount right? We want to use local volumes created on instance store on AWS instances for GPU jobs |
Is your feature request related to a problem? Please describe.
we would like to use local volumes
Describe the solution you'd like
mount local instance storage
Describe alternatives you've considered
alternative can be hostPath altough it is not safe alternative and has also some other drawbacks
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: