Hi everyone,
I’m working on a system with two components:
- Orchestrator Node
- Coordinates tasks and sends requests to distributed containers.
- Distributed Container Node
- A minimal Docker container (built from
scratch
) that exposes an HTTP endpoint. - These containers are designed to be run by anyone, so we don’t control the host environment.
is it possible ensure runtime integrity for a distributed container in this scenario?
How can the Orchestrator verify if it’s communicating with a genuine, untampered Distributed node?