pub struct AirflowClusterKubernetesExecutorsConfig {
pub affinity: Option<AirflowClusterKubernetesExecutorsConfigAffinity>,
pub graceful_shutdown_timeout: Option<String>,
pub logging: Option<AirflowClusterKubernetesExecutorsConfigLogging>,
pub resources: Option<AirflowClusterKubernetesExecutorsConfigResources>,
}Fields§
§affinity: Option<AirflowClusterKubernetesExecutorsConfigAffinity>These configuration settings control [Pod placement](https://docs.stackable.tech/home/nightly/concepts/operations/pod_placement).
graceful_shutdown_timeout: Option<String>Time period Pods have to gracefully shut down, e.g. 30m, 1h or 2d. Consult the operator documentation for details.
logging: Option<AirflowClusterKubernetesExecutorsConfigLogging>Logging configuration, learn more in the [logging concept documentation](https://docs.stackable.tech/home/nightly/concepts/logging).
resources: Option<AirflowClusterKubernetesExecutorsConfigResources>Resource usage is configured here, this includes CPU usage, memory usage and disk storage usage, if this role needs any.
Trait Implementations§
Source§impl Clone for AirflowClusterKubernetesExecutorsConfig
impl Clone for AirflowClusterKubernetesExecutorsConfig
Source§fn clone(&self) -> AirflowClusterKubernetesExecutorsConfig
fn clone(&self) -> AirflowClusterKubernetesExecutorsConfig
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 Default for AirflowClusterKubernetesExecutorsConfig
impl Default for AirflowClusterKubernetesExecutorsConfig
Source§fn default() -> AirflowClusterKubernetesExecutorsConfig
fn default() -> AirflowClusterKubernetesExecutorsConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AirflowClusterKubernetesExecutorsConfig
impl<'de> Deserialize<'de> for AirflowClusterKubernetesExecutorsConfig
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
impl StructuralPartialEq for AirflowClusterKubernetesExecutorsConfig
Auto Trait Implementations§
impl Freeze for AirflowClusterKubernetesExecutorsConfig
impl RefUnwindSafe for AirflowClusterKubernetesExecutorsConfig
impl Send for AirflowClusterKubernetesExecutorsConfig
impl Sync for AirflowClusterKubernetesExecutorsConfig
impl Unpin for AirflowClusterKubernetesExecutorsConfig
impl UnsafeUnpin for AirflowClusterKubernetesExecutorsConfig
impl UnwindSafe for AirflowClusterKubernetesExecutorsConfig
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