pub struct OperatorConfig {
pub manager_url: Option<String>,
pub token: Option<String>,
pub deployment_id: Option<String>,
pub sync_interval_secs: u64,
pub name: Option<String>,
pub brand: Option<String>,
pub display_name: Option<String>,
pub env_prefix: Option<String>,
pub label_domain: Option<String>,
}Expand description
Configuration embedded in alien-operator binaries.
Fields§
§manager_url: Option<String>Manager URL to connect to.
token: Option<String>Authentication token for the manager API.
deployment_id: Option<String>Deployment ID this operator manages.
sync_interval_secs: u64Sync interval in seconds (default: 30).
name: Option<String>Binary name (e.g., “acme-operator”).
brand: Option<String>Short brand slug used for generated resource names.
display_name: Option<String>Human-friendly display name (e.g., “Acme Operator”).
env_prefix: Option<String>Branded environment variable prefix (e.g., “ACME”).
label_domain: Option<String>Branded Kubernetes/cloud label domain (e.g., “acme.dev”).
Trait Implementations§
Source§impl Clone for OperatorConfig
impl Clone for OperatorConfig
Source§fn clone(&self) -> OperatorConfig
fn clone(&self) -> OperatorConfig
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 OperatorConfig
impl Debug for OperatorConfig
Source§impl<'de> Deserialize<'de> for OperatorConfig
impl<'de> Deserialize<'de> for OperatorConfig
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 OperatorConfig
impl RefUnwindSafe for OperatorConfig
impl Send for OperatorConfig
impl Sync for OperatorConfig
impl Unpin for OperatorConfig
impl UnsafeUnpin for OperatorConfig
impl UnwindSafe for OperatorConfig
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