Prerequisites
Config.yaml (~/.konduktor/config.yaml)
Setup
- Set up cloud storage credentials
- Check cloud storage setup with:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
🎓 Pluto PRO promo: academic users and early-stage startups can email founders@trainy.ai for a PROMO code.
Example task yamls for cloud storage
~/.konduktor/config.yaml)allowed_clouds:
- {s3, gs}
$ konduktor check {gs, s3}
$ ls
task.yaml myworkdir/
$ ls myworkdir/
workdir_file1.txt workdir_file2.txt
$ konduktor launch task.yaml
name: workdir-file-upload
workdir: myworkdir
resources:
cpus: 1
memory: 1
image_id: ubuntu
labels:
kueue.x-k8s.io/queue-name: user-queue
maxRunDurationSeconds: "600"
run: |
if [ -f workdir_file1.txt ]; then
echo "File exists"
else
echo "File does not exist"
exit 1
fi
if [ -f workdir_file2.txt ]; then
echo "File exists"
else
echo "File does not exist"
exit 1
fi
Was this page helpful?