Hi all, I am new to using lakeFS(and programming in general). In the quick start guide, I got an error on part 6(Actions and Hooks).
For reference, I am using a Linux WSL(Ubuntu) to use Docker to run the lakeFS container. I am getting an error from the terminal:
docker exec lakefs \
lakectl fs upload \
lakefs://quickstart/add_action/_lakefs_actions/check_commit_metadata.yml \
--source C:/Coding/lakeFS.win/check_commit_metadata.yml
open C
/Coding/lakeFS.win/check commit metadata.yml no such file or directory
Error executing command.
The given code was:
docker exec lakefs \
lakectl fs upload \
lakefs://quickstart/add_action/_lakefs_actions/check_commit_metadata.yml \
--source /tmp/check_commit_metadata.yml
I am fairly sure this is because I need to save it to Linux files and not Windows. However, I'm not really sure how because I am new to Linux in general. How do I save the YAML file to a location where Docker and lakectl can access it? Also, if it is general practice to use the lakeFS UI only or if there is something else that I could be missing please let me know. Thanks for the help!