pub enum AirflowClusterImagePullPolicy {
IfNotPresent,
Always,
Never,
}Expand description
Specify which image to use, the easiest way is to only configure the productVersion.
You can also configure a custom image registry to pull from, as well as completely custom
images.
Consult the [Product image selection documentation](https://docs.stackable.tech/home/nightly/concepts/product_image_selection) for details.
Variants§
Trait Implementations§
Source§impl Clone for AirflowClusterImagePullPolicy
impl Clone for AirflowClusterImagePullPolicy
Source§fn clone(&self) -> AirflowClusterImagePullPolicy
fn clone(&self) -> AirflowClusterImagePullPolicy
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<'de> Deserialize<'de> for AirflowClusterImagePullPolicy
impl<'de> Deserialize<'de> for AirflowClusterImagePullPolicy
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 AirflowClusterImagePullPolicy
Auto Trait Implementations§
impl Freeze for AirflowClusterImagePullPolicy
impl RefUnwindSafe for AirflowClusterImagePullPolicy
impl Send for AirflowClusterImagePullPolicy
impl Sync for AirflowClusterImagePullPolicy
impl Unpin for AirflowClusterImagePullPolicy
impl UnsafeUnpin for AirflowClusterImagePullPolicy
impl UnwindSafe for AirflowClusterImagePullPolicy
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