You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| --set-name | string | / | Sets the new workflow name and will copy the workflow to space and project supplied |
129
129
| --ci | boolean | false | Enable CI mode (in-progress executions will be stopped when the CLI is forcefully stopped - if not set, you will be asked for confirmation) |
130
130
| --create-project | boolean | false | If the project doesn't exist, create one using the project flag as its name (or workflow/tool name if project flag is not set) |
131
+
| --machines | string | / | Specify the number of machines (format: small-medium-large). Examples: 1-1-1, 0-0-3 |
131
132
132
133
#### Provide parameters using **config.yaml** file
fmt.Println("Please use the format: small-medium-large (e.g., 0-0-3)")
117
+
os.Exit(0)
118
+
}
119
+
}
120
+
90
121
outputNodes:=make([]string, 0)
91
122
ifoutputNodesFlag!="" {
92
123
outputNodes=strings.Split(outputNodesFlag, ",")
@@ -110,6 +141,7 @@ func init() {
110
141
ExecuteCmd.Flags().BoolVar(&showParams, "show-params", false, "Show parameters in the workflow tree")
111
142
// ExecuteCmd.Flags().StringVar(&workflowYAML, "file", "", "Workflow YAML file to execute")
112
143
ExecuteCmd.Flags().BoolVar(&maxMachines, "max", false, "Use maximum number of machines for workflow execution")
144
+
ExecuteCmd.Flags().StringVar(&machineConfiguration, "machines", "", "Specify the number of machines (format: small-medium-large). Examples: 1-1-1, 0-0-3")
113
145
ExecuteCmd.Flags().BoolVar(&downloadAllNodes, "output-all", false, "Download all outputs when the execution is finished")
114
146
ExecuteCmd.Flags().StringVar(&outputNodesFlag, "output", "", "A comma separated list of nodes which outputs should be downloaded when the execution is finished")
115
147
ExecuteCmd.Flags().StringVar(&outputsDirectory, "output-dir", "", "Path to directory which should be used to store outputs")
0 commit comments