Files
patel-lyzr 0284ff768a feat: enhance agent execution flow with multi-execution view and improved error handling
- Added multi-execution view to display multiple execution statuses.
- Improved error handling in agent triggering to surface failures.
- Updated execution view to support live updates via SSE and added a log panel for node logs.
- Enhanced pipeline canvas to display node statuses during execution.
- Introduced new fields in the build node form for Docker configurations.
- Updated API to support execution streaming and enhanced node catalog descriptions.
2026-05-13 22:15:08 +05:30

30 lines
847 B
TOML

# BuildKit daemon config — used by the buildkitd compose service.
# https://github.com/moby/buildkit/blob/master/docs/buildkitd.toml.md
debug = false
# Insecure registries for local development. Add your private registry here
# if it serves plain HTTP. ghcr.io / docker.io / etc. work without an entry.
[registry."localhost:5000"]
http = true
insecure = true
[registry."registry:5000"]
http = true
insecure = true
# Disable the worker's outbound OTEL push by default. Re-enable with the
# OTEL_EXPORTER_OTLP_ENDPOINT env var on the buildkitd container if you want
# tracing.
[grpc]
address = ["tcp://0.0.0.0:1234", "unix:///run/buildkit/buildkitd.sock"]
[worker.oci]
enabled = true
# Garbage-collect intermediate layers when the cache exceeds 20 GiB.
gc = true
gckeepstorage = 20000
[worker.containerd]
enabled = false