Skip to main content

AirflowClusterWebservers

Struct AirflowClusterWebservers 

Source
pub struct AirflowClusterWebservers {
    pub cli_overrides: Option<BTreeMap<String, String>>,
    pub config: Option<AirflowClusterWebserversConfig>,
    pub config_overrides: Option<BTreeMap<String, BTreeMap<String, String>>>,
    pub env_overrides: Option<BTreeMap<String, String>>,
    pub pod_overrides: Option<BTreeMap<String, Value>>,
    pub role_config: Option<AirflowClusterWebserversRoleConfig>,
    pub role_groups: BTreeMap<String, AirflowClusterWebserversRoleGroups>,
}
Expand description

The webservers role provides the main UI for user interaction.

Fields§

§cli_overrides: Option<BTreeMap<String, String>>§config: Option<AirflowClusterWebserversConfig>§config_overrides: Option<BTreeMap<String, BTreeMap<String, String>>>

The configOverrides can be used to configure properties in product config files that are not exposed in the CRD. Read the [config overrides documentation](https://docs.stackable.tech/home/nightly/concepts/overrides#config-overrides) and consult the operator specific usage guide documentation for details on the available config files and settings for the specific product.

§env_overrides: Option<BTreeMap<String, String>>

envOverrides configure environment variables to be set in the Pods. It is a map from strings to strings - environment variables and the value to set. Read the [environment variable overrides documentation](https://docs.stackable.tech/home/nightly/concepts/overrides#env-overrides) for more information and consult the operator specific usage guide to find out about the product specific environment variables that are available.

§pod_overrides: Option<BTreeMap<String, Value>>

In the podOverrides property you can define a [PodTemplateSpec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.27/#podtemplatespec-v1-core) to override any property that can be set on a Kubernetes Pod. Read the [Pod overrides documentation](https://docs.stackable.tech/home/nightly/concepts/overrides#pod-overrides) for more information.

§role_config: Option<AirflowClusterWebserversRoleConfig>

This is a product-agnostic RoleConfig, which is sufficient for most of the products.

§role_groups: BTreeMap<String, AirflowClusterWebserversRoleGroups>

Trait Implementations§

Source§

impl Clone for AirflowClusterWebservers

Source§

fn clone(&self) -> AirflowClusterWebservers

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for AirflowClusterWebservers

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for AirflowClusterWebservers

Source§

fn default() -> AirflowClusterWebservers

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for AirflowClusterWebservers

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl PartialEq for AirflowClusterWebservers

Source§

fn eq(&self, other: &AirflowClusterWebservers) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl Serialize for AirflowClusterWebservers

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for AirflowClusterWebservers

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.