[−][src]Struct openshift_openapi::api::apps::v1::DeploymentStrategy
DeploymentStrategy describes how to perform a deployment.
Fields
active_deadline_seconds: Option<i64>ActiveDeadlineSeconds is the duration in seconds that the deployer pods for this deployment config may be active on a node before the system actively tries to terminate them.
annotations: Option<BTreeMap<String, String>>Annotations is a set of key, value pairs added to custom deployer and lifecycle pre/post hook pods.
custom_params: Option<CustomDeploymentStrategyParams>CustomParams are the input to the Custom deployment strategy, and may also be specified for the Recreate and Rolling strategies to customize the execution process that runs the deployment.
labels: Option<BTreeMap<String, String>>Labels is a set of key, value pairs added to custom deployer and lifecycle pre/post hook pods.
recreate_params: Option<RecreateDeploymentStrategyParams>RecreateParams are the input to the Recreate deployment strategy.
resources: Option<ResourceRequirements>Resources contains resource requirements to execute the deployment and any hooks.
rolling_params: Option<RollingDeploymentStrategyParams>RollingParams are the input to the Rolling deployment strategy.
type_: Option<String>Type is the name of a deployment strategy.
Trait Implementations
impl Clone for DeploymentStrategy[src]
fn clone(&self) -> DeploymentStrategy[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for DeploymentStrategy[src]
impl Default for DeploymentStrategy[src]
fn default() -> DeploymentStrategy[src]
impl<'de> Deserialize<'de> for DeploymentStrategy[src]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>, [src]
D: Deserializer<'de>,
impl PartialEq<DeploymentStrategy> for DeploymentStrategy[src]
fn eq(&self, other: &DeploymentStrategy) -> bool[src]
fn ne(&self, other: &DeploymentStrategy) -> bool[src]
impl Serialize for DeploymentStrategy[src]
impl StructuralPartialEq for DeploymentStrategy[src]
Auto Trait Implementations
impl RefUnwindSafe for DeploymentStrategy
impl Send for DeploymentStrategy
impl Sync for DeploymentStrategy
impl Unpin for DeploymentStrategy
impl UnwindSafe for DeploymentStrategy
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,