Add a multicontainer caveat to the env var commands

Change-Type: patch
This commit is contained in:
Tim Perry 2018-05-31 12:43:11 +02:00
parent 16f70fd946
commit da8483e6a6
2 changed files with 16 additions and 0 deletions

View File

@ -571,6 +571,10 @@ This command lists all custom environment variables.
If you want to see all environment variables, including private
ones used by resin, use the verbose option.
At the moment the CLI doesn't fully support multi-container applications,
so the following commands will only show service variables,
without showing which service they belong to.
Example:
$ resin envs --application MyApp
@ -622,6 +626,10 @@ device
Use this command to add an enviroment variable to an application.
At the moment the CLI doesn't fully support multi-container applications,
so the following commands will only set service variables for the first
service in your application.
If value is omitted, the tool will attempt to use the variable's value
as defined in your host machine.

View File

@ -28,6 +28,10 @@ exports.list =
If you want to see all environment variables, including private
ones used by resin, use the verbose option.
At the moment the CLI doesn't fully support multi-container applications,
so the following commands will only show service variables,
without showing which service they belong to.
Example:
$ resin envs --application MyApp
@ -118,6 +122,10 @@ exports.add =
help: '''
Use this command to add an enviroment variable to an application.
At the moment the CLI doesn't fully support multi-container applications,
so the following commands will only set service variables for the first
service in your application.
If value is omitted, the tool will attempt to use the variable's value
as defined in your host machine.