mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-22 06:57:48 +00:00
Auto-merge for PR #887 via VersionBot
Add a multicontainer caveat to the env var commands
This commit is contained in:
commit
7b23b0e103
@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file
|
|||||||
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
|
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
|
||||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
|
## v7.5.1 - 2018-06-01
|
||||||
|
|
||||||
|
* Add a multicontainer caveat to the env var commands #887 [Tim Perry]
|
||||||
|
|
||||||
## v7.5.0 - 2018-05-31
|
## v7.5.0 - 2018-05-31
|
||||||
|
|
||||||
* Update resin-compose-parse dependency version to 1.10.2 #883 [Ariel Flesler]
|
* Update resin-compose-parse dependency version to 1.10.2 #883 [Ariel Flesler]
|
||||||
|
@ -571,6 +571,10 @@ This command lists all custom environment variables.
|
|||||||
If you want to see all environment variables, including private
|
If you want to see all environment variables, including private
|
||||||
ones used by resin, use the verbose option.
|
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:
|
Example:
|
||||||
|
|
||||||
$ resin envs --application MyApp
|
$ resin envs --application MyApp
|
||||||
@ -622,6 +626,10 @@ device
|
|||||||
|
|
||||||
Use this command to add an enviroment variable to an application.
|
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
|
If value is omitted, the tool will attempt to use the variable's value
|
||||||
as defined in your host machine.
|
as defined in your host machine.
|
||||||
|
|
||||||
|
@ -28,6 +28,10 @@ exports.list =
|
|||||||
If you want to see all environment variables, including private
|
If you want to see all environment variables, including private
|
||||||
ones used by resin, use the verbose option.
|
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:
|
Example:
|
||||||
|
|
||||||
$ resin envs --application MyApp
|
$ resin envs --application MyApp
|
||||||
@ -118,6 +122,10 @@ exports.add =
|
|||||||
help: '''
|
help: '''
|
||||||
Use this command to add an enviroment variable to an application.
|
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
|
If value is omitted, the tool will attempt to use the variable's value
|
||||||
as defined in your host machine.
|
as defined in your host machine.
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "resin-cli",
|
"name": "resin-cli",
|
||||||
"version": "7.5.0",
|
"version": "7.5.1",
|
||||||
"description": "The official resin.io CLI tool",
|
"description": "The official resin.io CLI tool",
|
||||||
"main": "./build/actions/index.js",
|
"main": "./build/actions/index.js",
|
||||||
"homepage": "https://github.com/resin-io/resin-cli",
|
"homepage": "https://github.com/resin-io/resin-cli",
|
||||||
|
Loading…
Reference in New Issue
Block a user