pub struct ArgoCdConfig {
pub cluster_terragrunt: PathBuf,
pub namespace: String,
pub applicationset_path: Option<PathBuf>,
}Expand description
ArgoCD configuration — required for chart-driven vitrine PRs (Pattern A).
Fields§
§cluster_terragrunt: PathBufPath to the cluster’s argocd_cluster terragrunt module.
namespace: StringNamespace where ArgoCD runs (typically “argocd”).
applicationset_path: Option<PathBuf>ApplicationSet generator path (for reconciliation watching).
Trait Implementations§
Source§impl Clone for ArgoCdConfig
impl Clone for ArgoCdConfig
Source§fn clone(&self) -> ArgoCdConfig
fn clone(&self) -> ArgoCdConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ArgoCdConfig
impl Debug for ArgoCdConfig
Source§impl<'de> Deserialize<'de> for ArgoCdConfig
impl<'de> Deserialize<'de> for ArgoCdConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ArgoCdConfig
impl RefUnwindSafe for ArgoCdConfig
impl Send for ArgoCdConfig
impl Sync for ArgoCdConfig
impl Unpin for ArgoCdConfig
impl UnsafeUnpin for ArgoCdConfig
impl UnwindSafe for ArgoCdConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more