To-do List Runner
Create and deploy a CRUD runner backed by MongoDB. This runner will store to-do items in a `todo` collection and expose standard read/write endpoints for the rest of the exercise.
Before you start
What you’ll build
10
Test the runner (without gateway)
kubectl exec -ti --namespace=admin-backend deployment/runner-example-0001-deployment -- /bin/bash# should return status:"UP"
curl localhost:1235/actuator/health
# should return the newly created record
curl -X POST -H "Content-Type: application/json" \
-d '{"data": {"name": "Take out trash", "project": "Personal"}}' \
localhost:1235/api/todo/todo/1
# should return a list including the new record
curl localhost:1235/api/todo/todoNext step
Troubleshooting
Last updated














