Enables you to view or change edgeCore configuration values.
Command
bin/es-cli.sh config [--rm] -s scope -k key [-v value]
Options
| Flag | Required | Description |
|---|---|---|
| rm | No | Removes the specified configuration entry. |
Parameters
| Flag | Required | Description |
|---|---|---|
| s | Yes | Scope of the configuration change or view. Limited to “global” or “group:DOMAIN” where DOMAIN is the applicable domain to apply or view the configuration values. |
| k | Yes | The key to select or set within the selected scope. i.e. pipeline.safeSubstitution. |
| v | No | If provided, the key identified will be set to the value. |
Examples
Removes the configuration value pipeline.safeSubstitution from the global domain.
bin/es-cli.sh config --rm -s global -k pipeline.safeSubstitution
Lets you view the configuration value pipeline.safeSubstitution for the global domain.
bin/es-cli.sh config -s global -k pipeline.safeSubstitution
Sets the configuration value pipeline.safeSubstitution for the global domain to the value true.
bin/es-cli.sh config -s global -k pipeline.safeSubstitution -v true