You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The spec field `secretsCommand` is not present in `config/raw.go` and has no execution path. Containers needing host-derived secrets (auth tokens, GPG keys) cannot use the spec mechanism.
Expected
Per spec: `secretsCommand` runs on the host before container start and exposes its stdout (key=value lines) as environment variables to the container — analogous to `initializeCommand` but with output capture.
Steps
Add `SecretsCommand` to `rawConfig` and `ResolvedConfig`.
Gap
The spec field `secretsCommand` is not present in `config/raw.go` and has no execution path. Containers needing host-derived secrets (auth tokens, GPG keys) cannot use the spec mechanism.
Expected
Per spec: `secretsCommand` runs on the host before container start and exposes its stdout (key=value lines) as environment variables to the container — analogous to `initializeCommand` but with output capture.
Steps
Dependency
Best landed alongside #11 (HostExecutor) since both share the host-execution surface.