Add environment variable (#390)

This commit is contained in:
pollfly 2022-11-29 14:21:00 +02:00 committed by GitHub
parent f498ad6b77
commit 6480728767
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,32 +13,38 @@ but can be overridden by command-line arguments.
## ClearML SDK Variables ## ClearML SDK Variables
### General ### General
|Name|Description| |Name| Description |
|---|---| |---|--------------------------------------------------------------------------------|
|**CLEARML_LOG_ENVIRONMENT** | List of Environment variables to log| |**CLEARML_LOG_ENVIRONMENT** | List of Environment variables to log |
|**CLEARML_TASK_NO_REUSE** | Control Task reuse| |**CLEARML_TASK_NO_REUSE** | Control Task reuse |
|**CLEARML_CACHE_DIR** | Sets the location of the cache directory| |**CLEARML_CACHE_DIR** | Sets the location of the cache directory |
|**CLEARML_DOCKER_IMAGE** | Sets the default docker image to run from| |**CLEARML_DOCKER_IMAGE** | Sets the default docker image to run from |
|**CLEARML_LOG_LEVEL** | debug / warning / error / info - Sets the ClearML package's log verbosity| |**CLEARML_LOG_LEVEL** | debug / warning / error / info - Sets the ClearML package's log verbosity |
|**CLEARML_SUPPRESS_UPDATE_MESSAGE** | Suppresses the message that notifies users of new ClearML package version| |**CLEARML_SUPPRESS_UPDATE_MESSAGE** | Suppresses the message that notifies users of new ClearML package version |
|**CLEARML_DEFAULT_OUTPUT_URI**| The default output destination for model checkpoints (snapshots) and artifacts |
|**CLEARML_SET_ITERATION_OFFSET**| Initial iteration offset |
### VCS ### VCS
Overrides Repository Auto-logging Overrides Repository Auto-logging
|Name|Description| |Name| Description |
|---|---| |---|--------------------------------|
|**CLEARML_VCS_REPO_URL**| Repository's URL| |**CLEARML_VCS_REPO_URL**| Repository's URL |
|**CLEARML_VCS_COMMIT_ID**| Repository's Commit ID| |**CLEARML_VCS_COMMIT_ID**| Repository's Commit ID |
|**CLEARML_VCS_BRANCH**| Repository's Branch| |**CLEARML_VCS_BRANCH**| Repository's Branch |
|**CLEARML_VCS_ROOT**| Repository's Root directory| |**CLEARML_VCS_ROOT**| Repository's Root directory |
|**CLEARML_VCS_WORK_DIR**| Repository's working directory |
|**CLEARML_VCS_STATUS**| Repository status |
|**CLEARML_VCS_DIFF**| Script diff |
|**CLEARML_VCS_ENTRY_POINT**| Entry point script |
### Server Connection ### Server Connection
|Name|Description| |Name|Description|
|---|---| |---|---|
|**CLEARML_API_HOST** | Sets the API Server URL| |**CLEARML_API_HOST** | Sets the API Server URL|
|**CLEARML_CONFIG_FILE**| Sets the ClearML configuration file. Overrides the default configuration file location | |**CLEARML_CONFIG_FILE**| Sets the ClearML configuration file. Overrides the default configuration file location|
|**CLEARML_WEB_HOST** | Sets the Web UI Server URL| |**CLEARML_WEB_HOST** | Sets the Web UI Server URL|
|**CLEARML_FILES_HOST** | Sets the File Server URL |**CLEARML_FILES_HOST** | Sets the File Server URL|
|**CLEARML_API_ACCESS_KEY** | Sets the Server's Public Access Key| |**CLEARML_API_ACCESS_KEY** | Sets the Server's Public Access Key|
|**CLEARML_API_SECRET_KEY** | Sets the Server's Private Access Key| |**CLEARML_API_SECRET_KEY** | Sets the Server's Private Access Key|
|**CLEARML_API_HOST_VERIFY_CERT**| Enables / Disables server certificate verification (if behind a firewall)| |**CLEARML_API_HOST_VERIFY_CERT**| Enables / Disables server certificate verification (if behind a firewall)|