-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: finalize pegboard env (#1420)
Fixes RVT-4032 Fixes RVT-4157
- Loading branch information
1 parent
76312de
commit e51f3ed
Showing
8 changed files
with
221 additions
and
208 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
packages/infra/client/manager/src/actor/partial_oci_config.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
use serde::Deserialize; | ||
|
||
/// Partial configuration file structure for deserializing the user-provided OCI config.json. | ||
#[derive(Deserialize)] | ||
pub struct PartialOciConfig { | ||
pub process: PartialOciConfigProcess, | ||
} | ||
|
||
#[derive(Deserialize)] | ||
pub struct PartialOciConfigProcess { | ||
pub args: Vec<String>, | ||
pub env: Vec<String>, | ||
pub user: String, | ||
pub cwd: String, | ||
} |
Oops, something went wrong.