File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -64,10 +64,13 @@ impl Engine for SpinEngine {
6464 stdio. redirect ( ) ?;
6565
6666 // Set the container environment variables which will be collected by Spin's
67- // [environment variable provider].
67+ // [environment variable provider]. We use these variables to configure both the Spin runtime
68+ // and the Spin application per the [SKIP 003] proposal.
69+ //
6870 // TODO: This is a temporary solution to allow Spin to collect the container environment variables.
6971 // We should later look into other variable providers to collect container variables.
7072 //
73+ // [SKIP 003]: https://github.com/spinkube/skips/tree/main/proposals/003-shim-runtime-options
7174 // [environment variable provider]: https://github.com/fermyon/spin/blob/v3.0.0/crates/variables/src/env.rs
7275 ctx. envs ( ) . iter ( ) . for_each ( |v| {
7376 let ( key, value) = v. split_once ( '=' ) . unwrap_or ( ( v. as_str ( ) , "" ) ) ;
You can’t perform that action at this time.
0 commit comments