Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
meowjesty committed Dec 25, 2024
1 parent 3083aec commit 6182f1f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions mirrord/operator/src/crd/policy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ pub struct MirrordPolicySpec {
/// List of features and operations blocked by this policy.
pub block: Vec<BlockedFeature>,

/// List of environment variables that should be excluded when using mirrord.
///
/// These environment variables won't be retieved from the target even if the user
/// specifies them in their `feature.env.include` mirrord config.
pub env_vars_exclude: HashSet<String>,
}

Expand Down Expand Up @@ -83,6 +87,10 @@ pub struct MirrordClusterPolicySpec {
/// List of features and operations blocked by this policy.
pub block: Vec<BlockedFeature>,

/// List of environment variables that should be excluded when using mirrord.
///
/// These environment variables won't be retieved from the target even if the user
/// specifies them in their `feature.env.include` mirrord config.
pub env_vars_exclude: HashSet<String>,
}

Expand Down

0 comments on commit 6182f1f

Please sign in to comment.