2018-10-19 14:38:50 +00:00
# Balena CLI Documentation
2015-04-16 13:34:40 +00:00
2019-04-18 15:49:17 +00:00
The balena CLI (Command-Line Interface) allows you to interact with the balenaCloud and the
[balena API ](https://www.balena.io/docs/reference/api/overview/ ) through a terminal window
2019-04-29 15:33:09 +00:00
on Linux, macOS or Windows. You can also write shell scripts around it, or import its Node.js
2019-04-18 15:49:17 +00:00
modules to use it programmatically.
As an [open-source project on GitHub ](https://github.com/balena-io/balena-cli/ ), 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
2019-04-18 15:49:17 +00:00
Check the [balena CLI installation instructions on GitHub ](https://github.com/balena-io/balena-cli/blob/master/INSTALL.md ).
2015-04-16 13:34:40 +00:00
2019-04-18 15:49:17 +00:00
## Getting Started
2018-12-27 20:33:12 +00:00
2019-04-18 15:49:17 +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 )
are supported. We are aware of users also having a good experience with alternative shells,
including:
2018-03-12 19:06:21 +00:00
2019-04-18 15:49:17 +00:00
* Microsoft's [Windows Subsystem for Linux ](https://docs.microsoft.com/en-us/windows/wsl/about )
2019-05-25 21:11:26 +00:00
(a.k.a. Microsoft's "bash for Windows 10")
* [Git for Windows ](https://git-for-windows.github.io/ )
* [MSYS ](http://www.mingw.org/wiki/MSYS ) and [MSYS2 ](https://www.msys2.org/ ) (install the
`msys-rsync` and `msys-openssh` packages too)
2018-03-12 19:06:21 +00:00
2019-04-29 15:33:09 +00:00
On **macOS** and **Linux,** the standard terminal window is supported. _Optionally,_ `bash` command
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.
2019-04-18 15:49:17 +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
2019-04-18 15:49:17 +00:00
### Proxy support
2018-03-12 19:06:21 +00:00
2019-04-18 15:49:17 +00:00
HTTP(S) proxies can be configured through any of the following methods, in order of preference:
2015-04-16 13:34:40 +00:00
2019-05-25 21:11:26 +00:00
* Set the `BALENARC_PROXY` environment variable in URL format (with protocol, host, port, and
2019-04-18 15:49:17 +00:00
optionally basic auth).
* Alternatively, use the [balena config file ](https://www.npmjs.com/package/balena-settings-client#documentation )
2019-05-25 21:11:26 +00:00
(project-specific or user-level) and set the `proxy` setting. It can be:
2019-04-29 15:33:09 +00:00
* A string in URL format, or
* An object in the [global-tunnel-ng options format ](https://www.npmjs.com/package/global-tunnel-ng#options ) (which allows more control).
2019-05-25 21:11:26 +00:00
* Alternatively, set the conventional `https_proxy` / `HTTPS_PROXY` / `http_proxy` / `HTTP_PROXY`
environment variable (in the same standard URL format).
2015-04-16 13:34:40 +00:00
2019-04-18 15:49:17 +00:00
To get a proxy to work with the `balena ssh` command, check the
[installation instructions ](https://github.com/balena-io/balena-cli/blob/master/INSTALL.md ).
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
2019-04-18 15:49:17 +00:00
If you come across any problems or would like to get in touch:
2017-04-26 13:16:06 +00:00
2019-04-18 15:49:17 +00:00
* 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 bug reports or feature requests,
[have a look at the GitHub issues or create a new one ](https://github.com/balena-io/balena-cli/issues/ ).
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
2019-02-22 16:37:57 +00:00
- [app create <name> ](#app-create-name )
2015-07-07 22:01:25 +00:00
- [apps ](#apps )
2019-02-22 16:37:57 +00:00
- [app <name> ](#app-name )
- [app restart <name> ](#app-restart-name )
- [app rm <name> ](#app-rm-name )
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
2015-07-07 22:01:25 +00:00
- [devices ](#devices )
2019-02-22 16:37:57 +00:00
- [device <uuid> ](#device-uuid )
2016-09-25 23:51:32 +00:00
- [devices supported ](#devices-supported )
2019-02-22 16:37:57 +00:00
- [device register <application> ](#device-register-application )
- [device rm <uuid> ](#device-rm-uuid )
- [device identify <uuid> ](#device-identify-uuid )
- [device reboot <uuid> ](#device-reboot-uuid )
- [device shutdown <uuid> ](#device-shutdown-uuid )
- [device public-url enable <uuid> ](#device-public-url-enable-uuid )
- [device public-url disable <uuid> ](#device-public-url-disable-uuid )
- [device public-url <uuid> ](#device-public-url-uuid )
- [device public-url status <uuid> ](#device-public-url-status-uuid )
- [device rename < uuid> [newName]](#device-rename-uuid-newname)
- [device move <uuid> ](#device-move-uuid )
2015-09-29 15:10:33 +00:00
- [device init ](#device-init )
2019-06-11 12:08:15 +00:00
- [device os-update <uuid> ](#device-os-update-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)
2019-02-22 16:37:57 +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 )
2019-02-22 16:37:57 +00:00
- [tag set < tagKey> [value]](#tag-set-tagkey-value)
- [tag rm <tagKey> ](#tag-rm-tagkey )
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
2019-02-22 16:37:57 +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 rm <id> ](#key-rm-id )
- [key add < name> [path]](#key-add-name-path)
2015-04-16 13:34:40 +00:00
- Logs
2019-04-24 11:08:26 +00:00
- [logs <uuidOrDevice> ](#logs-uuidordevice )
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 )
2019-04-24 17:45:19 +00:00
- [ssh < applicationOrDevice> [serviceName]](#ssh-applicationordevice-servicename)
2019-06-06 16:56:20 +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
- [config read ](#config-read )
2019-02-22 16:37:57 +00:00
- [config write <key> <value> ](#config-write-key-value )
- [config inject <file> ](#config-inject-file )
2015-11-11 14:38:45 +00:00
- [config reconfigure ](#config-reconfigure )
2016-03-28 13:25:40 +00:00
- [config generate ](#config-generate )
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
2019-02-22 16:37:57 +00:00
- [push <applicationOrDevice> ](#push-applicationordevice )
2018-06-26 16:59:44 +00:00
2015-11-16 02:08:02 +00:00
- Settings
- [settings ](#settings )
2017-04-11 13:25:54 +00:00
- Local
2019-02-22 16:37:57 +00:00
- [local configure <target> ](#local-configure-target )
2019-05-30 14:18:58 +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)
- [deploy < appName> [image]](#deploy-appname-image)
2017-04-26 12:34:40 +00:00
2018-11-14 22:26:14 +00:00
- Platform
2019-02-22 16:37:57 +00:00
- [join [deviceIp]](#join-deviceip)
- [leave [deviceIp]](#leave-deviceip)
2018-11-14 22:26:14 +00:00
2017-06-14 21:23:39 +00:00
- Utilities
- [util available-drives ](#util-available-drives )
2019-04-18 15:49:17 +00:00
# API keys
2018-04-04 12:42:57 +00:00
## api-key generate <name>
This command generates a new API key for the current user, with the given
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
2015-04-16 13:34:40 +00:00
# Application
2015-04-16 14:42:09 +00:00
2018-03-20 17:43:26 +00:00
## app create <name>
2015-04-16 13:34:40 +00:00
2018-10-19 14:38:50 +00:00
Use this command to create a new balena application.
2015-04-16 13:34:40 +00:00
2017-05-12 10:01:37 +00:00
You can specify the application device type with the `--type` option.
2015-04-16 13:34:40 +00:00
Otherwise, an interactive dropdown will be shown for you to select from.
You can see a list of supported device types with
2018-10-19 14:38:50 +00:00
$ balena devices supported
2015-04-16 13:34:40 +00:00
Examples:
2018-10-19 14:38:50 +00:00
$ balena app create MyApp
$ balena app create MyApp --type raspberry-pi
2015-04-16 13:34:40 +00:00
### Options
2017-05-12 10:01:37 +00:00
#### --type, -t <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
2018-03-20 17:43:26 +00:00
## apps
2015-04-16 13:34:40 +00:00
Use this command to list all your applications.
Notice this command only shows the most important bits of information for each app.
2018-10-19 14:38:50 +00:00
If you want detailed information, use balena app < name > instead.
2015-04-16 13:34:40 +00:00
Examples:
2018-10-19 14:38:50 +00:00
$ balena apps
2015-04-16 13:34:40 +00:00
2018-03-20 17:43:26 +00:00
## app <name>
2015-04-16 13:34:40 +00:00
Use this command to show detailed information for a single application.
Examples:
2018-10-19 14:38:50 +00:00
$ balena app MyApp
2015-04-16 13:34:40 +00:00
2018-03-20 17:43:26 +00:00
## app restart <name>
2015-04-16 13:34:40 +00:00
Use this command to restart all devices that belongs to a certain application.
Examples:
2018-10-19 14:38:50 +00:00
$ balena app restart MyApp
2015-04-16 13:34:40 +00:00
2018-03-20 17:43:26 +00:00
## app rm <name>
2015-04-16 13:34:40 +00:00
2018-10-19 14:38:50 +00:00
Use this command to remove a balena application.
2015-04-16 13:34:40 +00:00
Notice this command asks for confirmation interactively.
You can avoid this by passing the `--yes` boolean option.
Examples:
2018-10-19 14:38:50 +00:00
$ balena app rm MyApp
$ balena app rm MyApp --yes
2015-04-16 13:34:40 +00:00
### Options
#### --yes, -y
confirm non interactively
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
2018-10-19 14:38:50 +00:00
Use this command to 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:
- Web authorization: open your web browser and prompt you 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
### Options
#### --token, -t <token>
2018-11-07 15:16:13 +00:00
session token or API key
2015-04-16 13:34:40 +00:00
2016-01-12 13:07:15 +00:00
#### --web, -w
web-based login
2015-12-12 04:09:31 +00:00
#### --credentials, -c
credential-based login
2017-12-21 17:40:13 +00:00
#### --email, -e, -u <email>
2015-12-12 04:09:31 +00:00
email
#### --password, -p <password>
password
2018-03-20 17:43:26 +00:00
## logout
2015-04-16 13:34:40 +00:00
2018-12-28 13:40:18 +00:00
Use this command to 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
2015-09-01 17:01:47 +00:00
Use this command to find out the current logged in username and email address.
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
2018-03-20 17:43:26 +00:00
## devices
2015-04-16 13:34:40 +00:00
2015-04-27 15:20:53 +00:00
Use this command to list all devices that belong to you.
You can filter the devices by application by using the `--application` option.
2015-04-16 13:34:40 +00:00
Examples:
2018-10-19 14:38:50 +00:00
$ balena devices
$ balena devices --application MyApp
$ balena devices --app MyApp
$ balena devices -a MyApp
2015-04-16 13:34:40 +00:00
### Options
2017-12-21 17:40:13 +00:00
#### --application, -a, --app <application>
2015-04-16 13:34:40 +00:00
application name
2018-03-20 17:43:26 +00:00
## device <uuid>
2015-04-16 13:34:40 +00:00
Use this command to show information about a single device.
Examples:
2018-10-19 14:38:50 +00:00
$ balena device 7cf02a6
2015-04-16 13:34:40 +00:00
2018-03-20 17:43:26 +00:00
## devices supported
2016-09-25 23:51:32 +00:00
Use this command to get the list of all supported devices
Examples:
2018-10-19 14:38:50 +00:00
$ balena devices supported
2016-09-25 23:51:32 +00:00
2018-03-20 17:43:26 +00:00
## device register <application>
2015-09-29 18:33:31 +00:00
Use this command to register a device to an application.
Examples:
2018-10-19 14:38:50 +00:00
$ balena device register MyApp
$ balena device register MyApp --uuid < uuid >
2015-09-29 18:33:31 +00:00
2015-10-19 18:16:47 +00:00
### Options
#### --uuid, -u <uuid>
custom uuid
2018-03-20 17:43:26 +00:00
## device rm <uuid>
2015-04-16 13:34:40 +00:00
2018-10-19 14:38:50 +00:00
Use this command to remove a device from balena.
2015-04-16 13:34:40 +00:00
Notice this command asks for confirmation interactively.
You can avoid this by passing the `--yes` boolean option.
Examples:
2018-10-19 14:38:50 +00:00
$ balena device rm 7cf02a6
$ balena device rm 7cf02a6 --yes
2015-04-16 13:34:40 +00:00
### Options
#### --yes, -y
confirm non interactively
2018-03-20 17:43:26 +00:00
## device identify <uuid>
2015-04-16 13:34:40 +00:00
Use this command to identify a device.
In the Raspberry Pi, the ACT led is blinked several times.
Examples:
2018-10-19 14:38:50 +00:00
$ balena device identify 23c73a1
2015-04-16 13:34:40 +00:00
2018-03-20 17:43:26 +00:00
## device reboot <uuid>
2016-03-04 13:38:11 +00:00
Use this command to remotely reboot a device
Examples:
2018-10-19 14:38:50 +00:00
$ balena device reboot 23c73a1
2016-03-04 13:38:11 +00:00
2016-10-26 14:46:20 +00:00
### Options
2017-01-18 15:57:52 +00:00
#### --force, -f
2016-10-26 14:46:20 +00:00
force action if the update lock is set
2018-03-20 17:43:26 +00:00
## device shutdown <uuid>
2016-10-26 14:46:20 +00:00
Use this command to remotely shutdown a device
Examples:
2018-10-19 14:38:50 +00:00
$ balena device shutdown 23c73a1
2016-10-26 14:46:20 +00:00
### Options
2017-01-18 15:57:52 +00:00
#### --force, -f
2016-10-26 14:46:20 +00:00
force action if the update lock is set
2018-03-20 17:43:26 +00:00
## device public-url enable <uuid>
2016-09-25 23:51:32 +00:00
Use this command to enable public URL for a device
Examples:
2018-10-19 14:38:50 +00:00
$ balena device public-url enable 23c73a1
2016-09-25 23:51:32 +00:00
2018-03-20 17:43:26 +00:00
## device public-url disable <uuid>
2016-09-25 23:51:32 +00:00
Use this command to disable public URL for a device
Examples:
2018-10-19 14:38:50 +00:00
$ balena device public-url disable 23c73a1
2016-09-25 23:51:32 +00:00
2018-03-20 17:43:26 +00:00
## device public-url <uuid>
2016-09-25 23:51:32 +00:00
Use this command to get the public URL of a device
Examples:
2018-10-19 14:38:50 +00:00
$ balena device public-url 23c73a1
2016-09-25 23:51:32 +00:00
2018-03-20 17:43:26 +00:00
## device public-url status <uuid>
2016-09-25 23:51:32 +00:00
Use this command to determine if public URL is enabled for a device
Examples:
2018-10-19 14:38:50 +00:00
$ balena device public-url status 23c73a1
2016-09-25 23:51:32 +00:00
2018-03-20 17:43:26 +00:00
## device rename <uuid> [newName]
2015-04-16 13:34:40 +00:00
Use this command to rename a device.
If you omit the name, you'll get asked for it interactively.
Examples:
2018-10-19 14:38:50 +00:00
$ balena device rename 7cf02a6
$ balena device rename 7cf02a6 MyPi
2015-04-16 13:34:40 +00:00
2018-03-20 17:43:26 +00:00
## device move <uuid>
2015-11-11 19:00:02 +00:00
Use this command to move a device to another application you own.
If you omit the application, you'll get asked for it interactively.
Examples:
2018-10-19 14:38:50 +00:00
$ balena device move 7cf02a6
$ balena device move 7cf02a6 --application MyNewApp
2015-11-11 19:00:02 +00:00
### Options
2017-12-21 17:40:13 +00:00
#### --application, -a, --app <application>
2015-11-11 19:00:02 +00:00
application name
2018-03-20 17:43:26 +00:00
## device init
2015-04-16 13:34:40 +00:00
Use this command to download the OS image of a certain application and write it to an SD Card.
2015-09-29 15:10:33 +00:00
Notice this command may ask for confirmation interactively.
2015-04-16 13:34:40 +00:00
You can avoid this by passing the `--yes` boolean option.
Examples:
2018-10-19 14:38:50 +00:00
$ balena device init
$ balena device init --application MyApp
2015-04-16 13:34:40 +00:00
### Options
2017-12-21 17:40:13 +00:00
#### --application, -a, --app <application>
2015-04-16 13:34:40 +00:00
application name
2015-09-29 15:10:33 +00:00
#### --yes, -y
2015-04-16 13:34:40 +00:00
2015-09-29 15:10:33 +00:00
confirm non interactively
2015-04-16 13:34:40 +00:00
2015-10-20 13:16:56 +00:00
#### --advanced, -v
2017-06-14 21:51:56 +00:00
show advanced configuration options
2015-10-20 13:16:56 +00:00
2017-06-12 10:21:12 +00:00
#### --os-version <os-version>
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)
#### --drive, -d <drive>
2018-10-19 14:38:50 +00:00
the drive to write the image to, like `/dev/sdb` or `/dev/mmcblk0` . Careful with this as you can erase your hard drive. Check `balena util available-drives` for available options.
2017-06-12 10:21:12 +00:00
#### --config <config>
2018-10-19 14:38:50 +00:00
path to the config JSON file, see `balena os build-config`
2017-06-12 10:21:12 +00:00
2019-06-11 12:08:15 +00:00
## device os-update <uuid>
Use this command to trigger a Host OS update for a device.
Notice this command will ask for confirmation interactively.
You can avoid this by passing the `--yes` boolean option.
Examples:
$ balena device os-update 23c73a1
$ balena device os-update 23c73a1 --version 2.31.0+rev1.prod
### Options
#### --version <version>
a balenaOS version
#### --yes, -y
confirm non interactively
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-09-06 13:43:53 +00:00
List the environment or config variables of an application or device,
as selected by the respective command-line options.
2015-04-16 13:34:40 +00:00
2019-09-06 13:43:53 +00:00
The --config option is used to list "configuration variables" that
control balena features.
2015-04-16 13:34:40 +00:00
2019-03-04 15:02:09 +00:00
Service-specific variables are not currently supported. The following
examples list variables that apply to all services in an app or device.
2018-05-31 10:43:11 +00:00
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
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
2015-04-16 13:34:40 +00:00
### Options
2019-09-06 13:43:53 +00:00
#### -a, --application APPLICATION
2015-04-16 13:34:40 +00:00
application name
2019-09-06 13:43:53 +00:00
#### -c, --config
2015-07-07 22:01:25 +00:00
2019-09-06 13:43:53 +00:00
show config variables
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
#### -v, --verbose
produce verbose output
2015-04-16 13:34:40 +00:00
2019-08-07 09:28:15 +00:00
## env rm ID
2015-04-16 13:34:40 +00:00
2019-10-02 18:23:50 +00:00
Remove a configuration or environment variable from an application or device,
as selected by command-line options.
2015-04-16 13:34:40 +00:00
2019-08-07 09:28:15 +00:00
Note that this command asks for confirmation interactively.
2015-04-16 13:34:40 +00:00
You can avoid this by passing the `--yes` boolean option.
2019-03-04 15:02:09 +00:00
The --device option selects a device instead of an application.
2019-10-02 18:23:50 +00:00
The --config option selects a config var instead of an env var.
2019-03-04 15:02:09 +00:00
Service-specific variables are not currently supported. The following
examples remove variables that apply to all services in an app or device.
2015-07-07 22:01:25 +00:00
2015-04-16 13:34:40 +00:00
Examples:
2018-10-19 14:38:50 +00:00
$ balena env rm 215
$ balena env rm 215 --yes
2019-10-02 18:23:50 +00:00
$ balena env rm 215 --config
2018-10-19 14:38:50 +00:00
$ balena env rm 215 --device
2019-10-02 18:23:50 +00:00
$ balena env rm 215 --device --config
2015-04-16 13:34:40 +00:00
2019-08-07 09:28:15 +00:00
### Arguments
#### ID
2019-09-06 13:43:53 +00:00
environment variable numeric database ID
2019-08-07 09:28:15 +00:00
2015-04-16 13:34:40 +00:00
### Options
2019-08-07 09:28:15 +00:00
#### -d, --device
2015-04-16 13:34:40 +00:00
2019-08-07 09:28:15 +00:00
Selects a device environment variable instead of an application environment variable
2015-04-16 13:34:40 +00:00
2019-10-02 18:23:50 +00:00
#### -c, --config
Selects a configuration variable instead of an environment variable
2019-08-07 09:28:15 +00:00
#### -y, --yes
2015-07-07 22:01:25 +00:00
2019-08-07 09:28:15 +00:00
Run in non-interactive mode
2015-07-07 22:01:25 +00:00
2019-04-02 11:26:21 +00:00
## env add NAME [VALUE]
2015-04-16 13:34:40 +00:00
2019-05-25 21:11:26 +00:00
Add an environment or config variable to an application or device, as selected
2019-04-02 11:26:21 +00:00
by the respective command-line options.
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-04-02 11:26:21 +00:00
Service-specific variables are not currently supported. The given command line
examples variables that apply to all services in an app or device.
2019-03-04 15:02:09 +00:00
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
2018-10-19 14:38:50 +00:00
$ balena env add EDITOR vim --device 7cf02a6
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-05-25 21:11:26 +00:00
variable value; if omitted, use value from CLI's 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
application name
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-09-06 13:43:53 +00:00
## env rename ID VALUE
2019-03-04 15:02:09 +00:00
2019-09-06 13:43:53 +00:00
Change the value of an environment variable for an application or device,
as selected by the '--device' option. The variable is identified by its
database ID, rather than its name. The 'balena envs' command can be used
to list the variable's ID.
2015-04-16 13:34:40 +00:00
2019-03-04 15:02:09 +00:00
Service-specific variables are not currently supported. The following
examples modify variables that apply to all services in an app or device.
2015-07-07 22:01:25 +00:00
2015-04-16 13:34:40 +00:00
Examples:
2018-10-19 14:38:50 +00:00
$ balena env rename 376 emacs
$ balena env rename 376 emacs --device
2015-07-07 22:01:25 +00:00
2019-09-06 13:43:53 +00:00
### Arguments
#### ID
environment variable numeric database ID
#### VALUE
variable value; if omitted, use value from CLI's environment
2015-07-07 22:01:25 +00:00
### Options
2019-09-06 13:43:53 +00:00
#### -d, --device
2015-07-07 22:01:25 +00:00
2019-09-06 13:43:53 +00:00
select a device variable instead of an application variable
2015-04-16 13:34:40 +00:00
2018-12-10 21:05:35 +00:00
# Tags
## tags
Use this command to list all tags for
a particular application, device or release.
This command lists all application/device/release tags.
Example:
$ balena tags --application MyApp
$ balena tags --device 7cf02a6
$ balena tags --release 1234
### Options
#### --application, -a, --app <application>
application name
#### --device, -d <device>
device uuid
#### --release, -r <release>
release id
## tag set <tagKey> [value]
Use this command to set a tag to 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. When the value isn't
provided, a tag with an empty value is created.
Examples:
$ balena tag set mySimpleTag --application MyApp
$ balena tag set myCompositeTag myTagValue --application MyApp
$ balena tag set myCompositeTag myTagValue --device 7cf02a6
$ balena tag set myCompositeTag myTagValue --release 1234
$ balena tag set myCompositeTag "my tag value with whitespaces" --release 1234
### Options
#### --application, -a, --app <application>
application name
#### --device, -d <device>
device uuid
#### --release, -r <release>
release id
## tag rm <tagKey>
Use this command to remove a tag from an application, device or release.
Examples:
$ balena tag rm myTagKey --application MyApp
$ balena tag rm myTagKey --device 7cf02a6
$ balena tag rm myTagKey --release 1234
### Options
#### --application, -a, --app <application>
application name
#### --device, -d <device>
device uuid
#### --release, -r <release>
release id
2019-06-24 15:51:07 +00:00
# Help and Version
2015-04-16 14:42:09 +00:00
2018-03-20 17:43:26 +00:00
## help [command...]
2015-04-16 13:34:40 +00:00
Get detailed help for an specific command.
Examples:
2018-10-19 14:38:50 +00:00
$ balena help apps
$ balena help os download
2015-04-16 13:34:40 +00:00
2015-10-15 12:48:34 +00:00
### Options
#### --verbose, -v
show additional commands
2018-03-20 17:43:26 +00:00
## version
2015-04-16 13:34:40 +00:00
2019-06-24 15:51:07 +00:00
Display version information for the balena CLI and/or Node.js.
If you intend to parse the output, please use the -j option for
JSON output, as its format is more stable.
Examples:
$ balena version
$ balena version -a
$ balena version -j
### 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
Use this command to list all your SSH keys.
Examples:
2018-10-19 14:38:50 +00:00
$ balena keys
2015-04-16 13:34:40 +00:00
2018-03-20 17:43:26 +00:00
## key <id>
2015-04-16 13:34:40 +00:00
Use this command to show information about a single SSH key.
Examples:
2018-10-19 14:38:50 +00:00
$ balena key 17
2015-04-16 13:34:40 +00:00
2018-03-20 17:43:26 +00:00
## key rm <id>
2015-04-16 13:34:40 +00:00
2018-10-19 14:38:50 +00:00
Use this command to remove a SSH key from balena.
2015-04-16 13:34:40 +00:00
Notice this command asks for confirmation interactively.
You can avoid this by passing the `--yes` boolean option.
Examples:
2018-10-19 14:38:50 +00:00
$ balena key rm 17
$ balena key rm 17 --yes
2015-04-16 13:34:40 +00:00
### Options
#### --yes, -y
confirm non interactively
2018-03-20 17:43:26 +00:00
## key add <name> [path]
2015-04-16 13:34:40 +00:00
Use this command to associate a new SSH key with your account.
If `path` is omitted, the command will attempt
to read the SSH key from stdin.
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
2015-04-16 13:34:40 +00:00
# Logs
2015-04-16 14:42:09 +00:00
2019-04-24 11:08:26 +00:00
## logs <uuidOrDevice>
2015-04-16 13:34:40 +00:00
Use this command to show logs for a specific device.
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
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
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
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
### Options
#### --tail, -t
continuously stream output
2019-04-24 13:59:07 +00:00
#### --service, -s <service>
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
#### --system, -S
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
Examples:
$ balena scan
$ balena scan --timeout 120
$ balena scan --verbose
### Options
#### --verbose, -v
Display full info
#### --timeout, -t <timeout>
Scan timeout in seconds
2016-04-24 19:52:41 +00:00
2019-04-24 17:45:19 +00:00
## ssh <applicationOrDevice> [serviceName]
2016-05-19 14:10:45 +00:00
2019-04-24 17:45:19 +00:00
This command can be used to 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.
If an application name is provided, all online devices in the application
will be presented, and the chosen device will then have a shell opened on
in it's service container or host OS.
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
Examples:
2019-04-24 17:45:19 +00:00
balena ssh MyApp
2016-04-24 19:52:41 +00:00
2019-04-24 17:45:19 +00:00
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
2019-08-09 20:00:20 +00:00
Warning: `balena ssh` requires an openssh-compatible client to be correctly
2019-04-24 17:45:19 +00:00
installed in your shell environment. For more information (including Windows
2019-05-13 14:03:07 +00:00
support) please check:
2019-04-24 17:45:19 +00:00
https://github.com/balena-io/balena-cli/blob/master/INSTALL.md#additional-dependencies
2016-04-24 19:52:41 +00:00
### Options
2016-07-21 16:35:44 +00:00
#### --port, -p <port>
2016-04-24 19:52:41 +00:00
2019-04-24 17:45:19 +00:00
SSH gateway port
2016-04-24 19:52:41 +00:00
2016-06-22 13:46:18 +00:00
#### --verbose, -v
2019-04-24 17:45:19 +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
2019-04-24 17:45:19 +00:00
Don't use the proxy configuration for this connection. This flag
only make sense if you've configured a proxy globally.
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
Use this command to open local ports which tunnel to listening ports on your balenaOS device.
For example, you could open port 8080 on your local machine to connect to your managed balenaOS
device running a web server listening on port 3000.
You can tunnel multiple ports at any given time.
Examples:
# map remote port 22222 to localhost:22222
$ balena tunnel abcde12345 -p 22222
# map remote port 22222 to localhost:222
$ balena tunnel abcde12345 -p 22222:222
# map remote port 22222 to any address on your host machine, port 22222
$ balena tunnel abcde12345 -p 22222:0.0.0.0
# map remote port 22222 to any address on your host machine, port 222
$ balena tunnel abcde12345 -p 22222:0.0.0.0:222
# multiple port tunnels can be specified at any one time
$ balena tunnel abcde12345 -p 8080:3000 -p 8081:9000
### Options
#### --port, -p <port>
The mapping of remote to local ports.
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
Use this command to set or update a device note.
If note command isn't passed, the tool attempts to read from `stdin` .
2018-10-19 14:38:50 +00:00
To view the notes, use $ balena device < uuid > .
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
### Options
2017-12-21 17:40:13 +00:00
#### --device, -d, --dev <device>
2015-04-16 13:34:40 +00:00
2015-08-04 14:00:09 +00:00
device uuid
2015-04-16 13:34:40 +00:00
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
2018-10-19 14:38:50 +00:00
Use this command to show the available balenaOS versions for a certain device type.
Check available types with `balena devices supported`
2017-06-12 10:21:12 +00:00
Example:
2018-10-19 14:38:50 +00:00
$ balena os versions raspberrypi3
2017-06-12 10:21:12 +00:00
2018-03-20 17:43:26 +00:00
## os download <type>
2015-09-29 17:03:14 +00:00
Use this command to 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
2017-03-22 10:50:06 +00:00
If version is not specified the newest stable (non-pre-release) version of OS
is downloaded if available, or the newest version otherwise (if all existing
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.
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
$ balena os download raspberrypi3 -o ../foo/bar/raspberry-pi.img --version 1.24.1
$ balena os download raspberrypi3 -o ../foo/bar/raspberry-pi.img --version ^1.20.0
$ 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
### Options
#### --output, -o <output>
output path
2017-03-22 10:50:06 +00:00
#### --version <version>
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
2018-10-19 14:38:50 +00:00
Use this command to prebuild the OS config once and skip the interactive part of `balena os configure` .
2017-06-12 10:21:12 +00:00
2017-11-16 18:11:17 +00:00
Example:
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
### Options
#### --advanced, -v
2017-06-14 21:51:56 +00:00
show advanced configuration options
2017-06-12 10:21:12 +00:00
#### --output, -o <output>
the path to the output JSON file
2018-10-15 17:03:21 +00:00
## os configure <image>
2015-09-29 17:36:29 +00:00
2017-11-16 18:13:20 +00:00
Use this command to configure a previously downloaded operating system image for
the specific device or for an application generally.
2015-09-29 17:36:29 +00:00
2018-11-05 08:18:18 +00:00
This command will try to automatically determine the operating system version in order
to correctly configure the image. It may fail to do so however, in which case you'll
have to call this command again with the exact version number of the targeted image.
2018-07-11 18:56:13 +00:00
2018-10-19 14:38:50 +00:00
Note that device api keys are only supported on balenaOS 2.0.3+.
2017-11-16 18:13:20 +00:00
2018-07-11 18:56:13 +00:00
This command still supports the *deprecated* format where the UUID and optionally device key
2017-11-16 18:13:20 +00:00
are passed directly on the command line, but the recommended way is to pass either an --app or
2019-04-02 17:01:28 +00:00
--device argument. The deprecated format will be removed in a future release.
2017-10-13 18:29:47 +00:00
2018-12-07 15:44:18 +00:00
In case that you want to configure an image for an application with mixed device types,
you can pass the --device-type argument along with --app to specify the target device type.
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
$ balena os configure ../path/rpi3.img --app MyApp --version 2.12.7
$ balena os configure ../path/rpi3.img --app MyFinApp --device-type raspberrypi3
2015-09-29 17:36:29 +00:00
2015-10-19 17:38:09 +00:00
### Options
#### --advanced, -v
2017-06-14 21:51:56 +00:00
show advanced configuration options
2015-10-19 17:38:09 +00:00
2017-12-21 17:40:13 +00:00
#### --application, -a, --app <application>
2017-11-16 18:13:20 +00:00
application name
#### --device, -d <device>
device uuid
#### --deviceApiKey, -k <device-api-key>
2018-10-19 14:38:50 +00:00
custom device key - note that this is only supported on balenaOS 2.0.3+
2017-11-16 18:13:20 +00:00
2018-12-07 15:44:18 +00:00
#### --deviceType <device-type>
device type slug
2018-07-11 18:56:13 +00:00
#### --version <version>
2018-10-19 14:38:50 +00:00
a balenaOS version
2018-07-11 18:56:13 +00:00
2017-06-12 10:21:12 +00:00
#### --config <config>
2018-10-19 14:38:50 +00:00
path to the config JSON file, see `balena os build-config`
2017-06-12 10:21:12 +00:00
2018-03-20 17:43:26 +00:00
## os initialize <image>
2015-09-29 18:52:34 +00:00
2017-03-24 09:48:14 +00:00
Use this command to initialize a device with previously configured operating system image.
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:
2018-10-19 14:38:50 +00:00
$ balena os initialize ../path/rpi.img --type 'raspberry-pi'
2015-10-15 12:48:34 +00:00
### Options
#### --yes, -y
confirm non interactively
2017-05-12 10:01:37 +00:00
#### --type, -t <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
2015-10-20 13:17:48 +00:00
#### --drive, -d <drive>
2018-10-19 14:38:50 +00:00
the drive to write the image to, like `/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
2015-11-10 16:53:34 +00:00
# Config
2018-03-20 17:43:26 +00:00
## config read
2015-11-10 16:53:34 +00:00
2016-06-22 13:46:18 +00:00
Use this command to read the config.json file from the mounted filesystem (e.g. SD card) of a provisioned device"
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
2018-10-19 14:38:50 +00:00
$ balena config read --type raspberry-pi
$ balena config read --type raspberry-pi --drive /dev/disk2
2015-11-10 16:53:34 +00:00
### Options
2017-05-12 10:01:37 +00:00
#### --type, -t <type>
2015-11-10 16:53:34 +00:00
2018-10-19 14:38:50 +00:00
device type (Check available types with `balena devices supported` )
2015-11-10 16:53:34 +00:00
#### --drive, -d <drive>
drive
2018-03-20 17:43:26 +00:00
## config write <key> <value>
2015-11-10 18:27:01 +00:00
2016-06-22 13:46:18 +00:00
Use this command to write the config.json file to the mounted filesystem (e.g. SD card) of a provisioned device
2015-11-10 18:27:01 +00:00
Examples:
2018-10-19 14:38:50 +00:00
$ balena config write --type raspberry-pi username johndoe
$ balena config write --type raspberry-pi --drive /dev/disk2 username johndoe
$ balena config write --type raspberry-pi files.network/settings "..."
2015-11-10 18:27:01 +00:00
### Options
2017-05-12 10:01:37 +00:00
#### --type, -t <type>
2015-11-10 18:27:01 +00:00
2018-10-19 14:38:50 +00:00
device type (Check available types with `balena devices supported` )
2015-11-10 18:27:01 +00:00
#### --drive, -d <drive>
drive
2018-03-20 17:43:26 +00:00
## config inject <file>
2016-03-17 20:07:19 +00:00
2018-01-26 14:43:00 +00:00
Use this command to inject a config.json file to the mounted filesystem
2018-10-19 14:38:50 +00:00
(e.g. SD card or mounted balenaOS image) of a provisioned device"
2016-03-17 20:07:19 +00:00
Examples:
2018-10-19 14:38:50 +00:00
$ balena config inject my/config.json --type raspberry-pi
$ balena config inject my/config.json --type raspberry-pi --drive /dev/disk2
2016-03-17 20:07:19 +00:00
### Options
2017-05-12 10:01:37 +00:00
#### --type, -t <type>
2016-03-17 20:07:19 +00:00
2018-10-19 14:38:50 +00:00
device type (Check available types with `balena devices supported` )
2016-03-17 20:07:19 +00:00
#### --drive, -d <drive>
drive
2018-03-20 17:43:26 +00:00
## config reconfigure
2015-11-11 14:38:45 +00:00
Use this command to reconfigure a provisioned device
Examples:
2018-10-19 14:38:50 +00:00
$ balena config reconfigure --type raspberry-pi
$ balena config reconfigure --type raspberry-pi --advanced
$ balena config reconfigure --type raspberry-pi --drive /dev/disk2
2015-11-11 14:38:45 +00:00
### Options
2017-05-12 10:01:37 +00:00
#### --type, -t <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
#### --drive, -d <drive>
drive
#### --advanced, -v
show advanced commands
2018-03-20 17:43:26 +00:00
## config generate
2016-02-27 02:37:15 +00:00
2017-11-14 13:14:53 +00:00
Use this command to generate a config.json for a device or application.
2018-10-15 17:03:21 +00:00
Calling this command with the exact version number of the targeted image is required.
2018-07-11 18:56:13 +00:00
2017-11-14 13:14:53 +00:00
This 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.
2016-02-27 02:37:15 +00:00
2018-12-07 15:44:18 +00:00
In case that you want to configure an image for an application with mixed device types,
you can pass the --device-type argument along with --app to specify the target device type.
2016-02-27 02:37:15 +00:00
Examples:
2018-11-23 13:33:41 +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
2018-12-07 15:44:18 +00:00
$ balena config generate --app MyApp --version 2.12.7 --device-type fincm3
2018-11-23 13:33:41 +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
2016-02-27 02:37:15 +00:00
### Options
2018-07-11 18:56:13 +00:00
#### --version <version>
2018-10-19 14:38:50 +00:00
a balenaOS version
2018-07-11 18:56:13 +00:00
2017-12-21 17:40:13 +00:00
#### --application, -a, --app <application>
2016-03-28 13:25:40 +00:00
application name
#### --device, -d <device>
device uuid
2017-04-19 03:21:59 +00:00
#### --deviceApiKey, -k <device-api-key>
2018-10-19 14:38:50 +00:00
custom device key - note that this is only supported on balenaOS 2.0.3+
2017-04-19 03:21:59 +00:00
2018-12-07 15:44:18 +00:00
#### --deviceType <device-type>
device type slug
2018-07-10 17:45:48 +00:00
#### --generate-device-api-key
generate a fresh device key for the device
2016-02-27 02:37:15 +00:00
#### --output, -o <output>
output
2017-11-14 13:14:53 +00:00
#### --network <network>
the network type to use: ethernet or wifi
#### --wifiSsid <wifiSsid>
the wifi ssid to use (used only if --network is set to wifi)
#### --wifiKey <wifiKey>
the wifi key to use (used only if --network is set to wifi)
#### --appUpdatePollInterval <appUpdatePollInterval>
how frequently (in minutes) to poll for application updates
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
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)
2018-10-19 14:38:50 +00:00
please check the README here: https://github.com/balena-io/balena-cli .
2017-10-25 11:17:07 +00:00
Use this command to preload an application to a local disk image (or
2018-10-19 14:38:50 +00:00
Edison zip archive) with a built release from balena.
2017-10-25 11:17:07 +00:00
Examples:
2018-10-03 13:27:53 +00:00
2018-10-19 14:38:50 +00:00
$ balena preload balena.img --app 1234 --commit e1f2592fc6ee949e68756d4f4a48e49bff8d72a0 --splash-image image.png
$ balena preload balena.img
2017-10-25 11:17:07 +00:00
### Options
#### --app, -a <appId>
id of the application to preload
#### --commit, -c <hash>
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
#### --splash-image, -s <splashImage.png>
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
2018-08-20 16:19:10 +00:00
Disables check for matching architecture in image and application
2017-10-25 11:17:07 +00:00
2018-05-30 13:33:05 +00:00
#### --pin-device-to-release, -p
2019-05-13 14:03:07 +00:00
Pin the preloaded device to the preloaded release on provision
2018-05-30 13:33:05 +00:00
2019-05-30 11:57:03 +00:00
#### --add-certificate <certificate.crt>
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.
2017-10-25 11:17:07 +00:00
#### --docker, -P <docker>
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
#### --dockerHost, -h <dockerHost>
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
2019-05-13 14:03:07 +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
#### --ca <ca>
Docker host TLS certificate authority file
#### --cert <cert>
Docker host TLS certificate file
#### --key <key>
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
2019-04-23 10:38:13 +00:00
This command can be used to start a build on the remote balena cloud builders,
or a local mode balena 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
containers. The synchronisation is only in one direction, from this machine to
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
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:
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}'
2018-10-16 10:25:37 +00:00
2019-08-15 14:38:50 +00:00
For a sample project using registry secrets with the Google Container Registry,
check: https://github.com/balena-io-playground/sample-gcr-registry-secrets
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
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 >
2018-06-26 16:59:44 +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
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
2018-06-26 16:59:44 +00:00
### Options
#### --source, -s <source>
2018-10-19 14:38:50 +00:00
The source that should be sent to the balena builder to be built (defaults to the current directory)
2018-06-26 16:59:44 +00:00
2018-06-21 13:29:25 +00:00
#### --emulated, -e
Force an emulated build to occur on the remote builder
2019-04-11 11:49:19 +00:00
#### --dockerfile <Dockerfile>
Alternative Dockerfile name/path, relative to the source folder
2018-06-21 13:29:25 +00:00
#### --nocache, -c
Don't use cache when building this project
2018-11-07 18:15:05 +00:00
#### --registry-secrets, -R <secrets.yml|.json>
2019-06-18 10:13:09 +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
2019-05-29 14:09:05 +00:00
Don't run a live session on this push. The filesystem will not be monitored, and changes
will not be synchronised 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
2019-04-24 13:31:30 +00:00
#### --detached, -d
2019-07-25 09:11: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
2019-04-24 13:59:07 +00:00
#### --service <service>
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.
2019-05-27 10:32:47 +00:00
#### --env <env>
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.
2015-11-16 02:08:02 +00:00
# Settings
2018-03-20 17:43:26 +00:00
## settings
2015-11-16 02:08:02 +00:00
Use this command to display detected settings
Examples:
2018-10-19 14:38:50 +00:00
$ balena settings
2015-11-16 02:08:02 +00:00
2017-04-11 13:25:54 +00:00
# Local
2018-03-20 17:43:26 +00:00
## local configure <target>
2017-04-11 13:25:54 +00:00
2018-10-19 14:38:50 +00:00
Use this command to configure or reconfigure a balenaOS drive or image.
2017-04-11 13:25:54 +00:00
Examples:
2018-10-19 14:38:50 +00:00
$ balena local configure /dev/sdc
$ balena local configure path/to/image.img
2017-04-11 13:25:54 +00:00
2019-05-30 14:18:58 +00:00
## local flash <image>
Use this command to flash a balenaOS image to a drive.
Examples:
$ balena local flash path/to/balenaos.img[.zip|.gz|.bz2|.xz]
$ balena local flash path/to/balenaos.img --drive /dev/disk2
$ balena local flash path/to/balenaos.img --drive /dev/disk2 --yes
### Options
#### --yes, -y
confirm non-interactively
#### --drive, -d <drive>
drive
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
2019-04-11 11:49:19 +00:00
You must provide either an application or a device-type/architecture pair to use
the balena Dockerfile pre-processor (e.g. Dockerfile.template -> Dockerfile).
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
2019-04-11 11:49:19 +00:00
directory if one isn't specified) for a docker-compose.yml file. If it is found,
this command will build each service defined in the compose file. 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
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:
'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}'
2019-08-15 14:38:50 +00:00
For a sample project using registry secrets with the Google Container Registry,
check: https://github.com/balena-io-playground/sample-gcr-registry-secrets
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
2017-04-26 12:34:40 +00:00
Examples:
2018-10-19 14:38:50 +00:00
$ balena build
$ balena build ./source/
2018-12-03 13:10:54 +00:00
$ balena build --deviceType raspberrypi3 --arch armv7hf --emulated
2018-10-19 14:38:50 +00:00
$ balena build --application MyApp ./source/
$ balena build --docker '/var/run/docker.sock'
$ balena build --dockerHost my.docker.host --dockerPort 2376 --ca ca.pem --key key.pem --cert cert.pem
2017-04-26 12:34:40 +00:00
### Options
#### --arch, -A <arch>
The architecture to build for
2017-05-29 12:59:25 +00:00
#### --deviceType, -d <deviceType>
2017-04-26 12:34:40 +00:00
The type of device this build is for
#### --application, -a <application>
2018-10-19 14:38:50 +00:00
The target balena application this build is for
2017-04-26 12:34:40 +00:00
2017-12-11 22:37:56 +00:00
#### --projectName, -n <projectName>
Specify an alternate project name; default is the directory name
#### --emulated, -e
Run an emulated build using Qemu
2019-04-11 11:49:19 +00:00
#### --dockerfile <Dockerfile>
Alternative Dockerfile name/path, relative to the source folder
2017-12-11 22:37:56 +00:00
#### --logs
Display full log output
2019-02-26 13:32:27 +00:00
#### --registry-secrets, -R <secrets.yml|.json>
Path to a YAML or JSON file with passwords for a private Docker registry
2017-04-26 12:34:40 +00:00
#### --docker, -P <docker>
2019-02-26 13:32:27 +00:00
Path to a local docker socket (e.g. /var/run/docker.sock)
2017-04-26 12:34:40 +00:00
#### --dockerHost, -h <dockerHost>
2019-02-26 13:32:27 +00:00
Docker daemon hostname or IP address (dev machine or balena device)
2017-04-26 12:34:40 +00:00
#### --dockerPort, -p <dockerPort>
2019-02-26 13:32:27 +00:00
Docker daemon TCP port number (hint: 2375 for balena devices)
2017-04-26 12:34:40 +00:00
#### --ca <ca>
Docker host TLS certificate authority file
#### --cert <cert>
Docker host TLS certificate file
#### --key <key>
Docker host TLS key file
#### --tag, -t <tag>
The alias to the generated image
2017-05-12 10:01:37 +00:00
#### --buildArg, -B <arg>
Set a build-time variable (eg. "-B 'ARG=value'"). Can be specified multiple times.
2017-04-26 12:34:40 +00:00
#### --nocache
Don't use docker layer caching when building
2017-06-23 15:20:16 +00:00
#### --squash
Squash newly built layers into a single new layer
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
2019-04-11 11:49:19 +00:00
When --build is used, all options supported by `balena build` are also supported
by this command.
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:
'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}'
2017-04-26 12:34:40 +00:00
2019-08-15 14:38:50 +00:00
For a sample project using registry secrets with the Google Container Registry,
check: https://github.com/balena-io-playground/sample-gcr-registry-secrets
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
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
2017-04-26 12:34:40 +00:00
### Options
2017-12-11 22:37:56 +00:00
#### --source, -s <source>
2017-04-26 12:34:40 +00:00
2017-12-11 22:37:56 +00:00
Specify an alternate source directory; default is the working directory
2017-04-26 12:34:40 +00:00
2017-12-11 22:37:56 +00:00
#### --build, -b
2017-04-26 12:34:40 +00:00
2017-12-11 22:37:56 +00:00
Force a rebuild before deploy
2017-04-26 12:34:40 +00:00
2017-05-12 10:01:37 +00:00
#### --nologupload
Don't upload build logs to the dashboard with image (if building)
2017-12-11 22:37:56 +00:00
#### --projectName, -n <projectName>
Specify an alternate project name; default is the directory name
#### --emulated, -e
Run an emulated build using Qemu
2019-04-11 11:49:19 +00:00
#### --dockerfile <Dockerfile>
Alternative Dockerfile name/path, relative to the source folder
2017-12-11 22:37:56 +00:00
#### --logs
Display full log output
2019-02-26 13:32:27 +00:00
#### --registry-secrets, -R <secrets.yml|.json>
Path to a YAML or JSON file with passwords for a private Docker registry
2017-04-26 12:34:40 +00:00
#### --docker, -P <docker>
2019-02-26 13:32:27 +00:00
Path to a local docker socket (e.g. /var/run/docker.sock)
2017-04-26 12:34:40 +00:00
#### --dockerHost, -h <dockerHost>
2019-02-26 13:32:27 +00:00
Docker daemon hostname or IP address (dev machine or balena device)
2017-04-26 12:34:40 +00:00
#### --dockerPort, -p <dockerPort>
2019-02-26 13:32:27 +00:00
Docker daemon TCP port number (hint: 2375 for balena devices)
2017-04-26 12:34:40 +00:00
#### --ca <ca>
Docker host TLS certificate authority file
#### --cert <cert>
Docker host TLS certificate file
#### --key <key>
Docker host TLS key file
#### --tag, -t <tag>
The alias to the generated image
2017-05-12 10:01:37 +00:00
#### --buildArg, -B <arg>
Set a build-time variable (eg. "-B 'ARG=value'"). Can be specified multiple times.
2017-04-26 12:34:40 +00:00
#### --nocache
Don't use docker layer caching when building
2017-05-12 10:01:37 +00:00
2017-06-23 15:20:16 +00:00
#### --squash
Squash newly built layers into a single new layer
2018-11-14 22:26:14 +00:00
# Platform
## join [deviceIp]
Use this command to move a local device to an application on another balena server.
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.
Moving a device between applications on the same server is not supported.
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
from an interactive picker. This usually requires root privileges.
Examples:
$ balena join
$ balena join balena.local
$ balena join balena.local --application MyApp
$ balena join 192.168.1.25
$ balena join 192.168.1.25 --application MyApp
### Options
#### --application, -a <application>
The name of the application the device should join
## leave [deviceIp]
Use this command to make a local device leave the balena server it is
provisioned on. This effectively makes the device "unmanaged".
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
from an interactive picker. This usually requires root privileges.
Examples:
$ balena leave
$ balena leave balena.local
$ balena leave 192.168.1.25
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
Use this command to list your machine's drives usable for writing the OS image to.
Skips the system drives.