Documentation Index
Fetch the complete documentation index at: https://docs.trainy.ai/llms.txt
Use this file to discover all available pages before exploring further.
Prerequisites
Setup
- Create a
--kind=env secret
$ konduktor secret create --kind=env --inline FOO=bar my-env-name
- Check that the secret was properly created with:
For more details, check out the setup of secrets here.
Current Working Directory
Launching
$ konduktor launch task.yaml
Task.yaml
name: env-secrets
resources:
cpus: 1
memory: 1
image_id: ubuntu
labels:
kueue.x-k8s.io/queue-name: user-queue
maxRunDurationSeconds: "3200"
run: |
echo "=== ENV TEST: FOO ==="
echo "FOO=$FOO"
echo "======================"