pub struct IoArgoprojWorkflowV1alpha1SubmitOpts {
pub annotations: Option<String>,
pub dry_run: Option<bool>,
pub entry_point: Option<String>,
pub generate_name: Option<String>,
pub labels: Option<String>,
pub name: Option<String>,
pub owner_reference: Option<IoK8sApimachineryPkgApisMetaV1OwnerReference>,
pub parameters: Vec<String>,
pub pod_priority_class_name: Option<String>,
pub priority: Option<i64>,
pub server_dry_run: Option<bool>,
pub service_account: Option<String>,
}Expand description
SubmitOpts are workflow submission options
Fields§
§annotations: Option<String>Annotations adds to metadata.labels
dry_run: Option<bool>DryRun validates the workflow on the client-side without creating it. This option is not supported in API
entry_point: Option<String>Entrypoint overrides spec.entrypoint
generate_name: Option<String>GenerateName overrides metadata.generateName
labels: Option<String>Labels adds to metadata.labels
name: Option<String>Name overrides metadata.name
owner_reference: Option<IoK8sApimachineryPkgApisMetaV1OwnerReference>OwnerReference creates a metadata.ownerReference
parameters: Vec<String>Parameters passes input parameters to workflow
pod_priority_class_name: Option<String>Set the podPriorityClassName of the workflow
priority: Option<i64>Priority is used if controller is configured to process limited number of workflows in parallel, higher priority workflows are processed first.
server_dry_run: Option<bool>ServerDryRun validates the workflow on the server-side without creating it
service_account: Option<String>ServiceAccount runs all pods in the workflow using specified ServiceAccount.
Trait Implementations§
Source§impl Clone for IoArgoprojWorkflowV1alpha1SubmitOpts
impl Clone for IoArgoprojWorkflowV1alpha1SubmitOpts
Source§fn clone(&self) -> IoArgoprojWorkflowV1alpha1SubmitOpts
fn clone(&self) -> IoArgoprojWorkflowV1alpha1SubmitOpts
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more