Skip to content

Commit

Permalink
feat: remove pods; implement deployments/stateful sets (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
MicaiahReid authored Oct 9, 2023
1 parent 5d8c5b1 commit 6399c19
Show file tree
Hide file tree
Showing 23 changed files with 813 additions and 282 deletions.
2 changes: 2 additions & 0 deletions src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ const CONTRACT_DIR: &str = "/etc/stacks-network/project/contracts";
#[derive(Serialize, Deserialize, Debug)]
pub struct ValidatedStacksDevnetConfig {
pub namespace: String,
pub user_id: String,
pub devnet_config: DevnetConfig,
pub accounts: BTreeMap<String, AccountConfig>,
pub project_manifest_yaml_string: String,
Expand Down Expand Up @@ -72,6 +73,7 @@ impl StacksDevnetConfig {

Ok(ValidatedStacksDevnetConfig {
namespace: self.namespace,
user_id: user_id.to_owned(),
devnet_config: devnet_config.to_owned(),
accounts: self.network_manifest.accounts,
project_manifest_yaml_string: project_manifest_yaml_string.to_owned(),
Expand Down
Loading

0 comments on commit 6399c19

Please sign in to comment.