General Deployments
Simple General
Example deployment yamls for general deployments with konduktor serve
Was this page helpful?
⌘I
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 deployment yamls for general deployments with konduktor serve
$ ls
deployment.yaml
$ konduktor serve launch deployment.yaml
# no autoscaling + default port (8000) + no health probing
name: serving-general-simple
resources:
cpus: 0.5
memory: 1
image_id: ubuntu
labels:
kueue.x-k8s.io/queue-name: user-queue
serving:
min_replicas: 1
run: |
apt-get update && apt-get install -y python3
echo "Hello from Konduktor Serve!" > index.html
python3 -m http.server 8000
Was this page helpful?