Skip to content

Commit

Permalink
Fixup kube executor to use "storage://" prefix for cwl
Browse files Browse the repository at this point in the history
  • Loading branch information
u8sand committed May 9, 2024
1 parent 8c11b68 commit d4d891b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion appyter/execspec/implementations/kube.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,9 @@ def _submit(self, job, namespace='default'):
for k, v in dict_merge(
{
's': job['url'],
'w': job['cwd'],
'w': f"storage://{job['cwd']}",
'data-dir': job['storage'],
'fuse': 'true',
},
**self.executor_options.get('args', {})
).items()
Expand Down

0 comments on commit d4d891b

Please sign in to comment.