pub struct ServiceDefinition {
pub name: String,
pub image: String,
pub ports: Vec<ServicePort>,
pub env: HashMap<String, String>,
pub readiness: Option<ReadinessProbe>,
pub command: Vec<String>,
pub args: Vec<String>,
pub memory: Option<String>,
pub cpu: Option<String>,
}Expand description
An infrastructure service that runs alongside workflow steps.
Fields§
§name: StringService name – used as DNS hostname (K8s) or env prefix (containerd).
image: StringContainer image to run.
ports: Vec<ServicePort>Ports exposed by the service.
env: HashMap<String, String>Environment variables for the service container.
readiness: Option<ReadinessProbe>How to check if the service is ready to accept connections.
command: Vec<String>Override the container entrypoint.
args: Vec<String>Override the container command/args.
memory: Option<String>Memory limit (e.g., “512Mi”).
cpu: Option<String>CPU limit (e.g., “500m”).
Trait Implementations§
Source§impl Clone for ServiceDefinition
impl Clone for ServiceDefinition
Source§fn clone(&self) -> ServiceDefinition
fn clone(&self) -> ServiceDefinition
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 ServiceDefinition
impl Debug for ServiceDefinition
Source§impl<'de> Deserialize<'de> for ServiceDefinition
impl<'de> Deserialize<'de> for ServiceDefinition
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 ServiceDefinition
impl RefUnwindSafe for ServiceDefinition
impl Send for ServiceDefinition
impl Sync for ServiceDefinition
impl Unpin for ServiceDefinition
impl UnsafeUnpin for ServiceDefinition
impl UnwindSafe for ServiceDefinition
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