1.1X Rescale CLI Basics
Basic Submission Syntax
Once the Rescale CLI App is installed, a job can be submitted using the following command:
rescale-cli submit -p -i
Rescale CLI defaults to the US platform platform.rescale.com. If you are a user on any of the other global platforms (EU, JP, KR, ITAR), please specify your regional platform using the -X flag in your CLI command. For example:
PLATFORM | CLI COMMAND |
EU | rescale-cli -X https://eu.rescale.com submit -p <api-token> -i <input-script> |
Japan | rescale-cli -X https://platform.rescale.jp submit -p <api-token> -i <input-script> |
Korea | rescale-cli -X https://kr.rescale.com submit -p <api-token> -i <input-script> |
ITAR | rescale-cli -X https://itar.rescale.com submit -p <api-token> -i <input-script> |
The contains the commands the user may want to run on Rescale. It can be any kind of .sh
shell script that can be executed from the command line using the ./
prefix. Regardless of the type of script, the App will try to parse the script to minimize inadvertent issues related to environment setup and un-supported commands. The -p
flag is used to read the Rescale APIApplication program interface (API) is a set of routines, pr... Token you created as shown here.