2020-10-20 21:11:17 +00:00
|
|
|
# balena CLI Documentation
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-10-20 21:11:17 +00:00
|
|
|
The balena CLI is a Command Line Interface for [balenaCloud](https://www.balena.io/cloud/) or
|
2020-09-18 14:35:36 +00:00
|
|
|
[openBalena](https://www.balena.io/open/). It is a software tool available for Windows, macOS and
|
|
|
|
Linux, used through a command prompt / terminal window. It can be used interactively or invoked in
|
2020-10-20 21:11:17 +00:00
|
|
|
scripts. The balena CLI builds on the [balena API](https://www.balena.io/docs/reference/api/overview/)
|
2020-09-18 14:35:36 +00:00
|
|
|
and the [balena SDK](https://www.balena.io/docs/reference/sdk/node-sdk/), and can also be directly
|
2020-10-20 21:11:17 +00:00
|
|
|
imported in Node.js applications. The balena CLI is an [open-source project on
|
2020-09-18 14:35:36 +00:00
|
|
|
GitHub](https://github.com/balena-io/balena-cli/), and your contribution is also welcome!
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2019-04-18 15:49:17 +00:00
|
|
|
## Installation
|
2017-01-18 15:57:52 +00:00
|
|
|
|
2020-10-20 21:11:17 +00:00
|
|
|
Check the [balena CLI installation instructions on
|
2020-09-18 14:35:36 +00:00
|
|
|
GitHub](https://github.com/balena-io/balena-cli/blob/master/INSTALL.md).
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-09-18 14:35:36 +00:00
|
|
|
## Choosing a shell (command prompt/terminal)
|
2018-12-27 20:33:12 +00:00
|
|
|
|
2019-04-29 15:33:09 +00:00
|
|
|
On **Windows,** the standard Command Prompt (`cmd.exe`) and
|
|
|
|
[PowerShell](https://docs.microsoft.com/en-us/powershell/scripting/getting-started/getting-started-with-windows-powershell?view=powershell-6)
|
2020-09-18 14:35:36 +00:00
|
|
|
are supported. Alternative shells include:
|
2018-03-12 19:06:21 +00:00
|
|
|
|
2019-10-09 15:32:54 +00:00
|
|
|
* [MSYS2](https://www.msys2.org/):
|
|
|
|
* Install additional packages with the command:
|
2021-03-22 16:03:44 +00:00
|
|
|
`pacman -S git gcc make openssh p7zip`
|
2019-10-09 15:32:54 +00:00
|
|
|
* [Set a Windows environment variable](https://www.onmsft.com/how-to/how-to-set-an-environment-variable-in-windows-10): `MSYS2_PATH_TYPE=inherit`
|
|
|
|
* Note that a bug in the MSYS2 launch script (`msys2_shell.cmd`) makes text-based interactive CLI
|
|
|
|
menus to break. [Check this Github issue for a
|
|
|
|
workaround](https://github.com/msys2/MINGW-packages/issues/1633#issuecomment-240583890).
|
2021-03-19 15:25:38 +00:00
|
|
|
|
2021-03-22 16:03:44 +00:00
|
|
|
* [MSYS](http://www.mingw.org/wiki/MSYS)
|
2019-05-25 21:11:26 +00:00
|
|
|
* [Git for Windows](https://git-for-windows.github.io/)
|
2019-11-20 23:35:17 +00:00
|
|
|
* During the installation, you will be prompted to choose between _"Use MinTTY"_ and _"Use
|
|
|
|
Windows' default console window"._ Choose the latter, because of the same [MSYS2
|
|
|
|
bug](https://github.com/msys2/MINGW-packages/issues/1633) mentioned above (Git for Windows
|
|
|
|
actually uses MSYS2). For a screenshot, check this
|
|
|
|
[comment](https://github.com/balena-io/balena-cli/issues/598#issuecomment-556513098).
|
2021-03-19 15:25:38 +00:00
|
|
|
|
2019-10-09 15:32:54 +00:00
|
|
|
* Microsoft's [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/about)
|
|
|
|
(WSL). In this case, a Linux distribution like Ubuntu is installed via the Microsoft Store, and a
|
2020-10-20 21:11:17 +00:00
|
|
|
balena CLI release **for Linux** should be selected. See
|
|
|
|
[FAQ](https://github.com/balena-io/balena-cli/blob/master/TROUBLESHOOTING.md) for using the
|
|
|
|
balena CLI with WSL and Docker Desktop for Windows.
|
2018-03-12 19:06:21 +00:00
|
|
|
|
2020-09-18 14:35:36 +00:00
|
|
|
On **macOS** and **Linux,** the standard terminal window is supported. Optionally, `bash` command
|
2019-04-29 15:33:09 +00:00
|
|
|
auto completion may be enabled by copying the
|
|
|
|
[balena-completion.bash](https://github.com/balena-io/balena-cli/blob/master/balena-completion.bash)
|
|
|
|
file to your system's `bash_completion` directory: check [Docker's command completion
|
|
|
|
guide](https://docs.docker.com/compose/completion/) for system setup instructions.
|
|
|
|
|
2020-09-18 14:35:36 +00:00
|
|
|
## Logging in
|
2018-03-12 19:06:21 +00:00
|
|
|
|
2019-04-29 15:33:09 +00:00
|
|
|
Several CLI commands require access to your balenaCloud account, for example in order to push a
|
|
|
|
new release to your application. Those commands require creating a CLI login session by running:
|
2018-03-12 19:06:21 +00:00
|
|
|
|
2019-04-18 15:49:17 +00:00
|
|
|
```sh
|
|
|
|
$ balena login
|
|
|
|
```
|
2018-03-12 19:06:21 +00:00
|
|
|
|
2020-09-18 14:35:36 +00:00
|
|
|
## Proxy support
|
2018-03-12 19:06:21 +00:00
|
|
|
|
2020-01-24 18:43:04 +00:00
|
|
|
HTTP(S) proxies can be configured through any of the following methods, in precedence order
|
|
|
|
(from higher to lower):
|
|
|
|
|
|
|
|
* The `BALENARC_PROXY` environment variable in URL format, with protocol (`http` or `https`),
|
|
|
|
host, port and optionally basic auth. Examples:
|
|
|
|
* `export BALENARC_PROXY='https://bob:secret@proxy.company.com:12345'`
|
|
|
|
* `export BALENARC_PROXY='http://localhost:8000'`
|
|
|
|
|
|
|
|
* The `proxy` setting in the [CLI config
|
|
|
|
file](https://www.npmjs.com/package/balena-settings-client#documentation). It may be:
|
|
|
|
* A string in URL format, e.g. `proxy: 'http://localhost:8000'`
|
|
|
|
* An object in the format:
|
|
|
|
```yaml
|
|
|
|
proxy:
|
|
|
|
protocol: 'http'
|
|
|
|
host: 'proxy.company.com'
|
|
|
|
port: 12345
|
|
|
|
proxyAuth: 'bob:secret'
|
|
|
|
```
|
|
|
|
|
|
|
|
* The `HTTPS_PROXY` and/or `HTTP_PROXY` environment variables, in the same URL format as
|
|
|
|
`BALENARC_PROXY`.
|
|
|
|
|
2020-09-18 14:35:36 +00:00
|
|
|
### Proxy setup for balena ssh
|
2020-09-16 13:53:46 +00:00
|
|
|
|
|
|
|
In order to work behind a proxy server, the `balena ssh` command requires the
|
|
|
|
[`proxytunnel`](http://proxytunnel.sourceforge.net/) package (command-line tool) to be installed.
|
|
|
|
`proxytunnel` is available for Linux distributions like Ubuntu/Debian (`apt install proxytunnel`),
|
|
|
|
and for macOS through [Homebrew](https://brew.sh/). Windows support is limited to the [Windows
|
|
|
|
Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/about) (e.g., by installing
|
|
|
|
Ubuntu through the Microsoft App Store).
|
|
|
|
|
|
|
|
Ensure that the proxy server is configured to allow proxy requests to ssh port 22, using
|
|
|
|
SSL encryption. For example, in the case of the [Squid](http://www.squid-cache.org/) proxy
|
|
|
|
server, it should be configured with the following rules in the `squid.conf` file:
|
|
|
|
`acl SSL_ports port 22`
|
|
|
|
`acl Safe_ports port 22`
|
2020-03-29 22:59:44 +00:00
|
|
|
|
2020-09-18 14:35:36 +00:00
|
|
|
### Proxy exclusion
|
2020-03-29 22:59:44 +00:00
|
|
|
|
|
|
|
The `BALENARC_NO_PROXY` variable may be used to exclude specified destinations from proxying.
|
|
|
|
|
2020-10-20 21:11:17 +00:00
|
|
|
> * This feature requires CLI version 11.30.8 or later. In the case of the npm [installation
|
2020-03-29 22:59:44 +00:00
|
|
|
> option](https://github.com/balena-io/balena-cli/blob/master/INSTALL.md), it also requires
|
|
|
|
> Node.js version 10.16.0 or later.
|
|
|
|
> * To exclude a `balena ssh` target from proxying (IP address or `.local` hostname), the
|
|
|
|
> `--noproxy` option should be specified in addition to the `BALENARC_NO_PROXY` variable.
|
|
|
|
|
|
|
|
By default (if `BALENARC_NO_PROXY` is not defined), all [private IPv4
|
|
|
|
addresses](https://en.wikipedia.org/wiki/Private_network) and `'*.local'` hostnames are excluded
|
|
|
|
from proxying. Other hostnames that resolve to private IPv4 addresses are **not** excluded by
|
|
|
|
default, because matching takes place before name resolution.
|
|
|
|
|
|
|
|
`localhost` and `127.0.0.1` are always excluded from proxying, regardless of the value of
|
|
|
|
BALENARC_NO_PROXY.
|
2020-01-24 18:43:04 +00:00
|
|
|
|
|
|
|
The format of the `BALENARC_NO_PROXY` environment variable is a comma-separated list of patterns
|
|
|
|
that are matched against hostnames or IP addresses. For example:
|
|
|
|
|
|
|
|
```
|
|
|
|
export BALENARC_NO_PROXY='*.local,dev*.mycompany.com,192.168.*'
|
|
|
|
```
|
|
|
|
|
2020-03-29 22:59:44 +00:00
|
|
|
Matched patterns are excluded from proxying. Wildcard expressions are documented at
|
|
|
|
[matcher](https://www.npmjs.com/package/matcher#usage). Matching takes place _before_ name
|
|
|
|
resolution, so a pattern like `'192.168.*'` will **not** match a hostname that resolves to an IP
|
|
|
|
address like `192.168.1.2`.
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2019-04-18 15:49:17 +00:00
|
|
|
## Support, FAQ and troubleshooting
|
2017-04-26 13:16:06 +00:00
|
|
|
|
2020-11-18 00:57:26 +00:00
|
|
|
To learn more, troubleshoot issues, or to contact us for support:
|
2017-04-26 13:16:06 +00:00
|
|
|
|
2020-11-18 00:57:26 +00:00
|
|
|
* Check the [masterclass tutorials](https://www.balena.io/docs/learn/more/masterclasses/overview/)
|
|
|
|
* Check our [FAQ / troubleshooting document](https://github.com/balena-io/balena-cli/blob/master/TROUBLESHOOTING.md)
|
|
|
|
* Ask us a question through the [balenaCloud forum](https://forums.balena.io/c/balena-cloud)
|
|
|
|
|
|
|
|
For CLI bug reports or feature requests, check the
|
|
|
|
[CLI GitHub issues](https://github.com/balena-io/balena-cli/issues/).
|
2017-04-26 13:16:06 +00:00
|
|
|
|
2020-05-11 08:12:27 +00:00
|
|
|
## Deprecation policy
|
|
|
|
|
2020-10-20 21:11:17 +00:00
|
|
|
The balena CLI uses [semver versioning](https://semver.org/), with the concepts
|
2020-05-11 08:12:27 +00:00
|
|
|
of major, minor and patch version releases.
|
|
|
|
|
2020-10-20 21:11:17 +00:00
|
|
|
The latest release of a major version of the balena CLI will remain compatible with
|
2020-09-18 14:35:36 +00:00
|
|
|
the balenaCloud backend services for at least one year from the date when the
|
2020-10-20 21:11:17 +00:00
|
|
|
following major version is released. For example, balena CLI v10.17.5, as the
|
2020-05-11 08:12:27 +00:00
|
|
|
latest v10 release, would remain compatible with the balenaCloud backend for one
|
|
|
|
year from the date when v11.0.0 is released.
|
|
|
|
|
|
|
|
At the end of this period, the older major version is considered deprecated and
|
|
|
|
some of the functionality that depends on balenaCloud services may stop working
|
|
|
|
at any time.
|
2020-10-20 21:11:17 +00:00
|
|
|
Users are encouraged to regularly update the balena CLI to the latest version.
|
2020-05-11 08:12:27 +00:00
|
|
|
|
2017-04-26 13:16:06 +00:00
|
|
|
|
2019-04-18 15:49:17 +00:00
|
|
|
# CLI Command Reference
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2019-04-18 15:49:17 +00:00
|
|
|
- API keys
|
2018-04-04 12:42:57 +00:00
|
|
|
|
2019-02-22 16:37:57 +00:00
|
|
|
- [api-key generate <name>](#api-key-generate-name)
|
2018-04-04 12:42:57 +00:00
|
|
|
|
2015-04-16 13:34:40 +00:00
|
|
|
- Application
|
|
|
|
|
2015-07-07 22:01:25 +00:00
|
|
|
- [apps](#apps)
|
2020-12-09 11:50:26 +00:00
|
|
|
- [app <nameorslug>](#app-nameorslug)
|
2020-04-22 16:08:11 +00:00
|
|
|
- [app create <name>](#app-create-name)
|
2020-12-10 12:30:17 +00:00
|
|
|
- [app purge <application>](#app-purge-application)
|
|
|
|
- [app rename <application> [newname]](#app-rename-application-newname)
|
|
|
|
- [app restart <application>](#app-restart-application)
|
|
|
|
- [app rm <application>](#app-rm-application)
|
2015-04-16 13:34:40 +00:00
|
|
|
|
|
|
|
- Authentication
|
|
|
|
|
2015-11-11 12:45:38 +00:00
|
|
|
- [login](#login)
|
2015-07-07 22:01:25 +00:00
|
|
|
- [logout](#logout)
|
|
|
|
- [whoami](#whoami)
|
2015-04-16 13:34:40 +00:00
|
|
|
|
|
|
|
- Device
|
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
- [devices](#devices)
|
|
|
|
- [devices supported](#devices-supported)
|
|
|
|
- [device <uuid>](#device-uuid)
|
2021-02-23 22:10:52 +00:00
|
|
|
- [device deactivate <uuid>](#device-deactivate-uuid)
|
2020-06-17 13:46:25 +00:00
|
|
|
- [device identify <uuid>](#device-identify-uuid)
|
2020-07-02 13:58:07 +00:00
|
|
|
- [device init](#device-init)
|
2021-02-23 22:10:52 +00:00
|
|
|
- [device local-mode <uuid>](#device-local-mode-uuid)
|
2020-07-15 14:26:31 +00:00
|
|
|
- [device move <uuid(s)>](#device-move-uuid-s)
|
2020-10-14 09:13:47 +00:00
|
|
|
- [device os-update <uuid>](#device-os-update-uuid)
|
|
|
|
- [device public-url <uuid>](#device-public-url-uuid)
|
|
|
|
- [device purge <uuid>](#device-purge-uuid)
|
2020-06-17 13:46:25 +00:00
|
|
|
- [device reboot <uuid>](#device-reboot-uuid)
|
2019-02-22 16:37:57 +00:00
|
|
|
- [device register <application>](#device-register-application)
|
2020-06-17 13:46:25 +00:00
|
|
|
- [device rename <uuid> [newname]](#device-rename-uuid-newname)
|
2020-09-25 09:00:18 +00:00
|
|
|
- [device restart <uuid>](#device-restart-uuid)
|
2020-10-14 09:13:47 +00:00
|
|
|
- [device rm <uuid(s)>](#device-rm-uuid-s)
|
2019-02-22 16:37:57 +00:00
|
|
|
- [device shutdown <uuid>](#device-shutdown-uuid)
|
2015-04-16 13:34:40 +00:00
|
|
|
|
|
|
|
- Environment Variables
|
|
|
|
|
2015-07-07 22:01:25 +00:00
|
|
|
- [envs](#envs)
|
2019-02-22 16:37:57 +00:00
|
|
|
- [env rm <id>](#env-rm-id)
|
2019-04-02 11:26:21 +00:00
|
|
|
- [env add <name> [value]](#env-add-name-value)
|
2020-09-08 11:31:41 +00:00
|
|
|
- [env rename <id> <value>](#env-rename-id-value)
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2018-12-10 21:05:35 +00:00
|
|
|
- Tags
|
|
|
|
|
|
|
|
- [tags](#tags)
|
2020-05-26 09:17:30 +00:00
|
|
|
- [tag rm <tagkey>](#tag-rm-tagkey)
|
|
|
|
- [tag set <tagkey> [value]](#tag-set-tagkey-value)
|
2018-12-10 21:05:35 +00:00
|
|
|
|
2019-06-24 15:51:07 +00:00
|
|
|
- Help and Version
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-09-04 14:34:34 +00:00
|
|
|
- [help [command]](#help-command)
|
2015-07-07 22:01:25 +00:00
|
|
|
- [version](#version)
|
2015-04-16 13:34:40 +00:00
|
|
|
|
|
|
|
- Keys
|
|
|
|
|
2015-07-07 22:01:25 +00:00
|
|
|
- [keys](#keys)
|
2019-02-22 16:37:57 +00:00
|
|
|
- [key <id>](#key-id)
|
|
|
|
- [key add <name> [path]](#key-add-name-path)
|
2020-04-17 13:19:33 +00:00
|
|
|
- [key rm <id>](#key-rm-id)
|
2015-04-16 13:34:40 +00:00
|
|
|
|
|
|
|
- Logs
|
|
|
|
|
2020-07-01 13:52:33 +00:00
|
|
|
- [logs <device>](#logs-device)
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2019-06-05 22:17:59 +00:00
|
|
|
- Network
|
2016-04-24 19:52:41 +00:00
|
|
|
|
2019-06-05 22:17:59 +00:00
|
|
|
- [scan](#scan)
|
2020-09-04 14:34:34 +00:00
|
|
|
- [ssh <applicationordevice> [service]](#ssh-applicationordevice-service)
|
2020-06-29 12:45:32 +00:00
|
|
|
- [tunnel <deviceorapplication>](#tunnel-deviceorapplication)
|
2016-04-24 19:52:41 +00:00
|
|
|
|
2015-04-16 13:34:40 +00:00
|
|
|
- Notes
|
|
|
|
|
2019-02-22 16:37:57 +00:00
|
|
|
- [note <|note>](#note-note)
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2015-09-29 17:03:14 +00:00
|
|
|
- OS
|
|
|
|
|
2019-02-22 16:37:57 +00:00
|
|
|
- [os versions <type>](#os-versions-type)
|
|
|
|
- [os download <type>](#os-download-type)
|
|
|
|
- [os build-config <image> <device-type>](#os-build-config-image-device-type)
|
|
|
|
- [os configure <image>](#os-configure-image)
|
|
|
|
- [os initialize <image>](#os-initialize-image)
|
2015-09-29 17:03:14 +00:00
|
|
|
|
2015-11-10 16:53:34 +00:00
|
|
|
- Config
|
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
- [config generate](#config-generate)
|
2019-02-22 16:37:57 +00:00
|
|
|
- [config inject <file>](#config-inject-file)
|
2020-07-28 12:40:47 +00:00
|
|
|
- [config read](#config-read)
|
2015-11-11 14:38:45 +00:00
|
|
|
- [config reconfigure](#config-reconfigure)
|
2020-07-28 12:40:47 +00:00
|
|
|
- [config write <key> <value>](#config-write-key-value)
|
2015-11-10 16:53:34 +00:00
|
|
|
|
2017-10-25 11:17:07 +00:00
|
|
|
- Preload
|
|
|
|
|
2019-02-22 16:37:57 +00:00
|
|
|
- [preload <image>](#preload-image)
|
2017-10-25 11:17:07 +00:00
|
|
|
|
2018-06-26 16:59:44 +00:00
|
|
|
- Push
|
|
|
|
|
2020-07-24 12:25:46 +00:00
|
|
|
- [push <applicationordevice>](#push-applicationordevice)
|
2018-06-26 16:59:44 +00:00
|
|
|
|
2020-03-25 17:07:17 +00:00
|
|
|
- Settings
|
|
|
|
|
|
|
|
- [settings](#settings)
|
|
|
|
|
2017-04-11 13:25:54 +00:00
|
|
|
- Local
|
|
|
|
|
2020-07-09 13:38:04 +00:00
|
|
|
- [local configure <target>](#local-configure-target)
|
2020-07-10 11:27:55 +00:00
|
|
|
- [local flash <image>](#local-flash-image)
|
2017-04-11 13:25:54 +00:00
|
|
|
|
2017-04-26 12:34:40 +00:00
|
|
|
- Deploy
|
|
|
|
|
2019-02-22 16:37:57 +00:00
|
|
|
- [build [source]](#build-source)
|
2020-08-21 08:57:14 +00:00
|
|
|
- [deploy <appname> [image]](#deploy-appname-image)
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2018-11-14 22:26:14 +00:00
|
|
|
- Platform
|
|
|
|
|
2020-04-09 14:34:24 +00:00
|
|
|
- [join [deviceiporhostname]](#join-deviceiporhostname)
|
|
|
|
- [leave [deviceiporhostname]](#leave-deviceiporhostname)
|
2018-11-14 22:26:14 +00:00
|
|
|
|
2017-06-14 21:23:39 +00:00
|
|
|
- Utilities
|
|
|
|
|
|
|
|
- [util available-drives](#util-available-drives)
|
|
|
|
|
2020-09-25 09:00:18 +00:00
|
|
|
- Support
|
|
|
|
|
|
|
|
- [support <action>](#support-action)
|
|
|
|
|
2019-04-18 15:49:17 +00:00
|
|
|
# API keys
|
2018-04-04 12:42:57 +00:00
|
|
|
|
|
|
|
## api-key generate <name>
|
|
|
|
|
2020-04-22 11:47:12 +00:00
|
|
|
Generate a new balenaCloud API key for the current user, with the given
|
2018-04-04 12:42:57 +00:00
|
|
|
name. The key will be logged to the console.
|
|
|
|
|
2018-10-19 14:38:50 +00:00
|
|
|
This key can be used to log into the CLI using 'balena login --token <key>',
|
2018-04-04 12:42:57 +00:00
|
|
|
or to authenticate requests to the API with an 'Authorization: Bearer <key>' header.
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
2018-10-19 14:38:50 +00:00
|
|
|
$ balena api-key generate "Jenkins Key"
|
2018-04-04 12:42:57 +00:00
|
|
|
|
2020-04-22 11:47:12 +00:00
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### NAME
|
|
|
|
|
|
|
|
the API key name
|
|
|
|
|
|
|
|
### Options
|
|
|
|
|
2015-04-16 13:34:40 +00:00
|
|
|
# Application
|
2015-04-16 14:42:09 +00:00
|
|
|
|
2020-04-22 16:08:11 +00:00
|
|
|
## apps
|
|
|
|
|
|
|
|
list all your balena applications.
|
|
|
|
|
|
|
|
For detailed information on a particular application,
|
2020-12-10 12:30:17 +00:00
|
|
|
use `balena app <application>` instead.
|
2020-04-22 16:08:11 +00:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
$ balena apps
|
|
|
|
|
|
|
|
### Options
|
|
|
|
|
2020-05-13 14:45:22 +00:00
|
|
|
#### -v, --verbose
|
|
|
|
|
2020-06-15 22:52:58 +00:00
|
|
|
No-op since release v12.0.0
|
2020-05-13 14:45:22 +00:00
|
|
|
|
2020-12-09 11:50:26 +00:00
|
|
|
## app <nameOrSlug>
|
2020-04-22 16:08:11 +00:00
|
|
|
|
|
|
|
Display detailed information about a single balena application.
|
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
Applications may be specified by app name, slug, or numeric ID. App slugs
|
|
|
|
are the recommended option, as they are unique and unambiguous. Slugs
|
|
|
|
can be listed with the `balena apps` command. Note that slugs may change
|
|
|
|
if the application is renamed.
|
|
|
|
App names are not unique and may result in "Application is ambiguous" errors
|
|
|
|
at any time (even if it "used to work in the past"), for example if the name
|
|
|
|
clashes with a newly created public application, or with apps from other balena
|
|
|
|
accounts that you may have been invited to as a member. For this reason, app
|
|
|
|
names are especially discouraged in scripts (e.g. CI environments).
|
|
|
|
Numeric app IDs are deprecated because they consist of an implementation detail
|
|
|
|
of the balena backend. We intend to remove support for numeric IDs at some point
|
|
|
|
in the future.
|
|
|
|
|
2020-04-22 16:08:11 +00:00
|
|
|
Examples:
|
|
|
|
|
|
|
|
$ balena app MyApp
|
2020-12-09 11:50:26 +00:00
|
|
|
$ balena app myorg/myapp
|
2020-04-22 16:08:11 +00:00
|
|
|
|
|
|
|
### Arguments
|
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
#### APPLICATION
|
2020-04-22 16:08:11 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
application name, slug (preferred), or numeric ID (deprecated)
|
2020-04-22 16:08:11 +00:00
|
|
|
|
|
|
|
### Options
|
|
|
|
|
2018-03-20 17:43:26 +00:00
|
|
|
## app create <name>
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-04-22 16:08:11 +00:00
|
|
|
Create a new balena application.
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-12-09 15:05:12 +00:00
|
|
|
You can specify the organization the application should belong to using
|
|
|
|
the `--organization` option. The organization's handle, not its name,
|
|
|
|
should be provided. Organization handles can be listed with the
|
|
|
|
`balena orgs` command.
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-12-09 15:05:12 +00:00
|
|
|
The application's default device type is specified with the `--type` option.
|
|
|
|
The `balena devices supported` command can be used to list the available
|
|
|
|
device types.
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-12-09 15:05:12 +00:00
|
|
|
Interactive dropdowns will be shown for selection if no device type or
|
|
|
|
organization is specified and there are multiple options to choose from.
|
|
|
|
If there is a single option to choose from, it will be chosen automatically.
|
|
|
|
This interactive behavior can be disabled by explicitly specifying a device
|
|
|
|
type and organization.
|
2015-04-16 13:34:40 +00:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
2018-10-19 14:38:50 +00:00
|
|
|
$ balena app create MyApp
|
2020-12-09 15:05:12 +00:00
|
|
|
$ balena app create MyApp --organization mmyorg
|
|
|
|
$ balena app create MyApp -o myorg --type raspberry-pi
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-04-22 16:08:11 +00:00
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### NAME
|
|
|
|
|
|
|
|
application name
|
|
|
|
|
2015-04-16 13:34:40 +00:00
|
|
|
### Options
|
|
|
|
|
2020-12-09 15:05:12 +00:00
|
|
|
#### -o, --organization ORGANIZATION
|
|
|
|
|
|
|
|
handle of the organization the application should belong to
|
|
|
|
|
2020-04-22 16:08:11 +00:00
|
|
|
#### -t, --type TYPE
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2018-10-19 14:38:50 +00:00
|
|
|
application device type (Check available types with `balena devices supported`)
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
## app purge <application>
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-10-14 10:02:02 +00:00
|
|
|
Purge data from all devices belonging to an application.
|
|
|
|
This will clear the application's /data directory.
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
Applications may be specified by app name, slug, or numeric ID. App slugs
|
|
|
|
are the recommended option, as they are unique and unambiguous. Slugs
|
|
|
|
can be listed with the `balena apps` command. Note that slugs may change
|
|
|
|
if the application is renamed.
|
|
|
|
App names are not unique and may result in "Application is ambiguous" errors
|
|
|
|
at any time (even if it "used to work in the past"), for example if the name
|
|
|
|
clashes with a newly created public application, or with apps from other balena
|
|
|
|
accounts that you may have been invited to as a member. For this reason, app
|
|
|
|
names are especially discouraged in scripts (e.g. CI environments).
|
|
|
|
Numeric app IDs are deprecated because they consist of an implementation detail
|
|
|
|
of the balena backend. We intend to remove support for numeric IDs at some point
|
|
|
|
in the future.
|
|
|
|
|
2015-04-16 13:34:40 +00:00
|
|
|
Examples:
|
|
|
|
|
2020-10-14 10:02:02 +00:00
|
|
|
$ balena app purge MyApp
|
2020-12-10 12:30:17 +00:00
|
|
|
$ balena app purge myorg/myapp
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-04-22 16:08:11 +00:00
|
|
|
### Arguments
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
#### APPLICATION
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
application name, slug (preferred), or numeric ID (deprecated)
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-04-22 16:08:11 +00:00
|
|
|
### Options
|
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
## app rename <application> [newName]
|
2020-09-25 09:00:18 +00:00
|
|
|
|
|
|
|
Rename an application.
|
|
|
|
|
|
|
|
Note, if the `newName` parameter is omitted, it will be
|
|
|
|
prompted for interactively.
|
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
Applications may be specified by app name, slug, or numeric ID. App slugs
|
|
|
|
are the recommended option, as they are unique and unambiguous. Slugs
|
|
|
|
can be listed with the `balena apps` command. Note that slugs may change
|
|
|
|
if the application is renamed.
|
|
|
|
App names are not unique and may result in "Application is ambiguous" errors
|
|
|
|
at any time (even if it "used to work in the past"), for example if the name
|
|
|
|
clashes with a newly created public application, or with apps from other balena
|
|
|
|
accounts that you may have been invited to as a member. For this reason, app
|
|
|
|
names are especially discouraged in scripts (e.g. CI environments).
|
|
|
|
Numeric app IDs are deprecated because they consist of an implementation detail
|
|
|
|
of the balena backend. We intend to remove support for numeric IDs at some point
|
|
|
|
in the future.
|
|
|
|
|
2020-09-25 09:00:18 +00:00
|
|
|
Examples:
|
|
|
|
|
|
|
|
$ balena app rename OldName
|
|
|
|
$ balena app rename OldName NewName
|
2020-12-09 15:55:00 +00:00
|
|
|
$ balena app rename myorg/oldname NewName
|
2020-09-25 09:00:18 +00:00
|
|
|
|
|
|
|
### Arguments
|
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
#### APPLICATION
|
2020-09-25 09:00:18 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
application name, slug (preferred), or numeric ID (deprecated)
|
2020-09-25 09:00:18 +00:00
|
|
|
|
|
|
|
#### NEWNAME
|
|
|
|
|
|
|
|
the new name for the application
|
|
|
|
|
|
|
|
### Options
|
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
## app restart <application>
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-10-14 10:02:02 +00:00
|
|
|
Restart all devices belonging to an application.
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
Applications may be specified by app name, slug, or numeric ID. App slugs
|
|
|
|
are the recommended option, as they are unique and unambiguous. Slugs
|
|
|
|
can be listed with the `balena apps` command. Note that slugs may change
|
|
|
|
if the application is renamed.
|
|
|
|
App names are not unique and may result in "Application is ambiguous" errors
|
|
|
|
at any time (even if it "used to work in the past"), for example if the name
|
|
|
|
clashes with a newly created public application, or with apps from other balena
|
|
|
|
accounts that you may have been invited to as a member. For this reason, app
|
|
|
|
names are especially discouraged in scripts (e.g. CI environments).
|
|
|
|
Numeric app IDs are deprecated because they consist of an implementation detail
|
|
|
|
of the balena backend. We intend to remove support for numeric IDs at some point
|
|
|
|
in the future.
|
|
|
|
|
2015-04-16 13:34:40 +00:00
|
|
|
Examples:
|
|
|
|
|
2018-10-19 14:38:50 +00:00
|
|
|
$ balena app restart MyApp
|
2020-12-10 12:30:17 +00:00
|
|
|
$ balena app restart myorg/myapp
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-04-22 16:08:11 +00:00
|
|
|
### Arguments
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
#### APPLICATION
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
application name, slug (preferred), or numeric ID (deprecated)
|
2015-04-16 13:34:40 +00:00
|
|
|
|
|
|
|
### Options
|
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
## app rm <application>
|
2020-10-14 10:02:02 +00:00
|
|
|
|
|
|
|
Permanently remove a balena application.
|
|
|
|
|
|
|
|
The --yes option may be used to avoid interactive confirmation.
|
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
Applications may be specified by app name, slug, or numeric ID. App slugs
|
|
|
|
are the recommended option, as they are unique and unambiguous. Slugs
|
|
|
|
can be listed with the `balena apps` command. Note that slugs may change
|
|
|
|
if the application is renamed.
|
|
|
|
App names are not unique and may result in "Application is ambiguous" errors
|
|
|
|
at any time (even if it "used to work in the past"), for example if the name
|
|
|
|
clashes with a newly created public application, or with apps from other balena
|
|
|
|
accounts that you may have been invited to as a member. For this reason, app
|
|
|
|
names are especially discouraged in scripts (e.g. CI environments).
|
|
|
|
Numeric app IDs are deprecated because they consist of an implementation detail
|
|
|
|
of the balena backend. We intend to remove support for numeric IDs at some point
|
|
|
|
in the future.
|
|
|
|
|
2020-10-14 10:02:02 +00:00
|
|
|
Examples:
|
|
|
|
|
|
|
|
$ balena app rm MyApp
|
|
|
|
$ balena app rm MyApp --yes
|
2020-12-10 12:30:17 +00:00
|
|
|
$ balena app rm myorg/myapp
|
2020-10-14 10:02:02 +00:00
|
|
|
|
|
|
|
### Arguments
|
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
#### APPLICATION
|
2020-10-14 10:02:02 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
application name, slug (preferred), or numeric ID (deprecated)
|
2020-10-14 10:02:02 +00:00
|
|
|
|
|
|
|
### Options
|
|
|
|
|
|
|
|
#### -y, --yes
|
|
|
|
|
|
|
|
answer "yes" to all questions (non interactive use)
|
|
|
|
|
2015-11-11 12:45:38 +00:00
|
|
|
# Authentication
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2018-03-20 17:43:26 +00:00
|
|
|
## login
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-06-23 10:01:31 +00:00
|
|
|
Login to your balena account.
|
2015-06-02 16:32:35 +00:00
|
|
|
|
2016-01-12 13:07:15 +00:00
|
|
|
This command will prompt you to login using the following login types:
|
|
|
|
|
2020-06-23 10:01:31 +00:00
|
|
|
- Web authorization: open your web browser and prompt to authorize the CLI
|
2015-12-03 14:22:22 +00:00
|
|
|
from the dashboard.
|
|
|
|
|
2016-01-12 13:07:15 +00:00
|
|
|
- Credentials: using email/password and 2FA.
|
2015-12-03 14:22:22 +00:00
|
|
|
|
2018-11-07 15:16:13 +00:00
|
|
|
- Token: using a session token or API key from the preferences page.
|
2015-12-12 04:09:31 +00:00
|
|
|
|
2015-04-16 13:34:40 +00:00
|
|
|
Examples:
|
|
|
|
|
2018-10-19 14:38:50 +00:00
|
|
|
$ balena login
|
|
|
|
$ balena login --web
|
|
|
|
$ balena login --token "..."
|
|
|
|
$ balena login --credentials
|
|
|
|
$ balena login --credentials --email johndoe@gmail.com --password secret
|
2015-12-03 14:22:22 +00:00
|
|
|
|
2020-06-23 10:01:31 +00:00
|
|
|
### Arguments
|
2015-12-03 14:22:22 +00:00
|
|
|
|
2020-06-23 10:01:31 +00:00
|
|
|
#### TOKEN
|
2015-12-03 14:22:22 +00:00
|
|
|
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-06-23 10:01:31 +00:00
|
|
|
|
|
|
|
### Options
|
|
|
|
|
|
|
|
#### -w, --web
|
2016-01-12 13:07:15 +00:00
|
|
|
|
|
|
|
web-based login
|
|
|
|
|
2020-06-23 10:01:31 +00:00
|
|
|
#### -t, --token
|
|
|
|
|
|
|
|
session token or API key
|
|
|
|
|
|
|
|
#### -c, --credentials
|
2015-12-12 04:09:31 +00:00
|
|
|
|
|
|
|
credential-based login
|
|
|
|
|
2020-06-23 10:01:31 +00:00
|
|
|
#### -e, --email EMAIL
|
2015-12-12 04:09:31 +00:00
|
|
|
|
|
|
|
email
|
|
|
|
|
2020-06-23 10:01:31 +00:00
|
|
|
#### -u, --user USER
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#### -p, --password PASSWORD
|
2015-12-12 04:09:31 +00:00
|
|
|
|
|
|
|
password
|
|
|
|
|
2020-08-01 00:07:43 +00:00
|
|
|
#### -P, --port PORT
|
|
|
|
|
|
|
|
TCP port number of local HTTP login server (--web auth only)
|
|
|
|
|
2018-03-20 17:43:26 +00:00
|
|
|
## logout
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-06-23 10:01:31 +00:00
|
|
|
Logout from your balena account.
|
2015-04-16 13:34:40 +00:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
2018-10-19 14:38:50 +00:00
|
|
|
$ balena logout
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2018-03-20 17:43:26 +00:00
|
|
|
## whoami
|
2015-04-27 14:51:26 +00:00
|
|
|
|
2020-06-23 10:01:31 +00:00
|
|
|
Get the username and email address of the currently logged in user.
|
2015-04-27 14:51:26 +00:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
2018-10-19 14:38:50 +00:00
|
|
|
$ balena whoami
|
2015-04-27 14:51:26 +00:00
|
|
|
|
2015-04-16 13:34:40 +00:00
|
|
|
# Device
|
2015-04-16 14:42:09 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
## devices
|
|
|
|
|
|
|
|
list all devices that belong to you.
|
|
|
|
|
|
|
|
You can filter the devices by application by using the `--application` option.
|
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
Applications may be specified by app name, slug, or numeric ID. App slugs
|
|
|
|
are the recommended option, as they are unique and unambiguous. Slugs
|
|
|
|
can be listed with the `balena apps` command. Note that slugs may change
|
|
|
|
if the application is renamed.
|
|
|
|
App names are not unique and may result in "Application is ambiguous" errors
|
|
|
|
at any time (even if it "used to work in the past"), for example if the name
|
|
|
|
clashes with a newly created public application, or with apps from other balena
|
|
|
|
accounts that you may have been invited to as a member. For this reason, app
|
|
|
|
names are especially discouraged in scripts (e.g. CI environments).
|
|
|
|
Numeric app IDs are deprecated because they consist of an implementation detail
|
|
|
|
of the balena backend. We intend to remove support for numeric IDs at some point
|
|
|
|
in the future.
|
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
The --json option is recommended when scripting the output of this command,
|
|
|
|
because field names are less likely to change in JSON format and because it
|
2020-10-27 21:12:49 +00:00
|
|
|
better represents data types like arrays, empty strings and null values.
|
|
|
|
The 'jq' utility may be helpful for querying JSON fields in shell scripts
|
|
|
|
(https://stedolan.github.io/jq/manual/).
|
2020-10-14 09:13:47 +00:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
$ balena devices
|
|
|
|
$ balena devices --application MyApp
|
|
|
|
$ balena devices --app MyApp
|
|
|
|
$ balena devices -a MyApp
|
2020-12-10 12:30:17 +00:00
|
|
|
$ balena devices -a myorg/myapp
|
2020-10-14 09:13:47 +00:00
|
|
|
|
|
|
|
### Options
|
|
|
|
|
|
|
|
#### -a, --application APPLICATION
|
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
application name, slug (preferred), or numeric ID (deprecated)
|
2020-10-14 09:13:47 +00:00
|
|
|
|
|
|
|
#### --app APP
|
|
|
|
|
|
|
|
same as '--application'
|
|
|
|
|
|
|
|
#### -j, --json
|
|
|
|
|
|
|
|
produce JSON output instead of tabular output
|
|
|
|
|
|
|
|
## devices supported
|
|
|
|
|
|
|
|
List the supported device types (like 'raspberrypi3' or 'intel-nuc').
|
|
|
|
|
|
|
|
The --verbose option adds extra columns/fields to the output, including the
|
|
|
|
"STATE" column whose values are one of 'new', 'released' or 'discontinued'.
|
|
|
|
However, 'discontinued' device types are only listed if the '--discontinued'
|
|
|
|
option is used.
|
|
|
|
|
|
|
|
The --json option is recommended when scripting the output of this command,
|
|
|
|
because the JSON format is less likely to change and it better represents data
|
|
|
|
types like lists and empty strings (for example, the ALIASES column contains a
|
|
|
|
list of zero or more values). The 'jq' utility may be helpful in shell scripts
|
|
|
|
(https://stedolan.github.io/jq/manual/).
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
$ balena devices supported
|
|
|
|
$ balena devices supported --verbose
|
|
|
|
$ balena devices supported -vj
|
|
|
|
|
|
|
|
### Options
|
|
|
|
|
|
|
|
#### --discontinued
|
|
|
|
|
|
|
|
include "discontinued" device types
|
|
|
|
|
|
|
|
#### -j, --json
|
|
|
|
|
|
|
|
produce JSON output instead of tabular output
|
|
|
|
|
|
|
|
#### -v, --verbose
|
|
|
|
|
|
|
|
add extra columns in the tabular output (ALIASES, ARCH, STATE)
|
|
|
|
|
|
|
|
## device <uuid>
|
|
|
|
|
|
|
|
Show information about a single device.
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
$ balena device 7cf02a6
|
|
|
|
|
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### UUID
|
|
|
|
|
|
|
|
the device uuid
|
|
|
|
|
|
|
|
### Options
|
|
|
|
|
2021-02-23 22:10:52 +00:00
|
|
|
## device deactivate <uuid>
|
|
|
|
|
|
|
|
Deactivate a device.
|
|
|
|
|
|
|
|
Note this command asks for confirmation interactively.
|
|
|
|
You can avoid this by passing the `--yes` option.
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
$ balena device deactivate 7cf02a6
|
|
|
|
$ balena device deactivate 7cf02a6 --yes
|
|
|
|
|
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### UUID
|
|
|
|
|
|
|
|
the UUID of the device to be deactivated
|
|
|
|
|
|
|
|
### Options
|
|
|
|
|
|
|
|
#### -y, --yes
|
|
|
|
|
|
|
|
answer "yes" to all questions (non interactive use)
|
|
|
|
|
2020-07-02 13:58:07 +00:00
|
|
|
## device identify <uuid>
|
|
|
|
|
|
|
|
Identify a device by making the ACT LED blink (Raspberry Pi).
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
$ balena device identify 23c73a1
|
|
|
|
|
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### UUID
|
|
|
|
|
|
|
|
the uuid of the device to identify
|
|
|
|
|
|
|
|
### Options
|
|
|
|
|
2020-06-17 13:46:25 +00:00
|
|
|
## device init
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
Initialize a device by downloading the OS image of a certain application
|
2020-07-02 13:58:07 +00:00
|
|
|
and writing it to an SD Card.
|
2015-04-27 15:20:53 +00:00
|
|
|
|
2020-07-02 13:58:07 +00:00
|
|
|
Note, if the application option is omitted it will be prompted
|
|
|
|
for interactively.
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
Applications may be specified by app name, slug, or numeric ID. App slugs
|
|
|
|
are the recommended option, as they are unique and unambiguous. Slugs
|
|
|
|
can be listed with the `balena apps` command. Note that slugs may change
|
|
|
|
if the application is renamed.
|
|
|
|
App names are not unique and may result in "Application is ambiguous" errors
|
|
|
|
at any time (even if it "used to work in the past"), for example if the name
|
|
|
|
clashes with a newly created public application, or with apps from other balena
|
|
|
|
accounts that you may have been invited to as a member. For this reason, app
|
|
|
|
names are especially discouraged in scripts (e.g. CI environments).
|
|
|
|
Numeric app IDs are deprecated because they consist of an implementation detail
|
|
|
|
of the balena backend. We intend to remove support for numeric IDs at some point
|
|
|
|
in the future.
|
|
|
|
|
2015-04-16 13:34:40 +00:00
|
|
|
Examples:
|
|
|
|
|
2020-06-17 13:46:25 +00:00
|
|
|
$ balena device init
|
|
|
|
$ balena device init --application MyApp
|
2020-12-10 12:30:17 +00:00
|
|
|
$ balena device init -a myorg/myapp
|
2015-04-16 13:34:40 +00:00
|
|
|
|
|
|
|
### Options
|
|
|
|
|
2020-07-02 13:58:07 +00:00
|
|
|
#### -a, --application APPLICATION
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
application name, slug (preferred), or numeric ID (deprecated)
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-07-02 13:58:07 +00:00
|
|
|
#### --app APP
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-07-02 13:58:07 +00:00
|
|
|
same as '--application'
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-07-02 13:58:07 +00:00
|
|
|
#### -y, --yes
|
|
|
|
|
|
|
|
answer "yes" to all questions (non interactive use)
|
|
|
|
|
|
|
|
#### -v, --advanced
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-06-17 13:46:25 +00:00
|
|
|
show advanced configuration options
|
2015-09-29 18:33:31 +00:00
|
|
|
|
2020-07-02 13:58:07 +00:00
|
|
|
#### --os-version OS-VERSION
|
2015-09-29 18:33:31 +00:00
|
|
|
|
2020-06-17 13:46:25 +00:00
|
|
|
exact version number, or a valid semver range,
|
|
|
|
or 'latest' (includes pre-releases),
|
|
|
|
or 'default' (excludes pre-releases if at least one stable version is available),
|
|
|
|
or 'recommended' (excludes pre-releases, will fail if only pre-release versions are available),
|
|
|
|
or 'menu' (will show the interactive menu)
|
2015-09-29 18:33:31 +00:00
|
|
|
|
2020-07-02 13:58:07 +00:00
|
|
|
#### -d, --drive DRIVE
|
2015-09-29 18:33:31 +00:00
|
|
|
|
2020-07-15 19:13:18 +00:00
|
|
|
the drive to write the image to, eg. `/dev/sdb` or `/dev/mmcblk0`.
|
|
|
|
Careful with this as you can erase your hard drive.
|
|
|
|
Check `balena util available-drives` for available options.
|
2015-10-19 18:16:47 +00:00
|
|
|
|
2020-07-02 13:58:07 +00:00
|
|
|
#### --config CONFIG
|
2015-10-19 18:16:47 +00:00
|
|
|
|
2020-06-17 13:46:25 +00:00
|
|
|
path to the config JSON file, see `balena os build-config`
|
2015-10-19 18:16:47 +00:00
|
|
|
|
2021-02-23 22:10:52 +00:00
|
|
|
## device local-mode <uuid>
|
|
|
|
|
|
|
|
Output current local mode status, or enable/disable local mode
|
|
|
|
for specified device.
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
$ balena device local-mode 23c73a1
|
|
|
|
$ balena device local-mode 23c73a1 --enable
|
|
|
|
$ balena device local-mode 23c73a1 --disable
|
|
|
|
$ balena device local-mode 23c73a1 --status
|
|
|
|
|
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### UUID
|
|
|
|
|
|
|
|
the uuid of the device to manage
|
|
|
|
|
|
|
|
### Options
|
|
|
|
|
|
|
|
#### --enable
|
|
|
|
|
|
|
|
enable local mode
|
|
|
|
|
|
|
|
#### --disable
|
|
|
|
|
|
|
|
disable local mode
|
|
|
|
|
|
|
|
#### --status
|
|
|
|
|
|
|
|
output boolean indicating local mode status
|
|
|
|
|
2020-07-15 14:26:31 +00:00
|
|
|
## device move <uuid(s)>
|
2020-06-17 13:46:25 +00:00
|
|
|
|
2020-07-15 14:26:31 +00:00
|
|
|
Move one or more devices to another application.
|
2020-06-17 13:46:25 +00:00
|
|
|
|
|
|
|
Note, if the application option is omitted it will be prompted
|
|
|
|
for interactively.
|
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
Applications may be specified by app name, slug, or numeric ID. App slugs
|
|
|
|
are the recommended option, as they are unique and unambiguous. Slugs
|
|
|
|
can be listed with the `balena apps` command. Note that slugs may change
|
|
|
|
if the application is renamed.
|
|
|
|
App names are not unique and may result in "Application is ambiguous" errors
|
|
|
|
at any time (even if it "used to work in the past"), for example if the name
|
|
|
|
clashes with a newly created public application, or with apps from other balena
|
|
|
|
accounts that you may have been invited to as a member. For this reason, app
|
|
|
|
names are especially discouraged in scripts (e.g. CI environments).
|
|
|
|
Numeric app IDs are deprecated because they consist of an implementation detail
|
|
|
|
of the balena backend. We intend to remove support for numeric IDs at some point
|
|
|
|
in the future.
|
|
|
|
|
2020-06-17 13:46:25 +00:00
|
|
|
Examples:
|
|
|
|
|
|
|
|
$ balena device move 7cf02a6
|
2020-07-15 14:26:31 +00:00
|
|
|
$ balena device move 7cf02a6,dc39e52
|
2020-06-17 13:46:25 +00:00
|
|
|
$ balena device move 7cf02a6 --application MyNewApp
|
2020-12-10 12:30:17 +00:00
|
|
|
$ balena device move 7cf02a6 -a myorg/mynewapp
|
2020-06-17 13:46:25 +00:00
|
|
|
|
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### UUID
|
|
|
|
|
2020-07-15 14:26:31 +00:00
|
|
|
comma-separated list (no blank spaces) of device UUIDs to be moved
|
2020-06-17 13:46:25 +00:00
|
|
|
|
|
|
|
### Options
|
|
|
|
|
|
|
|
#### -a, --application APPLICATION
|
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
application name, slug (preferred), or numeric ID (deprecated)
|
2020-06-17 13:46:25 +00:00
|
|
|
|
|
|
|
#### --app APP
|
|
|
|
|
|
|
|
same as '--application'
|
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
## device os-update <uuid>
|
2016-03-04 13:38:11 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
Start a Host OS update for a device.
|
|
|
|
|
|
|
|
Note this command will ask for confirmation interactively.
|
|
|
|
This can be avoided by passing the `--yes` option.
|
|
|
|
|
|
|
|
Requires balenaCloud; will not work with openBalena or standalone balenaOS.
|
2016-03-04 13:38:11 +00:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
$ balena device os-update 23c73a1
|
|
|
|
$ balena device os-update 23c73a1 --version 2.31.0+rev1.prod
|
2016-03-04 13:38:11 +00:00
|
|
|
|
2020-06-17 13:46:25 +00:00
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### UUID
|
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
the uuid of the device to update
|
2020-06-17 13:46:25 +00:00
|
|
|
|
2016-10-26 14:46:20 +00:00
|
|
|
### Options
|
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
#### --version VERSION
|
2016-10-26 14:46:20 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
a balenaOS version
|
2016-10-26 14:46:20 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
#### -y, --yes
|
2016-10-26 14:46:20 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
answer "yes" to all questions (non interactive use)
|
2016-10-26 14:46:20 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
## device public-url <uuid>
|
2020-06-17 13:46:25 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
This command will output the current public URL for the
|
|
|
|
specified device. It can also enable or disable the URL,
|
|
|
|
or output the enabled status, using the respective options.
|
2020-06-17 13:46:25 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
The old command style 'balena device public-url enable <uuid>'
|
|
|
|
is deprecated, but still supported.
|
2020-06-17 13:46:25 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
Examples:
|
2016-10-26 14:46:20 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
$ balena device public-url 23c73a1
|
|
|
|
$ balena device public-url 23c73a1 --enable
|
|
|
|
$ balena device public-url 23c73a1 --disable
|
|
|
|
$ balena device public-url 23c73a1 --status
|
2016-10-26 14:46:20 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
### Arguments
|
2016-10-26 14:46:20 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
#### UUID
|
2016-10-26 14:46:20 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
the uuid of the device to manage
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
#### LEGACYUUID
|
2015-04-16 13:34:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
### Options
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
#### --enable
|
2015-11-11 19:00:02 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
enable the public URL
|
2015-11-11 19:00:02 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
#### --disable
|
2015-11-11 19:00:02 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
disable the public URL
|
2015-11-11 19:00:02 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
#### --status
|
2015-11-11 19:00:02 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
determine if public URL is enabled
|
2015-11-11 19:00:02 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
## device purge <uuid>
|
2015-11-11 19:00:02 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
Purge application data from a device.
|
|
|
|
This will clear the application's /data directory.
|
2015-11-11 19:00:02 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
Multiple devices may be specified with a comma-separated list
|
|
|
|
of values (no spaces).
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-06-17 13:46:25 +00:00
|
|
|
Examples:
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
$ balena device purge 23c73a1
|
|
|
|
$ balena device purge 55d43b3,23c73a1
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-06-17 13:46:25 +00:00
|
|
|
### Arguments
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-06-17 13:46:25 +00:00
|
|
|
#### UUID
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
comma-separated list (no blank spaces) of device UUIDs
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-06-17 13:46:25 +00:00
|
|
|
### Options
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
## device reboot <uuid>
|
2020-09-25 09:00:18 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
Remotely reboot a device.
|
2020-09-25 09:00:18 +00:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
$ balena device reboot 23c73a1
|
2020-09-25 09:00:18 +00:00
|
|
|
|
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### UUID
|
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
the uuid of the device to reboot
|
2020-09-25 09:00:18 +00:00
|
|
|
|
|
|
|
### Options
|
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
#### -f, --force
|
2020-09-25 09:00:18 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
force action if the update lock is set
|
2020-09-25 09:00:18 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
## device register <application>
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
Register a device to an application.
|
2015-10-20 13:16:56 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
Applications may be specified by app name, slug, or numeric ID. App slugs
|
|
|
|
are the recommended option, as they are unique and unambiguous. Slugs
|
|
|
|
can be listed with the `balena apps` command. Note that slugs may change
|
|
|
|
if the application is renamed.
|
|
|
|
App names are not unique and may result in "Application is ambiguous" errors
|
|
|
|
at any time (even if it "used to work in the past"), for example if the name
|
|
|
|
clashes with a newly created public application, or with apps from other balena
|
|
|
|
accounts that you may have been invited to as a member. For this reason, app
|
|
|
|
names are especially discouraged in scripts (e.g. CI environments).
|
|
|
|
Numeric app IDs are deprecated because they consist of an implementation detail
|
|
|
|
of the balena backend. We intend to remove support for numeric IDs at some point
|
|
|
|
in the future.
|
|
|
|
|
2020-06-17 13:46:25 +00:00
|
|
|
Examples:
|
2015-10-20 13:16:56 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
$ balena device register MyApp
|
|
|
|
$ balena device register MyApp --uuid <uuid>
|
2020-12-10 12:30:17 +00:00
|
|
|
$ balena device register myorg/myapp --uuid <uuid>
|
2017-06-12 10:21:12 +00:00
|
|
|
|
2020-06-17 13:46:25 +00:00
|
|
|
### Arguments
|
2017-06-12 10:21:12 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
#### APPLICATION
|
2017-06-12 10:21:12 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
application name, slug (preferred), or numeric ID (deprecated)
|
2017-06-12 10:21:12 +00:00
|
|
|
|
2020-06-17 13:46:25 +00:00
|
|
|
### Options
|
2017-06-12 10:21:12 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
#### -u, --uuid UUID
|
2019-06-11 12:08:15 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
custom uuid
|
2019-06-11 12:08:15 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
## device rename <uuid> [newName]
|
2019-06-11 12:08:15 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
Rename a device.
|
2020-03-26 12:19:35 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
Note, if the name is omitted, it will be prompted for interactively.
|
2020-08-07 14:08:20 +00:00
|
|
|
|
2019-06-11 12:08:15 +00:00
|
|
|
Examples:
|
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
$ balena device rename 7cf02a6
|
|
|
|
$ balena device rename 7cf02a6 MyPi
|
2019-06-11 12:08:15 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
### Arguments
|
2019-06-11 12:08:15 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
#### UUID
|
2019-06-11 12:08:15 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
the uuid of the device to rename
|
2019-06-11 12:08:15 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
#### NEWNAME
|
2019-06-11 12:08:15 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
the new name for the device
|
2020-08-07 14:08:20 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
### Options
|
2020-08-07 14:08:20 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
## device restart <uuid>
|
2019-11-07 10:02:44 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
Restart containers on a device.
|
|
|
|
If the --service flag is provided, then only those services' containers
|
|
|
|
will be restarted, otherwise all containers on the device will be restarted.
|
2019-12-26 22:59:44 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
Multiple devices and services may be specified with a comma-separated list
|
|
|
|
of values (no spaces).
|
2019-12-26 22:59:44 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
Note this does not reboot the device, to do so use instead `balena device reboot`.
|
2019-11-07 10:02:44 +00:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
$ balena device restart 23c73a1
|
|
|
|
$ balena device restart 55d43b3,23c73a1
|
|
|
|
$ balena device restart 23c73a1 --service myService
|
|
|
|
$ balena device restart 23c73a1 -s myService1,myService2
|
2019-12-26 22:59:44 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
### Arguments
|
2019-12-26 22:59:44 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
#### UUID
|
2019-12-26 22:59:44 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
comma-separated list (no blank spaces) of device UUIDs to restart
|
2019-12-26 22:59:44 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
### Options
|
2019-12-26 22:59:44 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
#### -s, --service SERVICE
|
2019-11-07 10:02:44 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
comma-separated list (no blank spaces) of service names to restart
|
2020-06-18 13:36:46 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
## device rm <uuid(s)>
|
2020-06-18 13:36:46 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
Remove one or more devices from balena.
|
2020-06-18 13:36:46 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
Note this command asks for confirmation interactively.
|
|
|
|
You can avoid this by passing the `--yes` option.
|
2020-06-18 13:36:46 +00:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
$ balena device rm 7cf02a6
|
|
|
|
$ balena device rm 7cf02a6,dc39e52
|
|
|
|
$ balena device rm 7cf02a6 --yes
|
2020-06-18 13:36:46 +00:00
|
|
|
|
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### UUID
|
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
comma-separated list (no blank spaces) of device UUIDs to be removed
|
2020-06-18 13:36:46 +00:00
|
|
|
|
|
|
|
### Options
|
|
|
|
|
|
|
|
#### -y, --yes
|
|
|
|
|
|
|
|
answer "yes" to all questions (non interactive use)
|
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
## device shutdown <uuid>
|
2020-06-02 08:01:04 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
Remotely shutdown a device.
|
2020-06-02 08:01:04 +00:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
$ balena device shutdown 23c73a1
|
2020-06-02 08:01:04 +00:00
|
|
|
|
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### UUID
|
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
the uuid of the device to shutdown
|
2020-06-02 08:01:04 +00:00
|
|
|
|
|
|
|
### Options
|
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
#### -f, --force
|
2020-06-02 08:01:04 +00:00
|
|
|
|
2020-10-14 09:13:47 +00:00
|
|
|
force action if the update lock is set
|
2020-06-02 08:01:04 +00:00
|
|
|
|
2015-04-16 13:34:40 +00:00
|
|
|
# Environment Variables
|
2015-04-16 14:42:09 +00:00
|
|
|
|
2018-03-20 17:43:26 +00:00
|
|
|
## envs
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2019-12-04 18:04:57 +00:00
|
|
|
List the environment or configuration variables of an application, device or
|
|
|
|
service, as selected by the respective command-line options. (A service is
|
|
|
|
an application container in a "microservices" application.)
|
|
|
|
|
2020-06-15 22:52:58 +00:00
|
|
|
The results include application-wide (fleet), device-wide (multiple services on
|
|
|
|
a device) and service-specific variables that apply to the selected application,
|
|
|
|
device or service. It can be thought of as including "inherited" variables;
|
|
|
|
for example, a service inherits device-wide variables, and a device inherits
|
|
|
|
application-wide variables.
|
|
|
|
|
|
|
|
The printed output may include DEVICE and/or SERVICE columns to distinguish
|
|
|
|
between application-wide, device-specific and service-specific variables.
|
|
|
|
An asterisk in these columns indicates that the variable applies to
|
|
|
|
"all devices" or "all services".
|
|
|
|
|
2019-12-04 18:04:57 +00:00
|
|
|
The --config option is used to list "configuration variables" that control
|
|
|
|
balena platform features, as opposed to custom environment variables defined
|
|
|
|
by the user. The --config and the --service options are mutually exclusive
|
|
|
|
because configuration variables cannot be set for specific services.
|
|
|
|
|
2020-01-03 23:13:20 +00:00
|
|
|
The --json option is recommended when scripting the output of this command,
|
|
|
|
because the JSON format is less likely to change and it better represents data
|
|
|
|
types like lists and empty strings. The 'jq' utility may be helpful in shell
|
|
|
|
scripts (https://stedolan.github.io/jq/manual/). When --json is used, an empty
|
|
|
|
JSON array ([]) is printed instead of an error message when no variables exist
|
|
|
|
for the given query. When querying variables for a device, note that the
|
|
|
|
application name may be null in JSON output (or 'N/A' in tabular output) if the
|
|
|
|
application linked to the device is no longer accessible by the current user
|
|
|
|
(for example, in case the current user has been removed from the application
|
|
|
|
by its owner).
|
2018-05-31 10:43:11 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
Applications may be specified by app name, slug, or numeric ID. App slugs
|
|
|
|
are the recommended option, as they are unique and unambiguous. Slugs
|
|
|
|
can be listed with the `balena apps` command. Note that slugs may change
|
|
|
|
if the application is renamed.
|
|
|
|
App names are not unique and may result in "Application is ambiguous" errors
|
|
|
|
at any time (even if it "used to work in the past"), for example if the name
|
|
|
|
clashes with a newly created public application, or with apps from other balena
|
|
|
|
accounts that you may have been invited to as a member. For this reason, app
|
|
|
|
names are especially discouraged in scripts (e.g. CI environments).
|
|
|
|
Numeric app IDs are deprecated because they consist of an implementation detail
|
|
|
|
of the balena backend. We intend to remove support for numeric IDs at some point
|
|
|
|
in the future.
|
|
|
|
|
2019-09-06 13:43:53 +00:00
|
|
|
Examples:
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2018-10-19 14:38:50 +00:00
|
|
|
$ balena envs --application MyApp
|
2020-12-10 12:30:17 +00:00
|
|
|
$ balena envs --application myorg/myapp
|
2020-06-15 22:52:58 +00:00
|
|
|
$ balena envs --application MyApp --json
|
|
|
|
$ balena envs --application MyApp --service MyService
|
2019-12-04 18:04:57 +00:00
|
|
|
$ balena envs --application MyApp --service MyService
|
2018-10-25 18:03:12 +00:00
|
|
|
$ balena envs --application MyApp --config
|
2018-10-19 14:38:50 +00:00
|
|
|
$ balena envs --device 7cf02a6
|
2020-06-15 22:52:58 +00:00
|
|
|
$ balena envs --device 7cf02a6 --json
|
|
|
|
$ balena envs --device 7cf02a6 --config --json
|
|
|
|
$ balena envs --device 7cf02a6 --service MyService
|
2015-04-16 13:34:40 +00:00
|
|
|
|
|
|
|
### Options
|
|
|
|
|
2019-12-04 18:04:57 +00:00
|
|
|
#### --all
|
|
|
|
|
2020-10-20 21:11:17 +00:00
|
|
|
No-op since balena CLI v12.0.0.
|
2019-12-04 18:04:57 +00:00
|
|
|
|
2019-09-06 13:43:53 +00:00
|
|
|
#### -a, --application APPLICATION
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
application name, slug (preferred), or numeric ID (deprecated)
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2019-09-06 13:43:53 +00:00
|
|
|
#### -c, --config
|
2015-07-07 22:01:25 +00:00
|
|
|
|
2019-12-04 18:04:57 +00:00
|
|
|
show configuration variables only
|
2015-07-07 22:01:25 +00:00
|
|
|
|
2019-09-06 13:43:53 +00:00
|
|
|
#### -d, --device DEVICE
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2019-09-06 13:43:53 +00:00
|
|
|
device UUID
|
|
|
|
|
2019-12-05 17:09:02 +00:00
|
|
|
#### -j, --json
|
|
|
|
|
|
|
|
produce JSON output instead of tabular output
|
|
|
|
|
2019-09-06 13:43:53 +00:00
|
|
|
#### -v, --verbose
|
|
|
|
|
|
|
|
produce verbose output
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2019-12-04 18:04:57 +00:00
|
|
|
#### -s, --service SERVICE
|
|
|
|
|
|
|
|
service name
|
|
|
|
|
2020-09-04 14:34:34 +00:00
|
|
|
## env rm <id>
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2019-12-11 00:43:55 +00:00
|
|
|
Remove a configuration or environment variable from an application, device
|
|
|
|
or service, as selected by command-line options.
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2019-12-11 00:43:55 +00:00
|
|
|
Variables are selected by their database ID (as reported by the 'balena envs'
|
|
|
|
command) and one of six database "resource types":
|
|
|
|
|
|
|
|
- application (fleet) environment variable
|
|
|
|
- application (fleet) configuration variable (--config)
|
|
|
|
- application (fleet) service variable (--service)
|
|
|
|
- device environment variable (--device)
|
|
|
|
- device configuration variable (--device --config)
|
|
|
|
- device service variable (--device --service)
|
|
|
|
|
|
|
|
The --device option selects a device-specific variable instead of an application
|
|
|
|
(fleet) variable.
|
|
|
|
|
|
|
|
The --config option selects a configuration variable. Configuration variable
|
|
|
|
names typically start with the 'BALENA_' or 'RESIN_' prefixes and are used to
|
|
|
|
configure balena platform features.
|
|
|
|
|
|
|
|
The --service option selects a service variable, which is an environment variable
|
|
|
|
that applies to a specifc service (application container) in a microservices
|
|
|
|
(multicontainer) application.
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2019-12-11 00:43:55 +00:00
|
|
|
The --service and --config options cannot be used together, but they can be
|
|
|
|
used alongside the --device option to select a device-specific service or
|
|
|
|
configuration variable.
|
2019-03-04 15:02:09 +00:00
|
|
|
|
2019-12-11 00:43:55 +00:00
|
|
|
Interactive confirmation is normally asked before the variable is deleted.
|
2020-01-03 18:37:55 +00:00
|
|
|
The --yes option disables this behavior.
|
2015-07-07 22:01:25 +00:00
|
|
|
|
2015-04-16 13:34:40 +00:00
|
|
|
Examples:
|
|
|
|
|
2019-12-11 00:43:55 +00:00
|
|
|
$ balena env rm 123123
|
|
|
|
$ balena env rm 234234 --yes
|
|
|
|
$ balena env rm 345345 --config
|
|
|
|
$ balena env rm 456456 --service
|
|
|
|
$ balena env rm 567567 --device
|
|
|
|
$ balena env rm 678678 --device --config
|
|
|
|
$ balena env rm 789789 --device --service --yes
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2019-08-07 09:28:15 +00:00
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### ID
|
|
|
|
|
2019-12-11 00:43:55 +00:00
|
|
|
variable's numeric database ID
|
2019-08-07 09:28:15 +00:00
|
|
|
|
2015-04-16 13:34:40 +00:00
|
|
|
### Options
|
|
|
|
|
2019-12-11 00:43:55 +00:00
|
|
|
#### -c, --config
|
|
|
|
|
|
|
|
select a configuration variable (may be used together with the --device option)
|
|
|
|
|
2019-08-07 09:28:15 +00:00
|
|
|
#### -d, --device
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2019-12-11 00:43:55 +00:00
|
|
|
select a device-specific variable instead of an application (fleet) variable
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2019-12-11 00:43:55 +00:00
|
|
|
#### -s, --service
|
2019-10-02 18:23:50 +00:00
|
|
|
|
2019-12-11 00:43:55 +00:00
|
|
|
select a service variable (may be used together with the --device option)
|
2019-10-02 18:23:50 +00:00
|
|
|
|
2019-08-07 09:28:15 +00:00
|
|
|
#### -y, --yes
|
2015-07-07 22:01:25 +00:00
|
|
|
|
2019-12-11 00:43:55 +00:00
|
|
|
do not prompt for confirmation before deleting the variable
|
2015-07-07 22:01:25 +00:00
|
|
|
|
2020-09-04 14:34:34 +00:00
|
|
|
## env add <name> [value]
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-08-21 10:43:12 +00:00
|
|
|
Add an environment or config variable to one or more applications, devices
|
|
|
|
or services, as selected by the respective command-line options. Either the
|
|
|
|
--application or the --device option must be provided, and either may be be
|
|
|
|
used alongside the --service option to define a service-specific variable.
|
|
|
|
(A service is an application container in a "microservices" application.)
|
|
|
|
When the --service option is used in conjunction with the --device option,
|
|
|
|
the service variable applies to the selected device only. Otherwise, it
|
|
|
|
applies to all devices of the selected application (i.e., the application's
|
|
|
|
fleet). If the --service option is omitted, the variable applies to all
|
2020-08-03 23:09:40 +00:00
|
|
|
services.
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2019-04-02 11:26:21 +00:00
|
|
|
If VALUE is omitted, the CLI will attempt to use the value of the environment
|
|
|
|
variable of same name in the CLI process' environment. In this case, a warning
|
|
|
|
message will be printed. Use `--quiet` to suppress it.
|
2015-07-07 22:01:25 +00:00
|
|
|
|
2019-12-10 00:07:16 +00:00
|
|
|
'BALENA_' or 'RESIN_' are reserved variable name prefixes used to identify
|
|
|
|
"configuration variables". Configuration variables control balena platform
|
|
|
|
features and are treated specially by balenaOS and the balena supervisor
|
|
|
|
running on devices. They are also stored differently in the balenaCloud API
|
|
|
|
database. Configuration variables cannot be set for specific services,
|
|
|
|
therefore the --service option cannot be used when the variable name starts
|
|
|
|
with a reserved prefix. When defining custom application variables, please
|
|
|
|
avoid the reserved prefixes.
|
2019-03-04 15:02:09 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
Applications may be specified by app name, slug, or numeric ID. App slugs
|
|
|
|
are the recommended option, as they are unique and unambiguous. Slugs
|
|
|
|
can be listed with the `balena apps` command. Note that slugs may change
|
|
|
|
if the application is renamed.
|
|
|
|
App names are not unique and may result in "Application is ambiguous" errors
|
|
|
|
at any time (even if it "used to work in the past"), for example if the name
|
|
|
|
clashes with a newly created public application, or with apps from other balena
|
|
|
|
accounts that you may have been invited to as a member. For this reason, app
|
|
|
|
names are especially discouraged in scripts (e.g. CI environments).
|
|
|
|
Numeric app IDs are deprecated because they consist of an implementation detail
|
|
|
|
of the balena backend. We intend to remove support for numeric IDs at some point
|
|
|
|
in the future.
|
|
|
|
|
2015-04-16 13:34:40 +00:00
|
|
|
Examples:
|
|
|
|
|
2018-10-19 14:38:50 +00:00
|
|
|
$ balena env add TERM --application MyApp
|
2019-04-02 11:26:21 +00:00
|
|
|
$ balena env add EDITOR vim --application MyApp
|
2020-12-10 12:30:17 +00:00
|
|
|
$ balena env add EDITOR vim -a myorg/myapp
|
2020-08-03 23:09:40 +00:00
|
|
|
$ balena env add EDITOR vim --application MyApp,MyApp2
|
2019-12-10 00:07:16 +00:00
|
|
|
$ balena env add EDITOR vim --application MyApp --service MyService
|
2020-08-03 23:09:40 +00:00
|
|
|
$ balena env add EDITOR vim --application MyApp,MyApp2 --service MyService,MyService2
|
2018-10-19 14:38:50 +00:00
|
|
|
$ balena env add EDITOR vim --device 7cf02a6
|
2020-08-03 23:09:40 +00:00
|
|
|
$ balena env add EDITOR vim --device 7cf02a6,d6f1433
|
2019-12-10 00:07:16 +00:00
|
|
|
$ balena env add EDITOR vim --device 7cf02a6 --service MyService
|
2020-08-03 23:09:40 +00:00
|
|
|
$ balena env add EDITOR vim --device 7cf02a6,d6f1433 --service MyService,MyService2
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2019-04-02 11:26:21 +00:00
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### NAME
|
|
|
|
|
|
|
|
environment or config variable name
|
|
|
|
|
|
|
|
#### VALUE
|
|
|
|
|
2019-12-10 00:07:16 +00:00
|
|
|
variable value; if omitted, use value from this process' environment
|
2019-04-02 11:26:21 +00:00
|
|
|
|
2015-04-16 13:34:40 +00:00
|
|
|
### Options
|
|
|
|
|
2019-04-02 11:26:21 +00:00
|
|
|
#### -a, --application APPLICATION
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
application name, slug (preferred), or numeric ID (deprecated)
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2019-04-02 11:26:21 +00:00
|
|
|
#### -d, --device DEVICE
|
2015-07-07 22:01:25 +00:00
|
|
|
|
2019-04-02 11:26:21 +00:00
|
|
|
device UUID
|
|
|
|
|
|
|
|
#### -q, --quiet
|
|
|
|
|
|
|
|
suppress warning messages
|
2015-07-07 22:01:25 +00:00
|
|
|
|
2019-12-10 00:07:16 +00:00
|
|
|
#### -s, --service SERVICE
|
|
|
|
|
|
|
|
service name
|
|
|
|
|
2020-09-08 11:31:41 +00:00
|
|
|
## env rename <id> <value>
|
2019-03-04 15:02:09 +00:00
|
|
|
|
2019-12-11 17:47:54 +00:00
|
|
|
Change the value of a configuration or environment variable for an application,
|
|
|
|
device or service, as selected by command-line options.
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2019-12-11 17:47:54 +00:00
|
|
|
Variables are selected by their database ID (as reported by the 'balena envs'
|
|
|
|
command) and one of six database "resource types":
|
|
|
|
|
|
|
|
- application (fleet) environment variable
|
|
|
|
- application (fleet) configuration variable (--config)
|
|
|
|
- application (fleet) service variable (--service)
|
|
|
|
- device environment variable (--device)
|
|
|
|
- device configuration variable (--device --config)
|
|
|
|
- device service variable (--device --service)
|
|
|
|
|
|
|
|
The --device option selects a device-specific variable instead of an application
|
|
|
|
(fleet) variable.
|
|
|
|
|
|
|
|
The --config option selects a configuration variable. Configuration variable
|
|
|
|
names typically start with the 'BALENA_' or 'RESIN_' prefixes and are used to
|
|
|
|
configure balena platform features.
|
|
|
|
|
|
|
|
The --service option selects a service variable, which is an environment variable
|
|
|
|
that applies to a specifc service (application container) in a microservices
|
|
|
|
(multicontainer) application.
|
|
|
|
|
|
|
|
The --service and --config options cannot be used together, but they can be
|
|
|
|
used alongside the --device option to select a device-specific service or
|
|
|
|
configuration variable.
|
2015-07-07 22:01:25 +00:00
|
|
|
|
2015-04-16 13:34:40 +00:00
|
|
|
Examples:
|
|
|
|
|
2019-12-11 17:47:54 +00:00
|
|
|
$ balena env rename 123123 emacs
|
|
|
|
$ balena env rename 234234 emacs --service
|
|
|
|
$ balena env rename 345345 emacs --device
|
|
|
|
$ balena env rename 456456 emacs --device --service
|
|
|
|
$ balena env rename 567567 1 --config
|
|
|
|
$ balena env rename 678678 1 --device --config
|
2015-07-07 22:01:25 +00:00
|
|
|
|
2019-09-06 13:43:53 +00:00
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### ID
|
|
|
|
|
2019-12-11 17:47:54 +00:00
|
|
|
variable's numeric database ID
|
2019-09-06 13:43:53 +00:00
|
|
|
|
|
|
|
#### VALUE
|
|
|
|
|
2019-12-11 17:47:54 +00:00
|
|
|
variable value; if omitted, use value from this process' environment
|
2019-09-06 13:43:53 +00:00
|
|
|
|
2015-07-07 22:01:25 +00:00
|
|
|
### Options
|
|
|
|
|
2019-12-11 17:47:54 +00:00
|
|
|
#### -c, --config
|
|
|
|
|
|
|
|
select a configuration variable (may be used together with the --device option)
|
|
|
|
|
2019-09-06 13:43:53 +00:00
|
|
|
#### -d, --device
|
2015-07-07 22:01:25 +00:00
|
|
|
|
2019-12-11 17:47:54 +00:00
|
|
|
select a device-specific variable instead of an application (fleet) variable
|
|
|
|
|
|
|
|
#### -s, --service
|
|
|
|
|
|
|
|
select a service variable (may be used together with the --device option)
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2018-12-10 21:05:35 +00:00
|
|
|
# Tags
|
|
|
|
|
|
|
|
## tags
|
|
|
|
|
2020-05-26 09:17:30 +00:00
|
|
|
List all tags and their values for a particular application,
|
|
|
|
device or release.
|
2018-12-10 21:05:35 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
Applications may be specified by app name, slug, or numeric ID. App slugs
|
|
|
|
are the recommended option, as they are unique and unambiguous. Slugs
|
|
|
|
can be listed with the `balena apps` command. Note that slugs may change
|
|
|
|
if the application is renamed.
|
|
|
|
App names are not unique and may result in "Application is ambiguous" errors
|
|
|
|
at any time (even if it "used to work in the past"), for example if the name
|
|
|
|
clashes with a newly created public application, or with apps from other balena
|
|
|
|
accounts that you may have been invited to as a member. For this reason, app
|
|
|
|
names are especially discouraged in scripts (e.g. CI environments).
|
|
|
|
Numeric app IDs are deprecated because they consist of an implementation detail
|
|
|
|
of the balena backend. We intend to remove support for numeric IDs at some point
|
|
|
|
in the future.
|
|
|
|
|
2020-05-26 09:17:30 +00:00
|
|
|
Examples:
|
2018-12-10 21:05:35 +00:00
|
|
|
|
|
|
|
$ balena tags --application MyApp
|
2020-12-10 12:30:17 +00:00
|
|
|
$ balena tags -a myorg/myapp
|
2018-12-10 21:05:35 +00:00
|
|
|
$ balena tags --device 7cf02a6
|
|
|
|
$ balena tags --release 1234
|
2019-10-15 21:57:34 +00:00
|
|
|
$ balena tags --release b376b0e544e9429483b656490e5b9443b4349bd6
|
2018-12-10 21:05:35 +00:00
|
|
|
|
|
|
|
### Options
|
|
|
|
|
2020-05-26 09:17:30 +00:00
|
|
|
#### -a, --application APPLICATION
|
2018-12-10 21:05:35 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
application name, slug (preferred), or numeric ID (deprecated)
|
|
|
|
|
|
|
|
#### --app APP
|
|
|
|
|
|
|
|
same as '--application'
|
2018-12-10 21:05:35 +00:00
|
|
|
|
2020-05-26 09:17:30 +00:00
|
|
|
#### -d, --device DEVICE
|
2018-12-10 21:05:35 +00:00
|
|
|
|
2020-05-26 09:17:30 +00:00
|
|
|
device UUID
|
2018-12-10 21:05:35 +00:00
|
|
|
|
2020-05-26 09:17:30 +00:00
|
|
|
#### -r, --release RELEASE
|
2018-12-10 21:05:35 +00:00
|
|
|
|
|
|
|
release id
|
|
|
|
|
2020-05-26 09:17:30 +00:00
|
|
|
## tag rm <tagKey>
|
|
|
|
|
|
|
|
Remove a tag from an application, device or release.
|
2018-12-10 21:05:35 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
Applications may be specified by app name, slug, or numeric ID. App slugs
|
|
|
|
are the recommended option, as they are unique and unambiguous. Slugs
|
|
|
|
can be listed with the `balena apps` command. Note that slugs may change
|
|
|
|
if the application is renamed.
|
|
|
|
App names are not unique and may result in "Application is ambiguous" errors
|
|
|
|
at any time (even if it "used to work in the past"), for example if the name
|
|
|
|
clashes with a newly created public application, or with apps from other balena
|
|
|
|
accounts that you may have been invited to as a member. For this reason, app
|
|
|
|
names are especially discouraged in scripts (e.g. CI environments).
|
|
|
|
Numeric app IDs are deprecated because they consist of an implementation detail
|
|
|
|
of the balena backend. We intend to remove support for numeric IDs at some point
|
|
|
|
in the future.
|
|
|
|
|
2018-12-10 21:05:35 +00:00
|
|
|
Examples:
|
|
|
|
|
2020-05-26 09:17:30 +00:00
|
|
|
$ balena tag rm myTagKey --application MyApp
|
2020-12-10 12:30:17 +00:00
|
|
|
$ balena tag rm myTagKey -a myorg/myapp
|
2020-05-26 09:17:30 +00:00
|
|
|
$ balena tag rm myTagKey --device 7cf02a6
|
|
|
|
$ balena tag rm myTagKey --release 1234
|
|
|
|
$ balena tag rm myTagKey --release b376b0e544e9429483b656490e5b9443b4349bd6
|
|
|
|
|
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### TAGKEY
|
|
|
|
|
|
|
|
the key string of the tag
|
2018-12-10 21:05:35 +00:00
|
|
|
|
|
|
|
### Options
|
|
|
|
|
2020-05-26 09:17:30 +00:00
|
|
|
#### -a, --application APPLICATION
|
2018-12-10 21:05:35 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
application name, slug (preferred), or numeric ID (deprecated)
|
|
|
|
|
|
|
|
#### --app APP
|
|
|
|
|
|
|
|
same as '--application'
|
2018-12-10 21:05:35 +00:00
|
|
|
|
2020-05-26 09:17:30 +00:00
|
|
|
#### -d, --device DEVICE
|
2018-12-10 21:05:35 +00:00
|
|
|
|
2020-05-26 09:17:30 +00:00
|
|
|
device UUID
|
2018-12-10 21:05:35 +00:00
|
|
|
|
2020-05-26 09:17:30 +00:00
|
|
|
#### -r, --release RELEASE
|
2018-12-10 21:05:35 +00:00
|
|
|
|
|
|
|
release id
|
|
|
|
|
2020-05-26 09:17:30 +00:00
|
|
|
## tag set <tagKey> [value]
|
|
|
|
|
|
|
|
Set a tag on an application, device or release.
|
|
|
|
|
|
|
|
You can optionally provide a value to be associated with the created
|
|
|
|
tag, as an extra argument after the tag key. If a value isn't
|
|
|
|
provided, a tag with an empty value is created.
|
2018-12-10 21:05:35 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
Applications may be specified by app name, slug, or numeric ID. App slugs
|
|
|
|
are the recommended option, as they are unique and unambiguous. Slugs
|
|
|
|
can be listed with the `balena apps` command. Note that slugs may change
|
|
|
|
if the application is renamed.
|
|
|
|
App names are not unique and may result in "Application is ambiguous" errors
|
|
|
|
at any time (even if it "used to work in the past"), for example if the name
|
|
|
|
clashes with a newly created public application, or with apps from other balena
|
|
|
|
accounts that you may have been invited to as a member. For this reason, app
|
|
|
|
names are especially discouraged in scripts (e.g. CI environments).
|
|
|
|
Numeric app IDs are deprecated because they consist of an implementation detail
|
|
|
|
of the balena backend. We intend to remove support for numeric IDs at some point
|
|
|
|
in the future.
|
|
|
|
|
2018-12-10 21:05:35 +00:00
|
|
|
Examples:
|
|
|
|
|
2020-05-26 09:17:30 +00:00
|
|
|
$ balena tag set mySimpleTag --application MyApp
|
2020-12-10 12:30:17 +00:00
|
|
|
$ balena tag set mySimpleTag -a myorg/myapp
|
2020-05-26 09:17:30 +00:00
|
|
|
$ balena tag set myCompositeTag myTagValue --application MyApp
|
|
|
|
$ balena tag set myCompositeTag myTagValue --device 7cf02a6
|
|
|
|
$ balena tag set myCompositeTag "my tag value with whitespaces" --device 7cf02a6
|
|
|
|
$ balena tag set myCompositeTag myTagValue --release 1234
|
|
|
|
$ balena tag set myCompositeTag --release 1234
|
|
|
|
$ balena tag set myCompositeTag --release b376b0e544e9429483b656490e5b9443b4349bd6
|
|
|
|
|
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### TAGKEY
|
|
|
|
|
|
|
|
the key string of the tag
|
|
|
|
|
|
|
|
#### VALUE
|
|
|
|
|
|
|
|
the optional value associated with the tag
|
2018-12-10 21:05:35 +00:00
|
|
|
|
|
|
|
### Options
|
|
|
|
|
2020-05-26 09:17:30 +00:00
|
|
|
#### -a, --application APPLICATION
|
2018-12-10 21:05:35 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
application name, slug (preferred), or numeric ID (deprecated)
|
|
|
|
|
|
|
|
#### --app APP
|
|
|
|
|
|
|
|
same as '--application'
|
2018-12-10 21:05:35 +00:00
|
|
|
|
2020-05-26 09:17:30 +00:00
|
|
|
#### -d, --device DEVICE
|
2018-12-10 21:05:35 +00:00
|
|
|
|
2020-05-26 09:17:30 +00:00
|
|
|
device UUID
|
2018-12-10 21:05:35 +00:00
|
|
|
|
2020-05-26 09:17:30 +00:00
|
|
|
#### -r, --release RELEASE
|
2018-12-10 21:05:35 +00:00
|
|
|
|
|
|
|
release id
|
|
|
|
|
2019-06-24 15:51:07 +00:00
|
|
|
# Help and Version
|
2015-04-16 14:42:09 +00:00
|
|
|
|
2020-09-04 14:34:34 +00:00
|
|
|
## help [command]
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-09-08 11:23:39 +00:00
|
|
|
List balena commands, or get detailed help for a specific command.
|
2015-04-16 13:34:40 +00:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
2020-09-04 14:34:34 +00:00
|
|
|
$ balena help
|
2018-10-19 14:38:50 +00:00
|
|
|
$ balena help apps
|
|
|
|
$ balena help os download
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-09-04 14:34:34 +00:00
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### COMMAND
|
|
|
|
|
|
|
|
command to show help for
|
|
|
|
|
2015-10-15 12:48:34 +00:00
|
|
|
### Options
|
|
|
|
|
2020-09-04 14:34:34 +00:00
|
|
|
#### --v, --verbose
|
2015-10-15 12:48:34 +00:00
|
|
|
|
|
|
|
show additional commands
|
|
|
|
|
2018-03-20 17:43:26 +00:00
|
|
|
## version
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-10-20 21:11:17 +00:00
|
|
|
Display version information for the balena CLI and/or Node.js. Note that the
|
|
|
|
balena CLI executable installers for Windows and macOS, and the standalone
|
2020-10-20 21:02:53 +00:00
|
|
|
zip packages, ship with a built-in copy of Node.js. In this case, the
|
|
|
|
reported version of Node.js regards this built-in copy, rather than any
|
|
|
|
other `node` engine that may also be available on the command prompt.
|
2020-01-03 23:13:20 +00:00
|
|
|
|
|
|
|
The --json option is recommended when scripting the output of this command,
|
|
|
|
because the JSON format is less likely to change and it better represents
|
|
|
|
data types like lists and empty strings. The 'jq' utility may be helpful
|
|
|
|
in shell scripts (https://stedolan.github.io/jq/manual/).
|
2019-06-24 15:51:07 +00:00
|
|
|
|
2020-09-04 14:34:34 +00:00
|
|
|
This command can also be invoked with 'balena --version' or 'balena -v'.
|
|
|
|
|
2019-06-24 15:51:07 +00:00
|
|
|
Examples:
|
|
|
|
|
|
|
|
$ balena version
|
|
|
|
$ balena version -a
|
|
|
|
$ balena version -j
|
2020-09-04 14:34:34 +00:00
|
|
|
$ balena --version
|
|
|
|
$ balena -v
|
2019-06-24 15:51:07 +00:00
|
|
|
|
|
|
|
### Options
|
|
|
|
|
|
|
|
#### -a, --all
|
|
|
|
|
|
|
|
include version information for additional components (Node.js)
|
|
|
|
|
|
|
|
#### -j, --json
|
|
|
|
|
|
|
|
output version information in JSON format for programmatic use
|
2015-04-16 13:34:40 +00:00
|
|
|
|
|
|
|
# Keys
|
2015-04-16 14:42:09 +00:00
|
|
|
|
2018-03-20 17:43:26 +00:00
|
|
|
## keys
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-04-17 13:19:33 +00:00
|
|
|
List all SSH keys registered in balenaCloud for the logged in user.
|
2015-04-16 13:34:40 +00:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
2018-10-19 14:38:50 +00:00
|
|
|
$ balena keys
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-04-17 13:19:33 +00:00
|
|
|
### Options
|
|
|
|
|
2018-03-20 17:43:26 +00:00
|
|
|
## key <id>
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-04-17 13:19:33 +00:00
|
|
|
Display a single SSH key registered in balenaCloud for the logged in user.
|
2015-04-16 13:34:40 +00:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
2018-10-19 14:38:50 +00:00
|
|
|
$ balena key 17
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-04-17 13:19:33 +00:00
|
|
|
### Arguments
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-04-17 13:19:33 +00:00
|
|
|
#### ID
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-04-17 13:19:33 +00:00
|
|
|
balenaCloud ID for the SSH key
|
2015-04-16 13:34:40 +00:00
|
|
|
|
|
|
|
### Options
|
|
|
|
|
2018-03-20 17:43:26 +00:00
|
|
|
## key add <name> [path]
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-09-16 13:53:46 +00:00
|
|
|
Add an SSH key to the balenaCloud account of the logged in user.
|
|
|
|
|
|
|
|
If `path` is omitted, the command will attempt to read the SSH key from stdin.
|
|
|
|
|
|
|
|
About SSH keys
|
|
|
|
An "SSH key" actually consists of a public/private key pair. A typical name
|
|
|
|
for the private key file is "id_rsa", and a typical name for the public key
|
|
|
|
file is "id_rsa.pub". Both key files are saved to your computer (with the
|
|
|
|
private key optionally protected by a password), but only the public key is
|
|
|
|
saved to your balena account. This means that if you change computers or
|
|
|
|
otherwise lose the private key, you cannot recover the private key through
|
|
|
|
your balena account. You can however add new keys, and delete the old ones.
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-09-16 13:53:46 +00:00
|
|
|
To generate a new SSH key pair, a nice guide can be found in GitHub's docs:
|
|
|
|
https://help.github.com/en/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent
|
|
|
|
Skip the step about adding the key to a GitHub account, and instead add it to
|
|
|
|
your balena account.
|
2015-04-16 13:34:40 +00:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
2018-10-19 14:38:50 +00:00
|
|
|
$ balena key add Main ~/.ssh/id_rsa.pub
|
|
|
|
$ cat ~/.ssh/id_rsa.pub | balena key add Main
|
2020-09-16 13:53:46 +00:00
|
|
|
# Windows 10 (cmd.exe prompt) example
|
|
|
|
$ balena key add Main %userprofile%.sshid_rsa.pub
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-04-17 13:19:33 +00:00
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### NAME
|
|
|
|
|
|
|
|
the SSH key name
|
|
|
|
|
|
|
|
#### PATH
|
|
|
|
|
|
|
|
the path to the public key file
|
|
|
|
|
|
|
|
### Options
|
|
|
|
|
|
|
|
## key rm <id>
|
|
|
|
|
|
|
|
Remove a single SSH key registered in balenaCloud for the logged in user.
|
|
|
|
|
|
|
|
The --yes option may be used to avoid interactive confirmation.
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
$ balena key rm 17
|
|
|
|
$ balena key rm 17 --yes
|
|
|
|
|
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### ID
|
|
|
|
|
|
|
|
balenaCloud ID for the SSH key
|
|
|
|
|
|
|
|
### Options
|
|
|
|
|
|
|
|
#### -y, --yes
|
|
|
|
|
|
|
|
answer "yes" to all questions (non interactive use)
|
|
|
|
|
2015-04-16 13:34:40 +00:00
|
|
|
# Logs
|
2015-04-16 14:42:09 +00:00
|
|
|
|
2020-07-01 13:52:33 +00:00
|
|
|
## logs <device>
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-07-01 13:52:33 +00:00
|
|
|
Show logs for a specific device.
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2019-04-24 12:04:49 +00:00
|
|
|
By default, the command prints all log messages and exits.
|
2015-04-16 13:34:40 +00:00
|
|
|
|
|
|
|
To continuously stream output, and see new logs in real time, use the `--tail` option.
|
|
|
|
|
2019-04-24 16:47:08 +00:00
|
|
|
If an IP or .local address is passed to this command, logs are displayed from
|
2019-04-24 12:04:49 +00:00
|
|
|
a local mode device with that address. Note that --tail is implied
|
2019-04-24 16:47:08 +00:00
|
|
|
when this command is provided a local mode device.
|
2019-04-24 11:08:26 +00:00
|
|
|
|
2019-04-24 16:30:18 +00:00
|
|
|
Logs from a single service can be displayed with the --service flag. Just system logs
|
|
|
|
can be shown with the --system flag. Note that these flags can be used together.
|
2019-04-24 13:59:07 +00:00
|
|
|
|
2020-07-01 13:52:33 +00:00
|
|
|
Note: --service and --system flags must come after the device parameter, as per examples.
|
|
|
|
|
2015-04-16 13:34:40 +00:00
|
|
|
Examples:
|
|
|
|
|
2018-10-19 14:38:50 +00:00
|
|
|
$ balena logs 23c73a1
|
2019-04-24 12:04:49 +00:00
|
|
|
$ balena logs 23c73a1 --tail
|
2020-07-01 13:52:33 +00:00
|
|
|
|
2019-04-24 11:08:26 +00:00
|
|
|
$ balena logs 192.168.0.31
|
2019-04-24 13:59:07 +00:00
|
|
|
$ balena logs 192.168.0.31 --service my-service
|
2019-05-28 15:56:39 +00:00
|
|
|
$ balena logs 192.168.0.31 --service my-service-1 --service my-service-2
|
2020-07-01 13:52:33 +00:00
|
|
|
|
2019-04-24 16:47:08 +00:00
|
|
|
$ balena logs 23c73a1.local --system
|
|
|
|
$ balena logs 23c73a1.local --system --service my-service
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-07-01 13:52:33 +00:00
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### DEVICE
|
|
|
|
|
|
|
|
device UUID, IP, or .local address
|
|
|
|
|
2015-04-16 13:34:40 +00:00
|
|
|
### Options
|
|
|
|
|
2020-11-07 22:28:14 +00:00
|
|
|
#### --max-retry MAX-RETRY
|
|
|
|
|
|
|
|
Maximum number of reconnection attempts on "connection lost" errors
|
|
|
|
(use 0 to disable auto reconnection).
|
|
|
|
|
2020-07-01 13:52:33 +00:00
|
|
|
#### -t, --tail
|
2015-04-16 13:34:40 +00:00
|
|
|
|
|
|
|
continuously stream output
|
|
|
|
|
2020-07-01 13:52:33 +00:00
|
|
|
#### -s, --service SERVICE
|
2019-04-24 13:59:07 +00:00
|
|
|
|
2019-05-28 15:56:39 +00:00
|
|
|
Reject logs not originating from this service.
|
|
|
|
This can be used in combination with --system or other --service flags.
|
2019-04-24 16:30:18 +00:00
|
|
|
|
2020-07-01 13:52:33 +00:00
|
|
|
#### -S, --system
|
2019-04-24 16:30:18 +00:00
|
|
|
|
|
|
|
Only show system logs. This can be used in combination with --service.
|
2019-04-24 13:59:07 +00:00
|
|
|
|
2019-06-05 22:17:59 +00:00
|
|
|
# Network
|
|
|
|
|
|
|
|
## scan
|
|
|
|
|
2020-03-13 11:32:29 +00:00
|
|
|
Scan for balenaOS devices on your local network.
|
2019-06-05 22:17:59 +00:00
|
|
|
|
2020-11-30 12:50:21 +00:00
|
|
|
The output includes device information collected through balenaEngine for
|
|
|
|
devices running a development image of balenaOS. Devices running a production
|
|
|
|
image do not expose balenaEngine (on TCP port 2375), which is why less
|
|
|
|
information is printed about them.
|
|
|
|
|
2019-06-05 22:17:59 +00:00
|
|
|
Examples:
|
|
|
|
|
|
|
|
$ balena scan
|
|
|
|
$ balena scan --timeout 120
|
|
|
|
$ balena scan --verbose
|
|
|
|
|
|
|
|
### Options
|
|
|
|
|
2020-03-13 11:32:29 +00:00
|
|
|
#### -v, --verbose
|
2019-06-05 22:17:59 +00:00
|
|
|
|
2020-03-13 11:32:29 +00:00
|
|
|
display full info
|
2019-06-05 22:17:59 +00:00
|
|
|
|
2020-03-13 11:32:29 +00:00
|
|
|
#### -t, --timeout TIMEOUT
|
2019-06-05 22:17:59 +00:00
|
|
|
|
2020-03-13 11:32:29 +00:00
|
|
|
scan timeout in seconds
|
2016-04-24 19:52:41 +00:00
|
|
|
|
2020-10-06 17:04:43 +00:00
|
|
|
#### -j, --json
|
|
|
|
|
|
|
|
produce JSON output instead of tabular output
|
|
|
|
|
2020-09-04 14:34:34 +00:00
|
|
|
## ssh <applicationOrDevice> [service]
|
2016-05-19 14:10:45 +00:00
|
|
|
|
2020-06-24 13:24:54 +00:00
|
|
|
Start a shell on a local or remote device. If a service name is not provided,
|
|
|
|
a shell will be opened on the host OS.
|
2019-04-24 17:45:19 +00:00
|
|
|
|
2020-12-16 15:57:25 +00:00
|
|
|
If an application is provided, an interactive menu will be presented
|
2020-04-06 21:47:57 +00:00
|
|
|
for the selection of an online device. A shell will then be opened for the
|
|
|
|
host OS or service container of the chosen device.
|
2016-04-24 19:52:41 +00:00
|
|
|
|
2019-08-09 20:00:20 +00:00
|
|
|
For local devices, the IP address and .local domain name are supported.
|
|
|
|
If the device is referenced by IP or `.local` address, the connection
|
|
|
|
is initiated directly to balenaOS on port `22222` via an
|
|
|
|
openssh-compatible client. Otherwise, any connection initiated remotely
|
|
|
|
traverses the balenaCloud VPN.
|
2016-04-24 19:52:41 +00:00
|
|
|
|
2020-06-24 13:24:54 +00:00
|
|
|
Commands may be piped to the standard input for remote execution (see examples).
|
|
|
|
Note however that remote command execution on service containers (as opposed to
|
|
|
|
the host OS) is not currently possible when a device UUID is used (instead of
|
|
|
|
an IP address) because of a balenaCloud backend limitation.
|
|
|
|
|
|
|
|
Note: `balena ssh` requires an openssh-compatible client to be correctly
|
|
|
|
installed in your shell environment. For more information (including Windows
|
|
|
|
support) please check:
|
|
|
|
https://github.com/balena-io/balena-cli/blob/master/INSTALL.md#additional-dependencies,
|
|
|
|
|
2016-04-24 19:52:41 +00:00
|
|
|
Examples:
|
|
|
|
|
2020-06-24 13:24:54 +00:00
|
|
|
$ balena ssh MyApp
|
|
|
|
$ balena ssh f49cefd
|
|
|
|
$ balena ssh f49cefd my-service
|
|
|
|
$ balena ssh f49cefd --port <port>
|
|
|
|
$ balena ssh 192.168.0.1 --verbose
|
|
|
|
$ balena ssh f49cefd.local my-service
|
|
|
|
$ echo "uptime; exit;" | balena ssh f49cefd
|
|
|
|
$ echo "uptime; exit;" | balena ssh 192.168.0.1 myService
|
2019-04-24 17:45:19 +00:00
|
|
|
|
2020-06-24 13:24:54 +00:00
|
|
|
### Arguments
|
2019-04-24 17:45:19 +00:00
|
|
|
|
2020-06-24 13:24:54 +00:00
|
|
|
#### APPLICATIONORDEVICE
|
|
|
|
|
2020-12-16 15:57:25 +00:00
|
|
|
application name/slug/id, device uuid, or address of local device
|
2020-06-24 13:24:54 +00:00
|
|
|
|
2020-09-04 14:34:34 +00:00
|
|
|
#### SERVICE
|
2020-06-24 13:24:54 +00:00
|
|
|
|
|
|
|
service name, if connecting to a container
|
2016-04-24 19:52:41 +00:00
|
|
|
|
|
|
|
### Options
|
|
|
|
|
2020-06-24 13:24:54 +00:00
|
|
|
#### -p, --port PORT
|
2016-04-24 19:52:41 +00:00
|
|
|
|
2020-03-27 01:26:37 +00:00
|
|
|
SSH server port number (default 22222) if the target is an IP address or .local
|
|
|
|
hostname. Otherwise, port number for the balenaCloud gateway (default 22).
|
2016-04-24 19:52:41 +00:00
|
|
|
|
2020-06-24 13:24:54 +00:00
|
|
|
#### -t, --tty
|
2020-03-31 13:50:09 +00:00
|
|
|
|
2020-12-16 15:57:25 +00:00
|
|
|
force pseudo-terminal allocation (bypass TTY autodetection for stdin)
|
2020-03-31 13:50:09 +00:00
|
|
|
|
2020-06-24 13:24:54 +00:00
|
|
|
#### -v, --verbose
|
2016-06-22 13:46:18 +00:00
|
|
|
|
2020-12-16 15:57:25 +00:00
|
|
|
increase verbosity
|
2017-12-18 10:36:58 +00:00
|
|
|
|
2017-05-18 22:44:30 +00:00
|
|
|
#### --noproxy
|
2017-05-18 22:25:01 +00:00
|
|
|
|
2020-12-16 15:57:25 +00:00
|
|
|
bypass global proxy configuration for the ssh connection
|
2019-03-11 18:54:22 +00:00
|
|
|
|
2019-06-06 16:56:20 +00:00
|
|
|
## tunnel <deviceOrApplication>
|
2019-04-18 15:49:17 +00:00
|
|
|
|
2021-01-22 15:06:18 +00:00
|
|
|
Use this command to open local TCP ports that tunnel to listening sockets in a
|
|
|
|
balenaOS device.
|
2019-04-18 15:49:17 +00:00
|
|
|
|
2021-01-22 15:06:18 +00:00
|
|
|
For example, this command could be used to expose the ssh server of a balenaOS
|
|
|
|
device (port number 22222) on the local machine, or to expose a web server
|
|
|
|
running on the device. The port numbers do not have be the same between the
|
|
|
|
device and the local machine, and multiple ports may be tunneled in a single
|
|
|
|
command line.
|
2019-04-18 15:49:17 +00:00
|
|
|
|
2020-06-29 12:45:32 +00:00
|
|
|
Port mappings are specified in the format: <remotePort>[:[localIP:]localPort]
|
2021-01-22 15:06:18 +00:00
|
|
|
localIP defaults to 'localhost', and localPort defaults to the specified
|
|
|
|
remotePort value.
|
2020-06-29 12:45:32 +00:00
|
|
|
|
2021-01-22 15:06:18 +00:00
|
|
|
Note: the -p (--port) flag must be provided at the end of the command line,
|
|
|
|
as per examples.
|
2019-04-18 15:49:17 +00:00
|
|
|
|
2021-01-22 15:06:18 +00:00
|
|
|
In the case of openBalena, the tunnel command in CLI v12.38.5 or later requires
|
|
|
|
openBalena v3.1.2 or later. Older CLI versions work with older openBalena
|
|
|
|
versions.
|
2020-06-29 12:45:32 +00:00
|
|
|
|
2019-04-18 15:49:17 +00:00
|
|
|
Examples:
|
|
|
|
|
|
|
|
# map remote port 22222 to localhost:22222
|
2020-06-29 12:45:32 +00:00
|
|
|
$ balena tunnel myApp -p 22222
|
|
|
|
|
2019-04-18 15:49:17 +00:00
|
|
|
# map remote port 22222 to localhost:222
|
2020-06-29 12:45:32 +00:00
|
|
|
$ balena tunnel 2ead211 -p 22222:222
|
|
|
|
|
2019-04-18 15:49:17 +00:00
|
|
|
# map remote port 22222 to any address on your host machine, port 22222
|
2020-06-29 12:45:32 +00:00
|
|
|
$ balena tunnel 1546690 -p 22222:0.0.0.0
|
|
|
|
|
2019-04-18 15:49:17 +00:00
|
|
|
# map remote port 22222 to any address on your host machine, port 222
|
2020-06-29 12:45:32 +00:00
|
|
|
$ balena tunnel myApp -p 22222:0.0.0.0:222
|
|
|
|
|
2019-04-18 15:49:17 +00:00
|
|
|
# multiple port tunnels can be specified at any one time
|
2020-06-29 12:45:32 +00:00
|
|
|
$ balena tunnel myApp -p 8080:3000 -p 8081:9000
|
|
|
|
|
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### DEVICEORAPPLICATION
|
|
|
|
|
2020-12-16 15:57:25 +00:00
|
|
|
device uuid or application name/slug/id
|
2019-04-18 15:49:17 +00:00
|
|
|
|
|
|
|
### Options
|
|
|
|
|
2020-06-29 12:45:32 +00:00
|
|
|
#### -p, --port PORT
|
2019-04-18 15:49:17 +00:00
|
|
|
|
2020-06-29 12:45:32 +00:00
|
|
|
port mapping in the format <remotePort>[:[localIP:]localPort]
|
2019-04-18 15:49:17 +00:00
|
|
|
|
2015-04-16 13:34:40 +00:00
|
|
|
# Notes
|
2015-04-16 14:42:09 +00:00
|
|
|
|
2018-03-20 17:43:26 +00:00
|
|
|
## note <|note>
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-03-25 17:07:17 +00:00
|
|
|
Set or update a device note. If the note argument is not provided,
|
|
|
|
it will be read from stdin.
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-03-25 17:07:17 +00:00
|
|
|
To view device notes, use the `balena device <uuid>` command.
|
2015-04-16 13:34:40 +00:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
2018-10-19 14:38:50 +00:00
|
|
|
$ balena note "My useful note" --device 7cf02a6
|
|
|
|
$ cat note.txt | balena note --device 7cf02a6
|
2015-04-16 13:34:40 +00:00
|
|
|
|
2020-03-25 17:07:17 +00:00
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### NOTE
|
|
|
|
|
|
|
|
note content
|
|
|
|
|
2015-04-16 13:34:40 +00:00
|
|
|
### Options
|
|
|
|
|
2020-03-25 17:07:17 +00:00
|
|
|
#### -d, --device DEVICE
|
|
|
|
|
|
|
|
device UUID
|
|
|
|
|
|
|
|
#### --dev DEV
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-09-29 17:03:14 +00:00
|
|
|
# OS
|
|
|
|
|
2018-03-20 17:43:26 +00:00
|
|
|
## os versions <type>
|
2017-06-12 10:21:12 +00:00
|
|
|
|
2020-07-14 13:23:45 +00:00
|
|
|
Show the available balenaOS versions for the given device type.
|
|
|
|
Check available types with `balena devices supported`.
|
2017-06-12 10:21:12 +00:00
|
|
|
|
2020-07-14 13:23:45 +00:00
|
|
|
Examples:
|
2017-06-12 10:21:12 +00:00
|
|
|
|
2018-10-19 14:38:50 +00:00
|
|
|
$ balena os versions raspberrypi3
|
2017-06-12 10:21:12 +00:00
|
|
|
|
2020-07-14 13:23:45 +00:00
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### TYPE
|
|
|
|
|
|
|
|
device type
|
|
|
|
|
|
|
|
### Options
|
|
|
|
|
2018-03-20 17:43:26 +00:00
|
|
|
## os download <type>
|
2015-09-29 17:03:14 +00:00
|
|
|
|
2020-07-13 13:07:51 +00:00
|
|
|
Download an unconfigured OS image for a certain device type.
|
2018-10-19 14:38:50 +00:00
|
|
|
Check available types with `balena devices supported`
|
2015-09-29 17:03:14 +00:00
|
|
|
|
2020-07-13 13:07:51 +00:00
|
|
|
Note: Currently this command only works with balenaCloud, not openBalena.
|
|
|
|
If using openBalena, please download the OS from: https://www.balena.io/os/
|
2020-07-03 10:40:05 +00:00
|
|
|
|
2017-03-22 10:50:06 +00:00
|
|
|
If version is not specified the newest stable (non-pre-release) version of OS
|
2020-07-13 13:07:51 +00:00
|
|
|
is downloaded (if available), otherwise the newest version (if all existing
|
2017-03-22 10:50:06 +00:00
|
|
|
versions for the given device type are pre-release).
|
|
|
|
|
|
|
|
You can pass `--version menu` to pick the OS version from the interactive menu
|
|
|
|
of all available versions.
|
|
|
|
|
2020-11-09 06:13:06 +00:00
|
|
|
To download a development image append `.dev` to the version or select from
|
|
|
|
the interactive menu.
|
|
|
|
|
2015-09-29 17:03:14 +00:00
|
|
|
Examples:
|
|
|
|
|
2018-10-19 14:38:50 +00:00
|
|
|
$ balena os download raspberrypi3 -o ../foo/bar/raspberry-pi.img
|
2020-11-09 06:13:06 +00:00
|
|
|
$ balena os download raspberrypi3 -o ../foo/bar/raspberry-pi.img --version 2.60.1+rev1
|
|
|
|
$ balena os download raspberrypi3 -o ../foo/bar/raspberry-pi.img --version 2.60.1+rev1.dev
|
|
|
|
$ balena os download raspberrypi3 -o ../foo/bar/raspberry-pi.img --version ^2.60.0
|
2018-10-19 14:38:50 +00:00
|
|
|
$ balena os download raspberrypi3 -o ../foo/bar/raspberry-pi.img --version latest
|
|
|
|
$ balena os download raspberrypi3 -o ../foo/bar/raspberry-pi.img --version default
|
|
|
|
$ balena os download raspberrypi3 -o ../foo/bar/raspberry-pi.img --version menu
|
2015-09-29 17:03:14 +00:00
|
|
|
|
2020-07-13 13:07:51 +00:00
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### TYPE
|
|
|
|
|
|
|
|
the device type
|
|
|
|
|
2015-09-29 17:03:14 +00:00
|
|
|
### Options
|
|
|
|
|
2020-07-13 13:07:51 +00:00
|
|
|
#### -o, --output OUTPUT
|
2015-09-29 17:03:14 +00:00
|
|
|
|
|
|
|
output path
|
|
|
|
|
2020-07-13 13:07:51 +00:00
|
|
|
#### --version VERSION
|
2017-03-22 10:50:06 +00:00
|
|
|
|
|
|
|
exact version number, or a valid semver range,
|
|
|
|
or 'latest' (includes pre-releases),
|
|
|
|
or 'default' (excludes pre-releases if at least one stable version is available),
|
|
|
|
or 'recommended' (excludes pre-releases, will fail if only pre-release versions are available),
|
|
|
|
or 'menu' (will show the interactive menu)
|
|
|
|
|
2018-03-20 17:43:26 +00:00
|
|
|
## os build-config <image> <device-type>
|
2017-06-12 10:21:12 +00:00
|
|
|
|
2020-07-16 10:15:06 +00:00
|
|
|
Interactively generate an OS config once, so that the generated config
|
|
|
|
file can be used in `balena os configure`, skipping the interactive part.
|
2017-06-12 10:21:12 +00:00
|
|
|
|
2020-07-16 10:15:06 +00:00
|
|
|
Examples:
|
2017-06-12 10:21:12 +00:00
|
|
|
|
2018-10-19 14:38:50 +00:00
|
|
|
$ balena os build-config ../path/rpi3.img raspberrypi3 --output rpi3-config.json
|
2019-05-15 18:15:57 +00:00
|
|
|
$ balena os configure ../path/rpi3.img --device 7cf02a6 --config rpi3-config.json
|
2017-06-12 10:21:12 +00:00
|
|
|
|
2020-07-16 10:15:06 +00:00
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### IMAGE
|
|
|
|
|
|
|
|
os image
|
|
|
|
|
|
|
|
#### DEVICE-TYPE
|
|
|
|
|
|
|
|
device type
|
|
|
|
|
2017-06-12 10:21:12 +00:00
|
|
|
### Options
|
|
|
|
|
2020-07-16 10:15:06 +00:00
|
|
|
#### -v, --advanced
|
2017-06-12 10:21:12 +00:00
|
|
|
|
2017-06-14 21:51:56 +00:00
|
|
|
show advanced configuration options
|
2017-06-12 10:21:12 +00:00
|
|
|
|
2020-07-16 10:15:06 +00:00
|
|
|
#### -o, --output OUTPUT
|
2017-06-12 10:21:12 +00:00
|
|
|
|
2020-07-16 10:15:06 +00:00
|
|
|
path to output JSON file
|
2017-06-12 10:21:12 +00:00
|
|
|
|
2020-09-04 14:34:34 +00:00
|
|
|
## os configure <image>
|
2015-09-29 17:36:29 +00:00
|
|
|
|
2019-10-31 01:46:14 +00:00
|
|
|
Configure a previously downloaded balenaOS image for a specific device type or
|
|
|
|
balena application.
|
2015-09-29 17:36:29 +00:00
|
|
|
|
2019-10-31 01:46:14 +00:00
|
|
|
Configuration settings such as WiFi authentication will be taken from the
|
|
|
|
following sources, in precedence order:
|
|
|
|
1. Command-line options like `--config-wifi-ssid`
|
|
|
|
2. A given `config.json` file specified with the `--config` option.
|
|
|
|
3. User input through interactive prompts (text menus).
|
2018-07-11 18:56:13 +00:00
|
|
|
|
2019-10-31 01:46:14 +00:00
|
|
|
The --device-type option may be used to override the application's default
|
|
|
|
device type, in case of an application with mixed device types.
|
2017-11-16 18:13:20 +00:00
|
|
|
|
2020-01-21 16:51:06 +00:00
|
|
|
The --system-connection (-c) option can be used to inject NetworkManager connection
|
|
|
|
profiles for additional network interfaces, such as cellular/GSM or additional
|
|
|
|
WiFi or ethernet connections. This option may be passed multiple times in case there
|
|
|
|
are multiple files to inject. See connection profile examples and reference at:
|
|
|
|
https://www.balena.io/docs/reference/OS/network/2.x/
|
2021-03-30 09:06:30 +00:00
|
|
|
https://developer.gnome.org/NetworkManager/stable/ref-settings.html
|
2020-01-21 16:51:06 +00:00
|
|
|
|
2019-10-31 01:46:14 +00:00
|
|
|
The --device-api-key option is deprecated and will be removed in a future release.
|
|
|
|
A suitable key is automatically generated or fetched if this option is omitted.
|
2018-12-07 15:44:18 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
Applications may be specified by app name, slug, or numeric ID. App slugs
|
|
|
|
are the recommended option, as they are unique and unambiguous. Slugs
|
|
|
|
can be listed with the `balena apps` command. Note that slugs may change
|
|
|
|
if the application is renamed.
|
|
|
|
App names are not unique and may result in "Application is ambiguous" errors
|
|
|
|
at any time (even if it "used to work in the past"), for example if the name
|
|
|
|
clashes with a newly created public application, or with apps from other balena
|
|
|
|
accounts that you may have been invited to as a member. For this reason, app
|
|
|
|
names are especially discouraged in scripts (e.g. CI environments).
|
|
|
|
Numeric app IDs are deprecated because they consist of an implementation detail
|
|
|
|
of the balena backend. We intend to remove support for numeric IDs at some point
|
|
|
|
in the future.
|
|
|
|
|
2020-06-25 11:57:47 +00:00
|
|
|
Note: This command is currently not supported on Windows natively. Windows users
|
|
|
|
are advised to install the Windows Subsystem for Linux (WSL) with Ubuntu, and use
|
2020-10-20 21:11:17 +00:00
|
|
|
the Linux release of the balena CLI:
|
2020-06-25 11:57:47 +00:00
|
|
|
https://docs.microsoft.com/en-us/windows/wsl/about
|
|
|
|
|
2015-09-29 17:36:29 +00:00
|
|
|
Examples:
|
|
|
|
|
2018-12-07 15:44:18 +00:00
|
|
|
$ balena os configure ../path/rpi3.img --device 7cf02a6
|
|
|
|
$ balena os configure ../path/rpi3.img --device 7cf02a6 --device-api-key <existingDeviceKey>
|
|
|
|
$ balena os configure ../path/rpi3.img --app MyApp
|
2020-12-10 12:30:17 +00:00
|
|
|
$ balena os configure ../path/rpi3.img -a myorg/myapp
|
2018-12-07 15:44:18 +00:00
|
|
|
$ balena os configure ../path/rpi3.img --app MyApp --version 2.12.7
|
|
|
|
$ balena os configure ../path/rpi3.img --app MyFinApp --device-type raspberrypi3
|
2019-10-31 01:46:14 +00:00
|
|
|
$ balena os configure ../path/rpi3.img --app MyFinApp --device-type raspberrypi3 --config myWifiConfig.json
|
|
|
|
|
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### IMAGE
|
|
|
|
|
|
|
|
path to a balenaOS image file, e.g. "rpi3.img"
|
2015-09-29 17:36:29 +00:00
|
|
|
|
2015-10-19 17:38:09 +00:00
|
|
|
### Options
|
|
|
|
|
2019-10-31 01:46:14 +00:00
|
|
|
#### -v, --advanced
|
2015-10-19 17:38:09 +00:00
|
|
|
|
2019-10-31 01:46:14 +00:00
|
|
|
ask advanced configuration questions (when in interactive mode)
|
2015-10-19 17:38:09 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
#### -a, --application APPLICATION
|
2019-10-31 01:46:14 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
application name, slug (preferred), or numeric ID (deprecated)
|
2019-10-31 01:46:14 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
#### --app APP
|
2017-11-16 18:13:20 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
same as '--application'
|
2017-11-16 18:13:20 +00:00
|
|
|
|
2019-10-31 01:46:14 +00:00
|
|
|
#### --config CONFIG
|
2017-11-16 18:13:20 +00:00
|
|
|
|
2019-10-31 01:46:14 +00:00
|
|
|
path to a pre-generated config.json file to be injected in the OS image
|
2017-11-16 18:13:20 +00:00
|
|
|
|
2019-10-31 01:46:14 +00:00
|
|
|
#### --config-app-update-poll-interval CONFIG-APP-UPDATE-POLL-INTERVAL
|
2017-11-16 18:13:20 +00:00
|
|
|
|
2019-10-31 01:46:14 +00:00
|
|
|
interval (in minutes) for the on-device balena supervisor periodic app update check
|
2017-11-16 18:13:20 +00:00
|
|
|
|
2019-10-31 01:46:14 +00:00
|
|
|
#### --config-network CONFIG-NETWORK
|
2018-12-07 15:44:18 +00:00
|
|
|
|
2019-10-31 01:46:14 +00:00
|
|
|
device network type (non-interactive configuration)
|
2018-12-07 15:44:18 +00:00
|
|
|
|
2019-10-31 01:46:14 +00:00
|
|
|
#### --config-wifi-key CONFIG-WIFI-KEY
|
2018-07-11 18:56:13 +00:00
|
|
|
|
2019-10-31 01:46:14 +00:00
|
|
|
WiFi key (password) (non-interactive configuration)
|
2018-07-11 18:56:13 +00:00
|
|
|
|
2019-10-31 01:46:14 +00:00
|
|
|
#### --config-wifi-ssid CONFIG-WIFI-SSID
|
2017-06-12 10:21:12 +00:00
|
|
|
|
2019-10-31 01:46:14 +00:00
|
|
|
WiFi SSID (network name) (non-interactive configuration)
|
|
|
|
|
|
|
|
#### -d, --device DEVICE
|
|
|
|
|
|
|
|
device UUID
|
|
|
|
|
|
|
|
#### -k, --device-api-key DEVICE-API-KEY
|
|
|
|
|
|
|
|
custom device API key (DEPRECATED and only supported with balenaOS 2.0.3+)
|
|
|
|
|
|
|
|
#### --device-type DEVICE-TYPE
|
|
|
|
|
|
|
|
device type slug (e.g. "raspberrypi3") to override the application device type
|
|
|
|
|
2020-06-11 11:32:20 +00:00
|
|
|
#### --initial-device-name INITIAL-DEVICE-NAME
|
|
|
|
|
|
|
|
This option will set the device name when the device provisions
|
|
|
|
|
2019-10-31 01:46:14 +00:00
|
|
|
#### --version VERSION
|
|
|
|
|
|
|
|
balenaOS version, for example "2.32.0" or "2.44.0+rev1"
|
2017-06-12 10:21:12 +00:00
|
|
|
|
2020-01-21 16:51:06 +00:00
|
|
|
#### -c, --system-connection SYSTEM-CONNECTION
|
|
|
|
|
|
|
|
paths to local files to place into the 'system-connections' directory
|
|
|
|
|
2018-03-20 17:43:26 +00:00
|
|
|
## os initialize <image>
|
2015-09-29 18:52:34 +00:00
|
|
|
|
2020-07-15 19:13:18 +00:00
|
|
|
Initialize an os image for a device with a previously
|
|
|
|
configured operating system image.
|
|
|
|
|
2017-03-24 09:48:14 +00:00
|
|
|
|
|
|
|
Note: Initializing the device may ask for administrative permissions
|
|
|
|
because we need to access the raw devices directly.
|
2015-09-29 18:52:34 +00:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
2020-07-15 19:13:18 +00:00
|
|
|
$ balena os initialize ../path/rpi.img --type raspberry-pi
|
2015-10-15 12:48:34 +00:00
|
|
|
|
2020-07-15 19:13:18 +00:00
|
|
|
### Arguments
|
2015-10-15 12:48:34 +00:00
|
|
|
|
2020-07-15 19:13:18 +00:00
|
|
|
#### IMAGE
|
2015-10-15 12:48:34 +00:00
|
|
|
|
2020-07-15 19:13:18 +00:00
|
|
|
path to OS image
|
2015-10-15 12:48:34 +00:00
|
|
|
|
2020-07-15 19:13:18 +00:00
|
|
|
### Options
|
|
|
|
|
|
|
|
#### -t, --type TYPE
|
2015-10-15 12:48:34 +00:00
|
|
|
|
2018-10-19 14:38:50 +00:00
|
|
|
device type (Check available types with `balena devices supported`)
|
2015-09-29 18:52:34 +00:00
|
|
|
|
2020-07-15 19:13:18 +00:00
|
|
|
#### -d, --drive DRIVE
|
|
|
|
|
|
|
|
the drive to write the image to, eg. `/dev/sdb` or `/dev/mmcblk0`.
|
|
|
|
Careful with this as you can erase your hard drive.
|
|
|
|
Check `balena util available-drives` for available options.
|
2015-10-20 13:17:48 +00:00
|
|
|
|
2020-07-15 19:13:18 +00:00
|
|
|
#### -y, --yes
|
|
|
|
|
|
|
|
answer "yes" to all questions (non interactive use)
|
2015-10-20 13:17:48 +00:00
|
|
|
|
2015-11-10 16:53:34 +00:00
|
|
|
# Config
|
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
## config generate
|
|
|
|
|
|
|
|
Generate a config.json file for a device or application.
|
|
|
|
|
|
|
|
Calling this command with the exact version number of the targeted image is required.
|
|
|
|
|
|
|
|
This command is interactive by default, but you can do this automatically without interactivity
|
|
|
|
by specifying an option for each question on the command line, if you know the questions
|
|
|
|
that will be asked for the relevant device type.
|
2015-11-10 16:53:34 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
In case that you want to configure an image for an application with mixed device types,
|
2020-12-10 12:30:17 +00:00
|
|
|
you can pass the --deviceType argument along with --application to specify the target device type.
|
|
|
|
|
|
|
|
Applications may be specified by app name, slug, or numeric ID. App slugs
|
|
|
|
are the recommended option, as they are unique and unambiguous. Slugs
|
|
|
|
can be listed with the `balena apps` command. Note that slugs may change
|
|
|
|
if the application is renamed.
|
|
|
|
App names are not unique and may result in "Application is ambiguous" errors
|
|
|
|
at any time (even if it "used to work in the past"), for example if the name
|
|
|
|
clashes with a newly created public application, or with apps from other balena
|
|
|
|
accounts that you may have been invited to as a member. For this reason, app
|
|
|
|
names are especially discouraged in scripts (e.g. CI environments).
|
|
|
|
Numeric app IDs are deprecated because they consist of an implementation detail
|
|
|
|
of the balena backend. We intend to remove support for numeric IDs at some point
|
|
|
|
in the future.
|
2015-11-10 16:53:34 +00:00
|
|
|
|
2015-11-10 18:27:01 +00:00
|
|
|
Examples:
|
2015-11-10 16:53:34 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
$ balena config generate --device 7cf02a6 --version 2.12.7
|
|
|
|
$ balena config generate --device 7cf02a6 --version 2.12.7 --generate-device-api-key
|
|
|
|
$ balena config generate --device 7cf02a6 --version 2.12.7 --device-api-key <existingDeviceKey>
|
|
|
|
$ balena config generate --device 7cf02a6 --version 2.12.7 --output config.json
|
|
|
|
$ balena config generate --app MyApp --version 2.12.7
|
2020-12-10 12:30:17 +00:00
|
|
|
$ balena config generate --app myorg/myapp --version 2.12.7
|
|
|
|
$ balena config generate --app MyApp --version 2.12.7 --deviceType fincm3
|
2020-07-28 12:40:47 +00:00
|
|
|
$ balena config generate --app MyApp --version 2.12.7 --output config.json
|
|
|
|
$ balena config generate --app MyApp --version 2.12.7 --network wifi --wifiSsid mySsid --wifiKey abcdefgh --appUpdatePollInterval 1
|
2015-11-10 16:53:34 +00:00
|
|
|
|
|
|
|
### Options
|
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
#### --version VERSION
|
2015-11-10 16:53:34 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
a balenaOS version
|
|
|
|
|
|
|
|
#### -a, --application APPLICATION
|
2015-11-10 16:53:34 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
application name, slug (preferred), or numeric ID (deprecated)
|
2015-11-10 16:53:34 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
#### --app APP
|
2015-11-10 16:53:34 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
same as '--application'
|
2015-11-10 18:27:01 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
#### -d, --device DEVICE
|
2015-11-10 18:27:01 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
device uuid
|
2015-11-10 18:27:01 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
#### -k, --deviceApiKey DEVICEAPIKEY
|
2015-11-10 18:27:01 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
custom device key - note that this is only supported on balenaOS 2.0.3+
|
2015-11-10 18:27:01 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
#### --deviceType DEVICETYPE
|
2015-11-10 18:27:01 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
device type slug
|
|
|
|
|
|
|
|
#### --generate-device-api-key
|
2015-11-10 18:27:01 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
generate a fresh device key for the device
|
2015-11-10 18:27:01 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
#### -o, --output OUTPUT
|
2015-11-10 18:27:01 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
path of output file
|
2016-03-17 20:07:19 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
#### --network NETWORK
|
2016-03-17 20:07:19 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
the network type to use: ethernet or wifi
|
2016-03-17 20:07:19 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
#### --wifiSsid WIFISSID
|
2016-03-17 20:07:19 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
the wifi ssid to use (used only if --network is set to wifi)
|
2016-03-17 20:07:19 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
#### --wifiKey WIFIKEY
|
2016-03-17 20:07:19 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
the wifi key to use (used only if --network is set to wifi)
|
2016-03-17 20:07:19 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
#### --appUpdatePollInterval APPUPDATEPOLLINTERVAL
|
2016-03-17 20:07:19 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
how frequently (in minutes) to poll for application updates
|
2016-03-17 20:07:19 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
## config inject <file>
|
2015-11-11 14:38:45 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
Inject a config.json file to the mounted filesystem,
|
|
|
|
e.g. the SD card of a provisioned device or balenaOS image.
|
2015-11-11 14:38:45 +00:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
$ balena config inject my/config.json --type raspberrypi3
|
|
|
|
$ balena config inject my/config.json --type raspberrypi3 --drive /dev/disk2
|
|
|
|
|
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### FILE
|
|
|
|
|
|
|
|
the path to the config.json file to inject
|
2015-11-11 14:38:45 +00:00
|
|
|
|
|
|
|
### Options
|
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
#### -t, --type TYPE
|
2015-11-11 14:38:45 +00:00
|
|
|
|
2018-10-19 14:38:50 +00:00
|
|
|
device type (Check available types with `balena devices supported`)
|
2015-11-11 14:38:45 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
#### -d, --drive DRIVE
|
2015-11-11 14:38:45 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
device filesystem or OS image location
|
2015-11-11 14:38:45 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
## config read
|
2015-11-11 14:38:45 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
Read the config.json file from the mounted filesystem,
|
|
|
|
e.g. the SD card of a provisioned device or balenaOS image.
|
2015-11-11 14:38:45 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
Examples:
|
2016-02-27 02:37:15 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
$ balena config read --type raspberrypi3
|
|
|
|
$ balena config read --type raspberrypi3 --drive /dev/disk2
|
2017-11-14 13:14:53 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
### Options
|
2018-07-11 18:56:13 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
#### -t, --type TYPE
|
2016-02-27 02:37:15 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
device type (Check available types with `balena devices supported`)
|
2018-12-07 15:44:18 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
#### -d, --drive DRIVE
|
2016-02-27 02:37:15 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
device filesystem or OS image location
|
2016-02-27 02:37:15 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
## config reconfigure
|
2016-02-27 02:37:15 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
Interactively reconfigure a provisioned device or OS image.
|
2018-07-11 18:56:13 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
Examples:
|
2018-07-11 18:56:13 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
$ balena config reconfigure --type raspberrypi3
|
|
|
|
$ balena config reconfigure --type raspberrypi3 --advanced
|
|
|
|
$ balena config reconfigure --type raspberrypi3 --drive /dev/disk2
|
2016-03-28 13:25:40 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
### Options
|
2016-03-28 13:25:40 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
#### -t, --type TYPE
|
2016-03-28 13:25:40 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
device type (Check available types with `balena devices supported`)
|
2016-03-28 13:25:40 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
#### -d, --drive DRIVE
|
2017-04-19 03:21:59 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
device filesystem or OS image location
|
2017-04-19 03:21:59 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
#### -v, --advanced
|
2018-12-07 15:44:18 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
show advanced commands
|
2018-12-07 15:44:18 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
## config write <key> <value>
|
2018-07-10 17:45:48 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
Write a key-value pair to the config.json file on the mounted filesystem,
|
|
|
|
e.g. the SD card of a provisioned device or balenaOS image.
|
2018-07-10 17:45:48 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
Examples:
|
2016-02-27 02:37:15 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
$ balena config write --type raspberrypi3 username johndoe
|
|
|
|
$ balena config write --type raspberrypi3 --drive /dev/disk2 username johndoe
|
|
|
|
$ balena config write --type raspberrypi3 files.network/settings "..."
|
2016-02-27 02:37:15 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
### Arguments
|
2017-11-14 13:14:53 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
#### KEY
|
2017-11-14 13:14:53 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
the key of the config parameter to write
|
2017-11-14 13:14:53 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
#### VALUE
|
2017-11-14 13:14:53 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
the value of the config parameter to write
|
2017-11-14 13:14:53 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
### Options
|
2017-11-14 13:14:53 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
#### -t, --type TYPE
|
2017-11-14 13:14:53 +00:00
|
|
|
|
2020-07-28 12:40:47 +00:00
|
|
|
device type (Check available types with `balena devices supported`)
|
|
|
|
|
|
|
|
#### -d, --drive DRIVE
|
|
|
|
|
|
|
|
device filesystem or OS image location
|
2017-11-14 13:14:53 +00:00
|
|
|
|
2017-10-25 11:17:07 +00:00
|
|
|
# Preload
|
|
|
|
|
2018-03-20 17:43:26 +00:00
|
|
|
## preload <image>
|
2017-10-25 11:17:07 +00:00
|
|
|
|
2019-11-08 14:32:21 +00:00
|
|
|
Preload a balena application release (app images/containers), and optionally
|
2020-05-15 20:39:45 +00:00
|
|
|
a balenaOS splash screen, in a previously downloaded '.img' balenaOS image file
|
|
|
|
in the local disk (a zip file is only accepted for the Intel Edison device type).
|
|
|
|
After preloading, the balenaOS image file can be flashed to a device's SD card.
|
|
|
|
When the device boots, it will not need to download the application, as it was
|
|
|
|
preloaded.
|
2019-11-08 14:32:21 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
Applications may be specified by app name, slug, or numeric ID. App slugs
|
|
|
|
are the recommended option, as they are unique and unambiguous. Slugs
|
|
|
|
can be listed with the `balena apps` command. Note that slugs may change
|
|
|
|
if the application is renamed.
|
|
|
|
App names are not unique and may result in "Application is ambiguous" errors
|
|
|
|
at any time (even if it "used to work in the past"), for example if the name
|
|
|
|
clashes with a newly created public application, or with apps from other balena
|
|
|
|
accounts that you may have been invited to as a member. For this reason, app
|
|
|
|
names are especially discouraged in scripts (e.g. CI environments).
|
|
|
|
Numeric app IDs are deprecated because they consist of an implementation detail
|
|
|
|
of the balena backend. We intend to remove support for numeric IDs at some point
|
|
|
|
in the future.
|
|
|
|
|
2018-10-19 14:38:50 +00:00
|
|
|
Warning: "balena preload" requires Docker to be correctly installed in
|
2017-10-25 11:17:07 +00:00
|
|
|
your shell environment. For more information (including Windows support)
|
2019-11-08 14:32:21 +00:00
|
|
|
check: https://github.com/balena-io/balena-cli/blob/master/INSTALL.md
|
2017-10-25 11:17:07 +00:00
|
|
|
|
|
|
|
Examples:
|
2018-10-03 13:27:53 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
$ balena preload balena.img --app MyApp --commit e1f2592fc6ee949e68756d4f4a48e49bff8d72a0
|
|
|
|
$ balena preload balena.img --app myorg/myapp --commit e1f2592fc6ee949e68756d4f4a48e49bff8d72a0 --splash-image image.png
|
2018-10-19 14:38:50 +00:00
|
|
|
$ balena preload balena.img
|
2017-10-25 11:17:07 +00:00
|
|
|
|
2020-08-26 08:39:47 +00:00
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### IMAGE
|
|
|
|
|
|
|
|
the image file path
|
|
|
|
|
2017-10-25 11:17:07 +00:00
|
|
|
### Options
|
|
|
|
|
2020-08-26 08:39:47 +00:00
|
|
|
#### -a, --app APP
|
2017-10-25 11:17:07 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
application name, slug (preferred), or numeric ID (deprecated)
|
2017-10-25 11:17:07 +00:00
|
|
|
|
2020-08-26 08:39:47 +00:00
|
|
|
#### -c, --commit COMMIT
|
2017-10-25 11:17:07 +00:00
|
|
|
|
2019-05-28 09:39:30 +00:00
|
|
|
The commit hash for a specific application release to preload, use "current" to specify the current
|
|
|
|
release (ignored if no appId is given). The current release is usually also the latest, but can be
|
|
|
|
manually pinned using https://github.com/balena-io-projects/staged-releases .
|
2017-10-25 11:17:07 +00:00
|
|
|
|
2020-08-26 08:39:47 +00:00
|
|
|
#### -s, --splash-image SPLASH-IMAGE
|
2017-10-25 11:17:07 +00:00
|
|
|
|
|
|
|
path to a png image to replace the splash screen
|
|
|
|
|
2018-08-20 16:19:10 +00:00
|
|
|
#### --dont-check-arch
|
2017-10-25 11:17:07 +00:00
|
|
|
|
2020-08-26 08:39:47 +00:00
|
|
|
disables check for matching architecture in image and application
|
2017-10-25 11:17:07 +00:00
|
|
|
|
2020-08-26 08:39:47 +00:00
|
|
|
#### -p, --pin-device-to-release
|
2018-05-30 13:33:05 +00:00
|
|
|
|
2020-08-26 08:39:47 +00:00
|
|
|
pin the preloaded device to the preloaded release on provision
|
2018-05-30 13:33:05 +00:00
|
|
|
|
2020-12-28 16:08:20 +00:00
|
|
|
#### --additional-space ADDITIONAL-SPACE
|
|
|
|
|
|
|
|
expand the image by this amount of bytes instead of automatically estimating the required amount
|
|
|
|
|
2020-08-26 08:39:47 +00:00
|
|
|
#### --add-certificate ADD-CERTIFICATE
|
2019-05-30 11:57:03 +00:00
|
|
|
|
|
|
|
Add the given certificate (in PEM format) to /etc/ssl/certs in the preloading container.
|
|
|
|
The file name must end with '.crt' and must not be already contained in the preloader's
|
|
|
|
/etc/ssl/certs folder.
|
|
|
|
Can be repeated to add multiple certificates.
|
|
|
|
|
2020-08-26 08:39:47 +00:00
|
|
|
#### -P, --docker DOCKER
|
2017-10-25 11:17:07 +00:00
|
|
|
|
2019-02-26 13:32:27 +00:00
|
|
|
Path to a local docker socket (e.g. /var/run/docker.sock)
|
2017-10-25 11:17:07 +00:00
|
|
|
|
2020-08-26 08:39:47 +00:00
|
|
|
#### -h, --dockerHost DOCKERHOST
|
2017-10-25 11:17:07 +00:00
|
|
|
|
2019-02-26 13:32:27 +00:00
|
|
|
Docker daemon hostname or IP address (dev machine or balena device)
|
2017-10-25 11:17:07 +00:00
|
|
|
|
2020-08-26 08:39:47 +00:00
|
|
|
#### --dockerPort DOCKERPORT
|
2017-10-25 11:17:07 +00:00
|
|
|
|
2019-02-26 13:32:27 +00:00
|
|
|
Docker daemon TCP port number (hint: 2375 for balena devices)
|
2017-10-25 11:17:07 +00:00
|
|
|
|
2020-08-26 08:39:47 +00:00
|
|
|
#### --ca CA
|
2017-10-25 11:17:07 +00:00
|
|
|
|
|
|
|
Docker host TLS certificate authority file
|
|
|
|
|
2020-08-26 08:39:47 +00:00
|
|
|
#### --cert CERT
|
2017-10-25 11:17:07 +00:00
|
|
|
|
|
|
|
Docker host TLS certificate file
|
|
|
|
|
2020-08-26 08:39:47 +00:00
|
|
|
#### --key KEY
|
2017-10-25 11:17:07 +00:00
|
|
|
|
|
|
|
Docker host TLS key file
|
|
|
|
|
2018-06-26 16:59:44 +00:00
|
|
|
# Push
|
|
|
|
|
2018-10-16 10:25:37 +00:00
|
|
|
## push <applicationOrDevice>
|
2018-06-26 16:59:44 +00:00
|
|
|
|
2020-12-18 15:56:47 +00:00
|
|
|
Start a build on the remote balenaCloud build servers, or a local mode device.
|
2018-10-16 10:25:37 +00:00
|
|
|
|
2019-02-27 18:01:47 +00:00
|
|
|
When building on the balenaCloud servers, the given source directory will be
|
|
|
|
sent to the remote server. This can be used as a drop-in replacement for the
|
|
|
|
"git push" deployment method.
|
2018-06-26 16:59:44 +00:00
|
|
|
|
2019-04-23 10:38:13 +00:00
|
|
|
When building on a local mode device, the given source directory will be
|
2019-02-27 18:01:47 +00:00
|
|
|
built on the device, and the resulting containers will be run on the device.
|
|
|
|
Logs will be streamed back from the device as part of the same invocation.
|
|
|
|
The web dashboard can be used to switch a device to local mode:
|
|
|
|
https://www.balena.io/docs/learn/develop/local-mode/
|
2019-04-23 10:38:13 +00:00
|
|
|
Note that local mode requires a supervisor version of at least v7.21.0.
|
2019-04-24 16:30:18 +00:00
|
|
|
The logs from only a single service can be shown with the --service flag, and
|
|
|
|
showing only the system logs can be achieved with --system. Note that these
|
|
|
|
flags can be used together.
|
2019-04-23 10:38:13 +00:00
|
|
|
|
2019-05-29 14:09:05 +00:00
|
|
|
When pushing to a local device a live session will be started.
|
|
|
|
The project source folder is watched for filesystem events, and changes
|
|
|
|
to files and folders are automatically synchronized to the running
|
2020-01-03 18:37:55 +00:00
|
|
|
containers. The synchronization is only in one direction, from this machine to
|
2019-05-29 14:09:05 +00:00
|
|
|
the device, and changes made on the device itself may be overwritten.
|
|
|
|
This feature requires a device running supervisor version v9.7.0 or greater.
|
2018-11-07 18:15:05 +00:00
|
|
|
|
2020-06-24 23:01:53 +00:00
|
|
|
REGISTRY SECRETS
|
2018-11-07 18:15:05 +00:00
|
|
|
The --registry-secrets option specifies a JSON or YAML file containing private
|
|
|
|
Docker registry usernames and passwords to be used when pulling base images.
|
|
|
|
Sample registry-secrets YAML file:
|
2020-06-24 23:01:53 +00:00
|
|
|
```
|
2019-02-27 18:01:47 +00:00
|
|
|
'my-registry-server.com:25000':
|
2018-11-07 18:15:05 +00:00
|
|
|
username: ann
|
|
|
|
password: hunter2
|
2019-02-27 18:01:47 +00:00
|
|
|
'': # Use the empty string to refer to the Docker Hub
|
|
|
|
username: mike
|
|
|
|
password: cze14
|
|
|
|
'eu.gcr.io': # Google Container Registry
|
|
|
|
username: '_json_key'
|
|
|
|
password: '{escaped contents of the GCR keyfile.json file}'
|
2020-06-24 23:01:53 +00:00
|
|
|
```
|
2019-08-15 14:38:50 +00:00
|
|
|
For a sample project using registry secrets with the Google Container Registry,
|
2020-09-10 14:02:04 +00:00
|
|
|
check: https://github.com/balena-io-examples/sample-gcr-registry-secrets
|
2019-08-15 14:38:50 +00:00
|
|
|
|
|
|
|
If the --registry-secrets option is not specified, and a secrets.yml or
|
|
|
|
secrets.json file exists in the balena directory (usually $HOME/.balena),
|
|
|
|
this file will be used instead.
|
2019-06-18 10:13:09 +00:00
|
|
|
|
2020-06-24 23:01:53 +00:00
|
|
|
DOCKERIGNORE AND GITIGNORE FILES
|
2020-10-20 21:11:17 +00:00
|
|
|
By default, the balena CLI will use a single ".dockerignore" file (if any) at
|
2020-06-24 23:01:53 +00:00
|
|
|
the project root (--source directory) in order to decide which source files to
|
2020-09-08 14:30:41 +00:00
|
|
|
exclude from the "build context" (tar stream) sent to balenaCloud, Docker
|
|
|
|
daemon or balenaEngine. In a microservices (multicontainer) application, the
|
|
|
|
source directory is the directory that contains the "docker-compose.yml" file.
|
|
|
|
|
|
|
|
The --multi-dockerignore (-m) option may be used with microservices
|
|
|
|
(multicontainer) applications that define a docker-compose.yml file. When
|
|
|
|
this option is used, each service subdirectory (defined by the `build` or
|
|
|
|
`build.context` service properties in the docker-compose.yml file) is
|
|
|
|
filtered separately according to a .dockerignore file defined in the service
|
|
|
|
subdirectory. If no .dockerignore file exists in a service subdirectory, then
|
|
|
|
only the default .dockerignore patterns (see below) apply for that service
|
|
|
|
subdirectory.
|
2020-06-24 23:01:53 +00:00
|
|
|
|
|
|
|
When the --multi-dockerignore (-m) option is used, the .dockerignore file (if
|
|
|
|
any) defined at the overall project root will be used to filter files and
|
|
|
|
subdirectories other than service subdirectories. It will not have any effect
|
|
|
|
on service subdirectories, whether or not a service subdirectory defines its
|
|
|
|
own .dockerignore file. Multiple .dockerignore files are not merged or added
|
2021-01-12 19:32:33 +00:00
|
|
|
together, and cannot override or extend other files. This behavior maximizes
|
2020-06-24 23:01:53 +00:00
|
|
|
compatibility with the standard docker-compose tool, while still allowing a
|
|
|
|
root .dockerignore file (at the overall project root) to filter files and
|
|
|
|
folders that are outside service subdirectories.
|
|
|
|
|
2020-10-20 21:11:17 +00:00
|
|
|
balena CLI releases older than v12.0.0 also took .gitignore files into account.
|
2020-06-24 23:01:53 +00:00
|
|
|
This behavior is deprecated, but may still be enabled with the --gitignore (-g)
|
|
|
|
option if compatibility is required. This option is mutually exclusive with
|
|
|
|
--multi-dockerignore (-m) and will be removed in the CLI's next major version
|
|
|
|
release (v13).
|
|
|
|
|
|
|
|
Default .dockerignore patterns
|
|
|
|
When --gitignore (-g) is NOT used (i.e. when not in v11 compatibility mode), a
|
|
|
|
few default/hardcoded dockerignore patterns are "merged" (in memory) with the
|
|
|
|
patterns found in the applicable .dockerignore files, in the following order:
|
|
|
|
```
|
2020-05-01 11:18:11 +00:00
|
|
|
**/.git
|
2020-06-24 23:01:53 +00:00
|
|
|
< user's patterns from the applicable '.dockerignore' file, if any >
|
2020-05-01 11:18:11 +00:00
|
|
|
!**/.balena
|
|
|
|
!**/.resin
|
|
|
|
!**/Dockerfile
|
|
|
|
!**/Dockerfile.*
|
|
|
|
!**/docker-compose.yml
|
2020-06-24 23:01:53 +00:00
|
|
|
```
|
|
|
|
These patterns always apply, whether or not .dockerignore files exist in the
|
|
|
|
project. If necessary, the effect of the `**/.git` pattern may be modified by
|
|
|
|
adding counter patterns to the applicable .dockerignore file(s), for example
|
|
|
|
`!mysubmodule/.git`. For documentation on pattern format, see:
|
2020-05-01 11:18:11 +00:00
|
|
|
- https://docs.docker.com/engine/reference/builder/#dockerignore-file
|
|
|
|
- https://www.npmjs.com/package/@balena/dockerignore
|
|
|
|
|
2020-09-08 14:30:41 +00:00
|
|
|
Note: the --service and --env flags must come after the applicationOrDevice
|
|
|
|
parameter, as per examples.
|
2020-07-24 12:25:46 +00:00
|
|
|
|
2018-06-26 16:59:44 +00:00
|
|
|
Examples:
|
|
|
|
|
2018-10-19 14:38:50 +00:00
|
|
|
$ balena push myApp
|
|
|
|
$ balena push myApp --source <source directory>
|
|
|
|
$ balena push myApp -s <source directory>
|
2020-12-16 14:42:25 +00:00
|
|
|
$ balena push myApp --release-tag key1 "" key2 "value2 with spaces"
|
2020-12-18 15:56:47 +00:00
|
|
|
$ balena push myorg/myapp
|
2020-07-24 12:25:46 +00:00
|
|
|
|
2018-10-19 14:38:50 +00:00
|
|
|
$ balena push 10.0.0.1
|
|
|
|
$ balena push 10.0.0.1 --source <source directory>
|
2019-04-24 13:59:07 +00:00
|
|
|
$ balena push 10.0.0.1 --service my-service
|
2019-05-27 10:32:47 +00:00
|
|
|
$ balena push 10.0.0.1 --env MY_ENV_VAR=value --env my-service:SERVICE_VAR=value
|
2019-05-29 14:09:05 +00:00
|
|
|
$ balena push 10.0.0.1 --nolive
|
2020-07-24 12:25:46 +00:00
|
|
|
|
2019-04-24 16:47:08 +00:00
|
|
|
$ balena push 23c73a1.local --system
|
|
|
|
$ balena push 23c73a1.local --system --service my-service
|
2018-10-16 10:25:37 +00:00
|
|
|
|
2020-07-24 12:25:46 +00:00
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### APPLICATIONORDEVICE
|
|
|
|
|
2020-12-18 15:56:47 +00:00
|
|
|
application name or slug, or local device IP address or hostname
|
2020-07-24 12:25:46 +00:00
|
|
|
|
2018-06-26 16:59:44 +00:00
|
|
|
### Options
|
|
|
|
|
2020-07-24 12:25:46 +00:00
|
|
|
#### -s, --source SOURCE
|
2018-06-26 16:59:44 +00:00
|
|
|
|
2020-09-08 14:30:41 +00:00
|
|
|
Source directory to be sent to balenaCloud or balenaOS device
|
|
|
|
(default: current working dir)
|
2018-06-26 16:59:44 +00:00
|
|
|
|
2020-10-01 23:10:40 +00:00
|
|
|
#### -e, --emulated
|
2018-06-21 13:29:25 +00:00
|
|
|
|
2021-02-23 12:56:59 +00:00
|
|
|
Don't use the faster, native balenaCloud ARM builders; force slower QEMU ARM
|
|
|
|
emulation on Intel x86-64 builders. This flag is sometimes used to investigate
|
|
|
|
suspected issues with the balenaCloud backend.
|
2018-06-21 13:29:25 +00:00
|
|
|
|
2020-07-24 12:25:46 +00:00
|
|
|
#### --dockerfile DOCKERFILE
|
2019-04-11 11:49:19 +00:00
|
|
|
|
|
|
|
Alternative Dockerfile name/path, relative to the source folder
|
|
|
|
|
2020-07-24 12:25:46 +00:00
|
|
|
#### -c, --nocache
|
2018-06-21 13:29:25 +00:00
|
|
|
|
2020-09-08 14:30:41 +00:00
|
|
|
Don't use cached layers of previously built images for this project. This
|
|
|
|
ensures that the latest base image and packages are pulled. Note that build
|
|
|
|
logs may still display the message _"Pulling previous images for caching
|
|
|
|
purposes" (as the cloud builder needs previous images to compute delta
|
|
|
|
updates), but the logs will not display the "Using cache" lines for each
|
|
|
|
build step of a Dockerfile.
|
2018-06-21 13:29:25 +00:00
|
|
|
|
2020-09-08 13:55:56 +00:00
|
|
|
#### --pull
|
|
|
|
|
|
|
|
When pushing to a local device, force the base images to be pulled again.
|
|
|
|
Currently this option is ignored when pushing to the balenaCloud builders.
|
|
|
|
|
2020-02-15 20:20:56 +00:00
|
|
|
#### --noparent-check
|
|
|
|
|
|
|
|
Disable project validation check of 'docker-compose.yml' file in parent folder
|
|
|
|
|
2020-07-24 12:25:46 +00:00
|
|
|
#### -R, --registry-secrets REGISTRY-SECRETS
|
2018-11-07 18:15:05 +00:00
|
|
|
|
2020-09-08 14:30:41 +00:00
|
|
|
Path to a local YAML or JSON file containing Docker registry passwords used
|
|
|
|
to pull base images. Note that if registry-secrets are not provided on the
|
|
|
|
command line, a secrets configuration file from the balena directory will be
|
|
|
|
used (usually $HOME/.balena/secrets.yml|.json)
|
2018-11-07 18:15:05 +00:00
|
|
|
|
2019-05-29 14:09:05 +00:00
|
|
|
#### --nolive
|
2019-04-23 10:38:13 +00:00
|
|
|
|
2020-09-08 14:30:41 +00:00
|
|
|
Don't run a live session on this push. The filesystem will not be monitored,
|
|
|
|
and changes will not be synchronized to any running containers. Note that both
|
|
|
|
this flag and --detached and required to cause the process to end once the
|
|
|
|
initial build has completed.
|
2019-01-14 16:51:57 +00:00
|
|
|
|
2020-07-24 12:25:46 +00:00
|
|
|
#### -d, --detached
|
2019-04-24 13:31:30 +00:00
|
|
|
|
2020-09-08 14:30:41 +00:00
|
|
|
When pushing to the cloud, this option will cause the build to start, then
|
|
|
|
return execution back to the shell, with the status and release ID (if
|
|
|
|
applicable). When pushing to a local mode device, this option will cause
|
|
|
|
the command to not tail application logs when the build has completed.
|
2019-04-24 13:31:30 +00:00
|
|
|
|
2020-07-24 12:25:46 +00:00
|
|
|
#### --service SERVICE
|
2019-04-24 13:59:07 +00:00
|
|
|
|
2019-05-28 15:56:39 +00:00
|
|
|
Reject logs not originating from this service.
|
|
|
|
This can be used in combination with --system and other --service flags.
|
2019-04-24 16:30:18 +00:00
|
|
|
Only valid when pushing to a local mode device.
|
|
|
|
|
|
|
|
#### --system
|
|
|
|
|
|
|
|
Only show system logs. This can be used in combination with --service.
|
2019-04-24 13:59:07 +00:00
|
|
|
Only valid when pushing to a local mode device.
|
|
|
|
|
2020-07-24 12:25:46 +00:00
|
|
|
#### --env ENV
|
2019-05-27 10:32:47 +00:00
|
|
|
|
|
|
|
When performing a push to device, run the built containers with environment
|
|
|
|
variables provided with this argument. Environment variables can be applied
|
|
|
|
to individual services by adding their service name before the argument,
|
|
|
|
separated by a colon, e.g:
|
|
|
|
--env main:MY_ENV=value
|
|
|
|
Note that if the service name cannot be found in the composition, the entire
|
|
|
|
left hand side of the = character will be treated as the variable name.
|
|
|
|
|
2020-07-24 12:25:46 +00:00
|
|
|
#### -l, --convert-eol
|
2020-01-29 11:10:59 +00:00
|
|
|
|
2020-10-20 21:11:17 +00:00
|
|
|
No-op and deprecated since balena CLI v12.0.0
|
2020-06-15 22:52:58 +00:00
|
|
|
|
|
|
|
#### --noconvert-eol
|
|
|
|
|
|
|
|
Don't convert line endings from CRLF (Windows format) to LF (Unix format).
|
2020-01-29 11:10:59 +00:00
|
|
|
|
2020-07-24 12:25:46 +00:00
|
|
|
#### -m, --multi-dockerignore
|
2020-06-24 23:01:53 +00:00
|
|
|
|
|
|
|
Have each service use its own .dockerignore file. See "balena help push".
|
|
|
|
|
2020-07-24 12:25:46 +00:00
|
|
|
#### -G, --nogitignore
|
2020-05-01 11:18:11 +00:00
|
|
|
|
2020-10-20 21:11:17 +00:00
|
|
|
No-op (default behavior) since balena CLI v12.0.0. See "balena help push".
|
2020-06-16 23:38:03 +00:00
|
|
|
|
2020-07-24 12:25:46 +00:00
|
|
|
#### -g, --gitignore
|
2020-06-16 23:38:03 +00:00
|
|
|
|
|
|
|
Consider .gitignore files in addition to the .dockerignore file. This reverts
|
2020-09-08 14:30:41 +00:00
|
|
|
to the CLI v11 behavior/implementation (deprecated) if compatibility is
|
|
|
|
required until your project can be adapted.
|
2020-05-01 11:18:11 +00:00
|
|
|
|
2020-12-16 14:42:25 +00:00
|
|
|
#### --release-tag RELEASE-TAG
|
|
|
|
|
|
|
|
Set release tags if the push to a cloud application is successful. Multiple
|
|
|
|
arguments may be provided, alternating tag keys and values (see examples).
|
|
|
|
Hint: Empty values may be specified with "" (bash, cmd.exe) or '""' (PowerShell).
|
|
|
|
|
2020-03-25 17:07:17 +00:00
|
|
|
# Settings
|
|
|
|
|
|
|
|
## settings
|
|
|
|
|
2020-10-20 21:11:17 +00:00
|
|
|
Use this command to display the current balena CLI settings.
|
2020-03-25 17:07:17 +00:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
$ balena settings
|
|
|
|
|
|
|
|
### Options
|
|
|
|
|
2017-04-11 13:25:54 +00:00
|
|
|
# Local
|
|
|
|
|
2020-07-10 11:27:55 +00:00
|
|
|
## local configure <target>
|
|
|
|
|
|
|
|
Configure or reconfigure a balenaOS drive or image.
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
$ balena local configure /dev/sdc
|
|
|
|
$ balena local configure path/to/image.img
|
|
|
|
|
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### TARGET
|
|
|
|
|
|
|
|
path of drive or image to configure
|
|
|
|
|
|
|
|
### Options
|
|
|
|
|
2019-05-30 14:18:58 +00:00
|
|
|
## local flash <image>
|
|
|
|
|
2020-07-09 13:38:04 +00:00
|
|
|
Flash a balenaOS image to a drive.
|
|
|
|
Image file may be one of: .img|.zip|.gz|.bz2|.xz
|
|
|
|
|
|
|
|
If --drive is not specified, then it will interactively
|
|
|
|
show a list of available drives for selection.
|
2019-05-30 14:18:58 +00:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
2020-07-09 13:38:04 +00:00
|
|
|
$ balena local flash path/to/balenaos.img
|
2019-05-30 14:18:58 +00:00
|
|
|
$ balena local flash path/to/balenaos.img --drive /dev/disk2
|
|
|
|
$ balena local flash path/to/balenaos.img --drive /dev/disk2 --yes
|
|
|
|
|
2020-07-09 13:38:04 +00:00
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### IMAGE
|
|
|
|
|
|
|
|
path to OS image
|
|
|
|
|
2019-05-30 14:18:58 +00:00
|
|
|
### Options
|
|
|
|
|
2020-07-09 13:38:04 +00:00
|
|
|
#### -d, --drive DRIVE
|
2019-05-30 14:18:58 +00:00
|
|
|
|
2020-07-15 19:13:18 +00:00
|
|
|
the drive to write the image to, eg. `/dev/sdb` or `/dev/mmcblk0`.
|
|
|
|
Careful with this as you can erase your hard drive.
|
|
|
|
Check `balena util available-drives` for available options.
|
2019-05-30 14:18:58 +00:00
|
|
|
|
2020-07-09 13:38:04 +00:00
|
|
|
#### -y, --yes
|
2019-05-30 14:18:58 +00:00
|
|
|
|
2020-07-09 13:38:04 +00:00
|
|
|
answer "yes" to all questions (non interactive use)
|
|
|
|
|
2017-04-26 12:34:40 +00:00
|
|
|
# Deploy
|
|
|
|
|
2018-03-20 17:43:26 +00:00
|
|
|
## build [source]
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2019-04-11 11:49:19 +00:00
|
|
|
Use this command to build an image or a complete multicontainer project with
|
|
|
|
the provided docker daemon in your development machine or balena device.
|
|
|
|
(See also the `balena push` command for the option of building images in the
|
|
|
|
balenaCloud build servers.)
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2020-07-30 08:39:05 +00:00
|
|
|
You must provide either an application or a device-type/architecture pair.
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2017-12-11 22:37:56 +00:00
|
|
|
This command will look into the given source directory (or the current working
|
2020-04-01 10:39:30 +00:00
|
|
|
directory if one isn't specified) for a docker-compose.yml file, and if found,
|
|
|
|
each service defined in the compose file will be built. If a compose file isn't
|
|
|
|
found, it will look for a Dockerfile[.template] file (or alternative Dockerfile
|
|
|
|
specified with the `--dockerfile` option), and if no dockerfile is found, it
|
|
|
|
will try to generate one.
|
2017-12-11 22:37:56 +00:00
|
|
|
|
2020-06-24 23:01:53 +00:00
|
|
|
REGISTRY SECRETS
|
2019-02-27 18:01:47 +00:00
|
|
|
The --registry-secrets option specifies a JSON or YAML file containing private
|
|
|
|
Docker registry usernames and passwords to be used when pulling base images.
|
|
|
|
Sample registry-secrets YAML file:
|
2020-06-24 23:01:53 +00:00
|
|
|
```
|
2019-02-27 18:01:47 +00:00
|
|
|
'my-registry-server.com:25000':
|
|
|
|
username: ann
|
|
|
|
password: hunter2
|
|
|
|
'': # Use the empty string to refer to the Docker Hub
|
|
|
|
username: mike
|
|
|
|
password: cze14
|
|
|
|
'eu.gcr.io': # Google Container Registry
|
|
|
|
username: '_json_key'
|
|
|
|
password: '{escaped contents of the GCR keyfile.json file}'
|
2020-06-24 23:01:53 +00:00
|
|
|
```
|
2019-08-15 14:38:50 +00:00
|
|
|
For a sample project using registry secrets with the Google Container Registry,
|
2020-09-10 14:02:04 +00:00
|
|
|
check: https://github.com/balena-io-examples/sample-gcr-registry-secrets
|
2019-08-15 14:38:50 +00:00
|
|
|
|
|
|
|
If the --registry-secrets option is not specified, and a secrets.yml or
|
|
|
|
secrets.json file exists in the balena directory (usually $HOME/.balena),
|
|
|
|
this file will be used instead.
|
2019-06-18 10:13:09 +00:00
|
|
|
|
2020-06-24 23:01:53 +00:00
|
|
|
DOCKERIGNORE AND GITIGNORE FILES
|
2020-10-20 21:11:17 +00:00
|
|
|
By default, the balena CLI will use a single ".dockerignore" file (if any) at
|
2020-06-24 23:01:53 +00:00
|
|
|
the project root (--source directory) in order to decide which source files to
|
2020-09-08 14:30:41 +00:00
|
|
|
exclude from the "build context" (tar stream) sent to balenaCloud, Docker
|
|
|
|
daemon or balenaEngine. In a microservices (multicontainer) application, the
|
|
|
|
source directory is the directory that contains the "docker-compose.yml" file.
|
|
|
|
|
|
|
|
The --multi-dockerignore (-m) option may be used with microservices
|
|
|
|
(multicontainer) applications that define a docker-compose.yml file. When
|
|
|
|
this option is used, each service subdirectory (defined by the `build` or
|
|
|
|
`build.context` service properties in the docker-compose.yml file) is
|
|
|
|
filtered separately according to a .dockerignore file defined in the service
|
|
|
|
subdirectory. If no .dockerignore file exists in a service subdirectory, then
|
|
|
|
only the default .dockerignore patterns (see below) apply for that service
|
|
|
|
subdirectory.
|
2020-06-24 23:01:53 +00:00
|
|
|
|
|
|
|
When the --multi-dockerignore (-m) option is used, the .dockerignore file (if
|
|
|
|
any) defined at the overall project root will be used to filter files and
|
|
|
|
subdirectories other than service subdirectories. It will not have any effect
|
|
|
|
on service subdirectories, whether or not a service subdirectory defines its
|
|
|
|
own .dockerignore file. Multiple .dockerignore files are not merged or added
|
2021-01-12 19:32:33 +00:00
|
|
|
together, and cannot override or extend other files. This behavior maximizes
|
2020-06-24 23:01:53 +00:00
|
|
|
compatibility with the standard docker-compose tool, while still allowing a
|
|
|
|
root .dockerignore file (at the overall project root) to filter files and
|
|
|
|
folders that are outside service subdirectories.
|
|
|
|
|
2020-10-20 21:11:17 +00:00
|
|
|
balena CLI releases older than v12.0.0 also took .gitignore files into account.
|
2020-06-24 23:01:53 +00:00
|
|
|
This behavior is deprecated, but may still be enabled with the --gitignore (-g)
|
|
|
|
option if compatibility is required. This option is mutually exclusive with
|
|
|
|
--multi-dockerignore (-m) and will be removed in the CLI's next major version
|
|
|
|
release (v13).
|
|
|
|
|
|
|
|
Default .dockerignore patterns
|
|
|
|
When --gitignore (-g) is NOT used (i.e. when not in v11 compatibility mode), a
|
|
|
|
few default/hardcoded dockerignore patterns are "merged" (in memory) with the
|
|
|
|
patterns found in the applicable .dockerignore files, in the following order:
|
|
|
|
```
|
2020-05-01 11:18:11 +00:00
|
|
|
**/.git
|
2020-06-24 23:01:53 +00:00
|
|
|
< user's patterns from the applicable '.dockerignore' file, if any >
|
2020-05-01 11:18:11 +00:00
|
|
|
!**/.balena
|
|
|
|
!**/.resin
|
|
|
|
!**/Dockerfile
|
|
|
|
!**/Dockerfile.*
|
|
|
|
!**/docker-compose.yml
|
2020-06-24 23:01:53 +00:00
|
|
|
```
|
|
|
|
These patterns always apply, whether or not .dockerignore files exist in the
|
|
|
|
project. If necessary, the effect of the `**/.git` pattern may be modified by
|
|
|
|
adding counter patterns to the applicable .dockerignore file(s), for example
|
|
|
|
`!mysubmodule/.git`. For documentation on pattern format, see:
|
2020-05-01 11:18:11 +00:00
|
|
|
- https://docs.docker.com/engine/reference/builder/#dockerignore-file
|
|
|
|
- https://www.npmjs.com/package/@balena/dockerignore
|
|
|
|
|
2017-04-26 12:34:40 +00:00
|
|
|
Examples:
|
|
|
|
|
2020-07-30 08:39:05 +00:00
|
|
|
$ balena build --application myApp
|
|
|
|
$ balena build ./source/ --application myApp
|
2018-12-03 13:10:54 +00:00
|
|
|
$ balena build --deviceType raspberrypi3 --arch armv7hf --emulated
|
2020-07-30 08:39:05 +00:00
|
|
|
$ balena build --docker /var/run/docker.sock --application myApp # Linux, Mac
|
|
|
|
$ balena build --docker //./pipe/docker_engine --application myApp # Windows
|
|
|
|
$ balena build --dockerHost my.docker.host --dockerPort 2376 --ca ca.pem --key key.pem --cert cert.pem -a myApp
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2020-07-30 08:39:05 +00:00
|
|
|
### Arguments
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2020-07-30 08:39:05 +00:00
|
|
|
#### SOURCE
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2020-07-30 08:39:05 +00:00
|
|
|
path of project source directory
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2020-07-30 08:39:05 +00:00
|
|
|
### Options
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2020-07-30 08:39:05 +00:00
|
|
|
#### -A, --arch ARCH
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2020-07-30 08:39:05 +00:00
|
|
|
the architecture to build for
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2020-07-30 08:39:05 +00:00
|
|
|
#### -d, --deviceType DEVICETYPE
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2020-07-30 08:39:05 +00:00
|
|
|
the type of device this build is for
|
2017-12-11 22:37:56 +00:00
|
|
|
|
2020-07-30 08:39:05 +00:00
|
|
|
#### -a, --application APPLICATION
|
2017-12-11 22:37:56 +00:00
|
|
|
|
2020-07-30 08:39:05 +00:00
|
|
|
name of the target balena application this build is for
|
|
|
|
|
|
|
|
#### -e, --emulated
|
2017-12-11 22:37:56 +00:00
|
|
|
|
2020-10-01 23:10:40 +00:00
|
|
|
Use QEMU for ARM architecture emulation during the image build
|
2017-12-11 22:37:56 +00:00
|
|
|
|
2020-07-30 08:39:05 +00:00
|
|
|
#### --dockerfile DOCKERFILE
|
2019-04-11 11:49:19 +00:00
|
|
|
|
|
|
|
Alternative Dockerfile name/path, relative to the source folder
|
|
|
|
|
2017-12-11 22:37:56 +00:00
|
|
|
#### --logs
|
|
|
|
|
2020-10-20 21:11:17 +00:00
|
|
|
No-op and deprecated since balena CLI v12.0.0. Build logs are now shown by default.
|
2020-06-15 22:52:58 +00:00
|
|
|
|
|
|
|
#### --nologs
|
|
|
|
|
|
|
|
Hide the image build log output (produce less verbose output)
|
2017-12-11 22:37:56 +00:00
|
|
|
|
2020-07-30 08:39:05 +00:00
|
|
|
#### -g, --gitignore
|
2020-06-16 23:38:03 +00:00
|
|
|
|
|
|
|
Consider .gitignore files in addition to the .dockerignore file. This reverts
|
|
|
|
to the CLI v11 behavior/implementation (deprecated) if compatibility is required
|
|
|
|
until your project can be adapted.
|
|
|
|
|
2020-07-30 08:39:05 +00:00
|
|
|
#### -m, --multi-dockerignore
|
2020-06-24 23:01:53 +00:00
|
|
|
|
|
|
|
Have each service use its own .dockerignore file. See "balena help build".
|
|
|
|
|
2020-07-30 08:39:05 +00:00
|
|
|
#### -G, --nogitignore
|
2020-05-01 11:18:11 +00:00
|
|
|
|
2020-10-20 21:11:17 +00:00
|
|
|
No-op (default behavior) since balena CLI v12.0.0. See "balena help build".
|
2020-05-01 11:18:11 +00:00
|
|
|
|
2020-02-15 20:20:56 +00:00
|
|
|
#### --noparent-check
|
|
|
|
|
|
|
|
Disable project validation check of 'docker-compose.yml' file in parent folder
|
|
|
|
|
2020-07-30 08:39:05 +00:00
|
|
|
#### -R, --registry-secrets REGISTRY-SECRETS
|
2019-02-26 13:32:27 +00:00
|
|
|
|
|
|
|
Path to a YAML or JSON file with passwords for a private Docker registry
|
|
|
|
|
2020-07-30 08:39:05 +00:00
|
|
|
#### -l, --convert-eol
|
2020-01-29 11:10:59 +00:00
|
|
|
|
2020-10-20 21:11:17 +00:00
|
|
|
No-op and deprecated since balena CLI v12.0.0
|
2020-06-15 22:52:58 +00:00
|
|
|
|
|
|
|
#### --noconvert-eol
|
|
|
|
|
|
|
|
Don't convert line endings from CRLF (Windows format) to LF (Unix format).
|
2020-01-29 11:10:59 +00:00
|
|
|
|
2020-07-30 08:39:05 +00:00
|
|
|
#### -n, --projectName PROJECTNAME
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2020-07-30 08:39:05 +00:00
|
|
|
Specify an alternate project name; default is the directory name
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2020-07-30 08:39:05 +00:00
|
|
|
#### -t, --tag TAG
|
2017-04-26 12:34:40 +00:00
|
|
|
|
|
|
|
The alias to the generated image
|
|
|
|
|
2020-07-30 08:39:05 +00:00
|
|
|
#### -B, --buildArg BUILDARG
|
2017-05-12 10:01:37 +00:00
|
|
|
|
|
|
|
Set a build-time variable (eg. "-B 'ARG=value'"). Can be specified multiple times.
|
|
|
|
|
2020-07-30 08:39:05 +00:00
|
|
|
#### --cache-from CACHE-FROM
|
2020-02-12 11:35:03 +00:00
|
|
|
|
|
|
|
Comma-separated list (no spaces) of image names for build cache resolution. Implements the same feature as the "docker build --cache-from" option.
|
|
|
|
|
2017-04-26 12:34:40 +00:00
|
|
|
#### --nocache
|
|
|
|
|
|
|
|
Don't use docker layer caching when building
|
|
|
|
|
2020-09-03 17:39:29 +00:00
|
|
|
#### --pull
|
|
|
|
|
|
|
|
Pull the base images again even if they exist locally
|
|
|
|
|
2017-06-23 15:20:16 +00:00
|
|
|
#### --squash
|
|
|
|
|
|
|
|
Squash newly built layers into a single new layer
|
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
#### -P, --docker DOCKER
|
|
|
|
|
|
|
|
Path to a local docker socket (e.g. /var/run/docker.sock)
|
|
|
|
|
|
|
|
#### -h, --dockerHost DOCKERHOST
|
|
|
|
|
|
|
|
Docker daemon hostname or IP address (dev machine or balena device)
|
|
|
|
|
|
|
|
#### -p, --dockerPort DOCKERPORT
|
|
|
|
|
|
|
|
Docker daemon TCP port number (hint: 2375 for balena devices)
|
|
|
|
|
|
|
|
#### --ca CA
|
|
|
|
|
|
|
|
Docker host TLS certificate authority file
|
|
|
|
|
|
|
|
#### --cert CERT
|
|
|
|
|
|
|
|
Docker host TLS certificate file
|
|
|
|
|
|
|
|
#### --key KEY
|
|
|
|
|
|
|
|
Docker host TLS key file
|
|
|
|
|
2018-03-20 17:43:26 +00:00
|
|
|
## deploy <appName> [image]
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2017-10-09 17:10:50 +00:00
|
|
|
Usage: `deploy <appName> ([image] | --build [--source build-dir])`
|
|
|
|
|
2019-02-26 13:32:27 +00:00
|
|
|
Use this command to deploy an image or a complete multicontainer project to an
|
|
|
|
application, optionally building it first. The source images are searched for
|
|
|
|
(and optionally built) using the docker daemon in your development machine or
|
|
|
|
balena device. (See also the `balena push` command for the option of building
|
2019-02-27 18:01:47 +00:00
|
|
|
the image in the balenaCloud build servers.)
|
2019-02-26 13:32:27 +00:00
|
|
|
|
2017-12-11 22:37:56 +00:00
|
|
|
Unless an image is specified, this command will look into the current directory
|
2019-04-11 11:49:19 +00:00
|
|
|
(or the one specified by --source) for a docker-compose.yml file. If one is
|
|
|
|
found, this command will deploy each service defined in the compose file,
|
|
|
|
building it first if an image for it doesn't exist. If a compose file isn't
|
|
|
|
found, the command will look for a Dockerfile[.template] file (or alternative
|
|
|
|
Dockerfile specified with the `-f` option), and if yet that isn't found, it
|
|
|
|
will try to generate one.
|
2017-12-11 22:37:56 +00:00
|
|
|
|
2017-10-09 17:10:50 +00:00
|
|
|
To deploy to an app on which you're a collaborator, use
|
2018-10-19 14:38:50 +00:00
|
|
|
`balena deploy <appOwnerUsername>/<appName>`.
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2020-06-24 23:01:53 +00:00
|
|
|
REGISTRY SECRETS
|
2019-02-27 18:01:47 +00:00
|
|
|
The --registry-secrets option specifies a JSON or YAML file containing private
|
|
|
|
Docker registry usernames and passwords to be used when pulling base images.
|
|
|
|
Sample registry-secrets YAML file:
|
2020-06-24 23:01:53 +00:00
|
|
|
```
|
2019-02-27 18:01:47 +00:00
|
|
|
'my-registry-server.com:25000':
|
|
|
|
username: ann
|
|
|
|
password: hunter2
|
|
|
|
'': # Use the empty string to refer to the Docker Hub
|
|
|
|
username: mike
|
|
|
|
password: cze14
|
|
|
|
'eu.gcr.io': # Google Container Registry
|
|
|
|
username: '_json_key'
|
|
|
|
password: '{escaped contents of the GCR keyfile.json file}'
|
2020-06-24 23:01:53 +00:00
|
|
|
```
|
2019-08-15 14:38:50 +00:00
|
|
|
For a sample project using registry secrets with the Google Container Registry,
|
2020-09-10 14:02:04 +00:00
|
|
|
check: https://github.com/balena-io-examples/sample-gcr-registry-secrets
|
2019-08-15 14:38:50 +00:00
|
|
|
|
|
|
|
If the --registry-secrets option is not specified, and a secrets.yml or
|
|
|
|
secrets.json file exists in the balena directory (usually $HOME/.balena),
|
|
|
|
this file will be used instead.
|
2019-06-18 10:13:09 +00:00
|
|
|
|
2020-06-24 23:01:53 +00:00
|
|
|
DOCKERIGNORE AND GITIGNORE FILES
|
2020-10-20 21:11:17 +00:00
|
|
|
By default, the balena CLI will use a single ".dockerignore" file (if any) at
|
2020-06-24 23:01:53 +00:00
|
|
|
the project root (--source directory) in order to decide which source files to
|
2020-09-08 14:30:41 +00:00
|
|
|
exclude from the "build context" (tar stream) sent to balenaCloud, Docker
|
|
|
|
daemon or balenaEngine. In a microservices (multicontainer) application, the
|
|
|
|
source directory is the directory that contains the "docker-compose.yml" file.
|
|
|
|
|
|
|
|
The --multi-dockerignore (-m) option may be used with microservices
|
|
|
|
(multicontainer) applications that define a docker-compose.yml file. When
|
|
|
|
this option is used, each service subdirectory (defined by the `build` or
|
|
|
|
`build.context` service properties in the docker-compose.yml file) is
|
|
|
|
filtered separately according to a .dockerignore file defined in the service
|
|
|
|
subdirectory. If no .dockerignore file exists in a service subdirectory, then
|
|
|
|
only the default .dockerignore patterns (see below) apply for that service
|
|
|
|
subdirectory.
|
2020-06-24 23:01:53 +00:00
|
|
|
|
|
|
|
When the --multi-dockerignore (-m) option is used, the .dockerignore file (if
|
|
|
|
any) defined at the overall project root will be used to filter files and
|
|
|
|
subdirectories other than service subdirectories. It will not have any effect
|
|
|
|
on service subdirectories, whether or not a service subdirectory defines its
|
|
|
|
own .dockerignore file. Multiple .dockerignore files are not merged or added
|
2021-01-12 19:32:33 +00:00
|
|
|
together, and cannot override or extend other files. This behavior maximizes
|
2020-06-24 23:01:53 +00:00
|
|
|
compatibility with the standard docker-compose tool, while still allowing a
|
|
|
|
root .dockerignore file (at the overall project root) to filter files and
|
|
|
|
folders that are outside service subdirectories.
|
|
|
|
|
2020-10-20 21:11:17 +00:00
|
|
|
balena CLI releases older than v12.0.0 also took .gitignore files into account.
|
2020-06-24 23:01:53 +00:00
|
|
|
This behavior is deprecated, but may still be enabled with the --gitignore (-g)
|
|
|
|
option if compatibility is required. This option is mutually exclusive with
|
|
|
|
--multi-dockerignore (-m) and will be removed in the CLI's next major version
|
|
|
|
release (v13).
|
|
|
|
|
|
|
|
Default .dockerignore patterns
|
|
|
|
When --gitignore (-g) is NOT used (i.e. when not in v11 compatibility mode), a
|
|
|
|
few default/hardcoded dockerignore patterns are "merged" (in memory) with the
|
|
|
|
patterns found in the applicable .dockerignore files, in the following order:
|
|
|
|
```
|
2020-05-01 11:18:11 +00:00
|
|
|
**/.git
|
2020-06-24 23:01:53 +00:00
|
|
|
< user's patterns from the applicable '.dockerignore' file, if any >
|
2020-05-01 11:18:11 +00:00
|
|
|
!**/.balena
|
|
|
|
!**/.resin
|
|
|
|
!**/Dockerfile
|
|
|
|
!**/Dockerfile.*
|
|
|
|
!**/docker-compose.yml
|
2020-06-24 23:01:53 +00:00
|
|
|
```
|
|
|
|
These patterns always apply, whether or not .dockerignore files exist in the
|
|
|
|
project. If necessary, the effect of the `**/.git` pattern may be modified by
|
|
|
|
adding counter patterns to the applicable .dockerignore file(s), for example
|
|
|
|
`!mysubmodule/.git`. For documentation on pattern format, see:
|
2020-05-01 11:18:11 +00:00
|
|
|
- https://docs.docker.com/engine/reference/builder/#dockerignore-file
|
|
|
|
- https://www.npmjs.com/package/@balena/dockerignore
|
|
|
|
|
2017-04-26 12:34:40 +00:00
|
|
|
Examples:
|
2017-12-11 22:37:56 +00:00
|
|
|
|
2018-10-19 14:38:50 +00:00
|
|
|
$ balena deploy myApp
|
|
|
|
$ balena deploy myApp --build --source myBuildDir/
|
|
|
|
$ balena deploy myApp myApp/myImage
|
2021-01-13 13:12:38 +00:00
|
|
|
$ balena deploy myApp myApp/myImage --release-tag key1 "" key2 "value2 with spaces"
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### APPNAME
|
|
|
|
|
|
|
|
the name of the application to deploy to
|
|
|
|
|
|
|
|
#### IMAGE
|
|
|
|
|
|
|
|
the image to deploy
|
|
|
|
|
2017-04-26 12:34:40 +00:00
|
|
|
### Options
|
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
#### -s, --source SOURCE
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
specify an alternate source directory; default is the working directory
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
#### -b, --build
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
force a rebuild before deploy
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2017-05-12 10:01:37 +00:00
|
|
|
#### --nologupload
|
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
don't upload build logs to the dashboard with image (if building)
|
2017-05-12 10:01:37 +00:00
|
|
|
|
2021-01-13 13:12:38 +00:00
|
|
|
#### --release-tag RELEASE-TAG
|
|
|
|
|
|
|
|
Set release tags if the image deployment is successful. Multiple
|
|
|
|
arguments may be provided, alternating tag keys and values (see examples).
|
|
|
|
Hint: Empty values may be specified with "" (bash, cmd.exe) or '""' (PowerShell).
|
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
#### -e, --emulated
|
2017-12-11 22:37:56 +00:00
|
|
|
|
2020-10-01 23:10:40 +00:00
|
|
|
Use QEMU for ARM architecture emulation during the image build
|
2017-12-11 22:37:56 +00:00
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
#### --dockerfile DOCKERFILE
|
2019-04-11 11:49:19 +00:00
|
|
|
|
|
|
|
Alternative Dockerfile name/path, relative to the source folder
|
|
|
|
|
2017-12-11 22:37:56 +00:00
|
|
|
#### --logs
|
|
|
|
|
2020-10-20 21:11:17 +00:00
|
|
|
No-op and deprecated since balena CLI v12.0.0. Build logs are now shown by default.
|
2020-06-15 22:52:58 +00:00
|
|
|
|
|
|
|
#### --nologs
|
|
|
|
|
|
|
|
Hide the image build log output (produce less verbose output)
|
2017-12-11 22:37:56 +00:00
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
#### -g, --gitignore
|
2020-06-16 23:38:03 +00:00
|
|
|
|
|
|
|
Consider .gitignore files in addition to the .dockerignore file. This reverts
|
|
|
|
to the CLI v11 behavior/implementation (deprecated) if compatibility is required
|
|
|
|
until your project can be adapted.
|
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
#### -m, --multi-dockerignore
|
2020-06-24 23:01:53 +00:00
|
|
|
|
|
|
|
Have each service use its own .dockerignore file. See "balena help build".
|
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
#### -G, --nogitignore
|
2020-05-01 11:18:11 +00:00
|
|
|
|
2020-10-20 21:11:17 +00:00
|
|
|
No-op (default behavior) since balena CLI v12.0.0. See "balena help build".
|
2020-05-01 11:18:11 +00:00
|
|
|
|
2020-02-15 20:20:56 +00:00
|
|
|
#### --noparent-check
|
|
|
|
|
|
|
|
Disable project validation check of 'docker-compose.yml' file in parent folder
|
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
#### -R, --registry-secrets REGISTRY-SECRETS
|
2019-02-26 13:32:27 +00:00
|
|
|
|
|
|
|
Path to a YAML or JSON file with passwords for a private Docker registry
|
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
#### -l, --convert-eol
|
2020-01-29 11:10:59 +00:00
|
|
|
|
2020-10-20 21:11:17 +00:00
|
|
|
No-op and deprecated since balena CLI v12.0.0
|
2020-06-15 22:52:58 +00:00
|
|
|
|
|
|
|
#### --noconvert-eol
|
|
|
|
|
|
|
|
Don't convert line endings from CRLF (Windows format) to LF (Unix format).
|
2020-01-29 11:10:59 +00:00
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
#### -n, --projectName PROJECTNAME
|
2020-07-30 08:39:05 +00:00
|
|
|
|
|
|
|
Specify an alternate project name; default is the directory name
|
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
#### -t, --tag TAG
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
The alias to the generated image
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
#### -B, --buildArg BUILDARG
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
Set a build-time variable (eg. "-B 'ARG=value'"). Can be specified multiple times.
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
#### --cache-from CACHE-FROM
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
Comma-separated list (no spaces) of image names for build cache resolution. Implements the same feature as the "docker build --cache-from" option.
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
#### --nocache
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
Don't use docker layer caching when building
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2020-09-03 17:39:29 +00:00
|
|
|
#### --pull
|
|
|
|
|
|
|
|
Pull the base images again even if they exist locally
|
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
#### --squash
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
Squash newly built layers into a single new layer
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
#### -P, --docker DOCKER
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
Path to a local docker socket (e.g. /var/run/docker.sock)
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
#### -h, --dockerHost DOCKERHOST
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
Docker daemon hostname or IP address (dev machine or balena device)
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
#### -p, --dockerPort DOCKERPORT
|
2017-05-12 10:01:37 +00:00
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
Docker daemon TCP port number (hint: 2375 for balena devices)
|
2017-05-12 10:01:37 +00:00
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
#### --ca CA
|
2020-02-12 11:35:03 +00:00
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
Docker host TLS certificate authority file
|
2020-02-12 11:35:03 +00:00
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
#### --cert CERT
|
2017-04-26 12:34:40 +00:00
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
Docker host TLS certificate file
|
2017-05-12 10:01:37 +00:00
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
#### --key KEY
|
2017-06-23 15:20:16 +00:00
|
|
|
|
2020-08-21 08:57:14 +00:00
|
|
|
Docker host TLS key file
|
2017-06-23 15:20:16 +00:00
|
|
|
|
2018-11-14 22:26:14 +00:00
|
|
|
# Platform
|
|
|
|
|
2020-04-09 14:34:24 +00:00
|
|
|
## join [deviceIpOrHostname]
|
2018-11-14 22:26:14 +00:00
|
|
|
|
2020-04-09 14:34:24 +00:00
|
|
|
Move a local device to an application on another balena server, causing
|
|
|
|
the device to "join" the new server. The device must be running balenaOS.
|
2018-11-14 22:26:14 +00:00
|
|
|
|
|
|
|
For example, you could provision a device against an openBalena installation
|
|
|
|
where you perform end-to-end tests and then move it to balenaCloud when it's
|
|
|
|
ready for production.
|
|
|
|
|
2019-11-21 15:31:45 +00:00
|
|
|
To move a device between applications on the same server, use the
|
|
|
|
`balena device move` command instead of `balena join`.
|
2018-11-14 22:26:14 +00:00
|
|
|
|
|
|
|
If you don't specify a device hostname or IP, this command will automatically
|
|
|
|
scan the local network for balenaOS devices and prompt you to select one
|
2020-12-30 15:36:46 +00:00
|
|
|
from an interactive picker. This may require administrator/root privileges.
|
|
|
|
Likewise, if the application flag is not provided then a picker will be shown.
|
2018-11-14 22:26:14 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
Applications may be specified by app name, slug, or numeric ID. App slugs
|
|
|
|
are the recommended option, as they are unique and unambiguous. Slugs
|
|
|
|
can be listed with the `balena apps` command. Note that slugs may change
|
|
|
|
if the application is renamed.
|
|
|
|
App names are not unique and may result in "Application is ambiguous" errors
|
|
|
|
at any time (even if it "used to work in the past"), for example if the name
|
|
|
|
clashes with a newly created public application, or with apps from other balena
|
|
|
|
accounts that you may have been invited to as a member. For this reason, app
|
|
|
|
names are especially discouraged in scripts (e.g. CI environments).
|
|
|
|
Numeric app IDs are deprecated because they consist of an implementation detail
|
|
|
|
of the balena backend. We intend to remove support for numeric IDs at some point
|
|
|
|
in the future.
|
|
|
|
|
2018-11-14 22:26:14 +00:00
|
|
|
Examples:
|
|
|
|
|
|
|
|
$ balena join
|
|
|
|
$ balena join balena.local
|
|
|
|
$ balena join balena.local --application MyApp
|
2020-12-10 12:30:17 +00:00
|
|
|
$ balena join balena.local -a myorg/myapp
|
2018-11-14 22:26:14 +00:00
|
|
|
$ balena join 192.168.1.25
|
|
|
|
$ balena join 192.168.1.25 --application MyApp
|
|
|
|
|
2020-04-09 14:34:24 +00:00
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### DEVICEIPORHOSTNAME
|
|
|
|
|
|
|
|
the IP or hostname of device
|
|
|
|
|
2018-11-14 22:26:14 +00:00
|
|
|
### Options
|
|
|
|
|
2020-04-09 14:34:24 +00:00
|
|
|
#### -a, --application APPLICATION
|
2018-11-14 22:26:14 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
application name, slug (preferred), or numeric ID (deprecated)
|
2018-11-14 22:26:14 +00:00
|
|
|
|
2020-09-09 12:20:57 +00:00
|
|
|
#### -i, --pollInterval POLLINTERVAL
|
|
|
|
|
|
|
|
the interval in minutes to check for updates
|
|
|
|
|
2020-04-09 14:34:24 +00:00
|
|
|
## leave [deviceIpOrHostname]
|
2018-11-14 22:26:14 +00:00
|
|
|
|
2020-04-09 14:34:24 +00:00
|
|
|
Remove a local device from its balena application, causing the device to
|
|
|
|
"leave" the server it is provisioned on. This effectively makes the device
|
|
|
|
"unmanaged". The device must be running balenaOS.
|
2018-11-14 22:26:14 +00:00
|
|
|
|
|
|
|
The device entry on the server is preserved after running this command,
|
|
|
|
so the device can subsequently re-join the server if needed.
|
|
|
|
|
|
|
|
If you don't specify a device hostname or IP, this command will automatically
|
|
|
|
scan the local network for balenaOS devices and prompt you to select one
|
2020-12-30 15:36:46 +00:00
|
|
|
from an interactive picker. This may require administrator/root privileges.
|
2018-11-14 22:26:14 +00:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
$ balena leave
|
|
|
|
$ balena leave balena.local
|
|
|
|
$ balena leave 192.168.1.25
|
|
|
|
|
2020-04-09 14:34:24 +00:00
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### DEVICEIPORHOSTNAME
|
|
|
|
|
|
|
|
the device IP or hostname
|
|
|
|
|
|
|
|
### Options
|
|
|
|
|
2017-06-14 21:23:39 +00:00
|
|
|
# Utilities
|
|
|
|
|
2018-03-20 17:43:26 +00:00
|
|
|
## util available-drives
|
2017-06-14 21:23:39 +00:00
|
|
|
|
2020-07-09 11:58:59 +00:00
|
|
|
List available drives which are usable for writing an OS image to.
|
|
|
|
Does not list system drives.
|
|
|
|
|
|
|
|
### Options
|
2020-09-25 09:00:18 +00:00
|
|
|
|
|
|
|
# Support
|
|
|
|
|
|
|
|
## support <action>
|
|
|
|
|
|
|
|
Grant or revoke balena support agent access to devices and applications
|
|
|
|
on balenaCloud. (This command does not apply to openBalena.)
|
|
|
|
Access will be automatically revoked once the specified duration has elapsed.
|
|
|
|
|
|
|
|
Duration defaults to 24h, but can be specified using --duration flag in days
|
|
|
|
or hours, e.g. '12h', '2d'.
|
|
|
|
|
|
|
|
Both --device and --application flags accept multiple values, specified as
|
|
|
|
a comma-separated list (with no spaces).
|
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
Applications may be specified by app name, slug, or numeric ID. App slugs
|
|
|
|
are the recommended option, as they are unique and unambiguous. Slugs
|
|
|
|
can be listed with the `balena apps` command. Note that slugs may change
|
|
|
|
if the application is renamed.
|
|
|
|
App names are not unique and may result in "Application is ambiguous" errors
|
|
|
|
at any time (even if it "used to work in the past"), for example if the name
|
|
|
|
clashes with a newly created public application, or with apps from other balena
|
|
|
|
accounts that you may have been invited to as a member. For this reason, app
|
|
|
|
names are especially discouraged in scripts (e.g. CI environments).
|
|
|
|
Numeric app IDs are deprecated because they consist of an implementation detail
|
|
|
|
of the balena backend. We intend to remove support for numeric IDs at some point
|
|
|
|
in the future.
|
|
|
|
|
2020-09-25 09:00:18 +00:00
|
|
|
Examples:
|
|
|
|
|
|
|
|
balena support enable --device ab346f,cd457a --duration 3d
|
|
|
|
balena support enable --application app3 --duration 12h
|
2020-12-10 12:30:17 +00:00
|
|
|
balena support disable -a myorg/myapp
|
2020-09-25 09:00:18 +00:00
|
|
|
|
|
|
|
### Arguments
|
|
|
|
|
|
|
|
#### ACTION
|
|
|
|
|
|
|
|
enable|disable support access
|
|
|
|
|
|
|
|
### Options
|
|
|
|
|
|
|
|
#### -d, --device DEVICE
|
|
|
|
|
|
|
|
comma-separated list (no spaces) of device UUIDs
|
|
|
|
|
|
|
|
#### -a, --application APPLICATION
|
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
comma-separated list (no spaces) of application names or org/name slugs
|
2020-09-25 09:00:18 +00:00
|
|
|
|
|
|
|
#### -t, --duration DURATION
|
|
|
|
|
|
|
|
length of time to enable support for, in (h)ours or (d)ays, e.g. 12h, 2d
|