Hi. Is there a way to mount a volume without using...
# ask-community
h
Hi. Is there a way to mount a volume without using job template in
KubernetesRun
? I don’t want to change the existing job template but just override volume.
k
Hey @Han Hong, unfortunately this doesn’t seem like an option through the RunConfig
s
You can pass a template in through the
job_template
arg, so you could load up the default template yaml, override the volume, and use that in the run config. At least then the changes are local to exactly that job.
👍 2
k
Thanks for the suggestion @Sam Cook!
h
Thanks. I will try that 🙂