Replies: 1 comment
|
Yes, I think the low-level OpenShell runtime fits this use case reasonably well. There is now a documented standalone The main difference is that standalone mode leaves lifecycle, restart/health supervision, updates, and policy/route distribution to the surrounding system. For automotive I'd probably treat OpenShell as the confinement/policy runtime inside the QM layer, with systemd or the platform service manager owning the long-lived process. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I'm exploring how OpenShell can be applied in automotive systems - specifically, running it in the QM (Quality Management) layer. I'd like to open a discussion about whether this use case aligns with the project's direction.
Context: edge environments differ from the cloud
In automotive and robotics, workloads look quite different from the typical deployment OpenShell targets. AI agents and applications are pre-defined and static rather than dynamically spawned, communication happens over local channels rather than remote access, and sandboxes are long-lived system services, not ephemeral on-demand containers.
What I've done so far
Because of these (and other) constraints, I've been running the
openshell-sandboxstandalone - without a gateway. The setup:openshell-sandboxembedded as the entrypointThis works today because the sandbox gracefully handles an unreachable gateway and falls back to its local configuration. I'm aware that this approach sacrifices gateway-dependent features like policy hot-reload, credential rotation, and middleware services - but for statically defined, locally scoped sandboxes, that trade-off seems acceptable.
Questions
All reactions