Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/drogue-iot/drg
A command line tool for managing apps and devices in Drogue IoT cloud
https://github.com/drogue-iot/drg
cli drogue-cloud iot
Last synced: 3 days ago
JSON representation
A command line tool for managing apps and devices in Drogue IoT cloud
- Host: GitHub
- URL: https://github.com/drogue-iot/drg
- Owner: drogue-iot
- License: apache-2.0
- Created: 2021-03-02T12:55:26.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-08T09:52:11.000Z (almost 2 years ago)
- Last Synced: 2024-11-10T02:28:45.425Z (6 days ago)
- Topics: cli, drogue-cloud, iot
- Language: Rust
- Homepage: https://drogue.io
- Size: 484 KB
- Stars: 11
- Watchers: 5
- Forks: 5
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
[![Release (latest SemVer)](https://img.shields.io/github/v/tag/drogue-iot/drg?sort=semver)](https://github.com/drogue-iot/drg/releases)
[![Build](https://github.com/drogue-iot/drg/actions/workflows/build.yaml/badge.svg?branch=main)](https://github.com/drogue-iot/drg/actions/workflows/build.yaml)
[![Matrix](https://img.shields.io/matrix/drogue-iot:matrix.org)](https://matrix.to/#/#drogue-iot:matrix.org)# drg : Drogue cloud command line tool
A Command line tool for managing apps and devices in a drogue cloud instance.
# Installation
## Install from sources
Via crates.io:
cargo install drg
## Download a release
Download the latest release from the [github release page](https://github.com/drogue-iot/drg/releases) and place it somewhere in your `$PATH`.
Note: Debian users must install the `libssl1.1` package.
## Homebrew
brew tap drogue-iot/drg
brew install drg## Snap
sudo snap install drogue-cli
sudo snap alias drogue-cli drg# Usage
## Log in to a drogue cloud instance
In order to use `drg` to manage resources in drogue cloud you first need to authenticate :
drg login https://drogue-cloud-api-endpointThen follow the steps to authenticate. drg will generate a config file to save your configuration.
You can also use a refresh token to authenticate, suitable when the browser can't be accessed:
drg login https://drogue-cloud-api-endpoint --token## Managing resources
`drg` interacts with resources existing in drogue-cloud, currently `apps` and `devices` operations are supported.
The following operations are handled :
* create
* delete
* edit
* get
* list### Create resources
# Create an app
drg create app
# adding data
drg create app -d `{"foo":"bar"}`
# Create a device
drg create device --app # --app and -a are interchangeable
# Add some data
drg create device -a -d `{"foo":"bar"}`
### Read resources# Read an app
drg get appp
# Get a list of apps
drg get apps
# Read a device
drg get device --app
# Get a list of devices
drg get devices --app
Note: `list` support adding labels for filtering results:# Get a list of devices (here all 3 labels will be applied.
drg get apps -l key=value,foo=bar --label fiz!=buz
### Edit and delete resources
# edit an app - this will open an editor.
drg edit app
# update an app providing the data
drg edit app -f
# Edit a device data - this will open an editor
drg edit device --app
# update a device providing the data
drg edit device -a -f
# Delete an app
drg delete app
# Delete a device
drg delete device -
# Quickly add a gateway, credentials or alias to a device
drg set gateway foo bar # set device bar as a gateway for device foo
drg set password foo verysecret --username johndoe #username is optional here
drg set alias foo waldo # Add waldo as an alias for device foo.### Send commands to devices
# Using the context default app
drg cmd
# Specifying the app and an opionnal payload
drg cmd -a myApp -p '{"foo":"bar"}'
# Reading the payload from a file
drg cmd -a myApp -f /path/to/json## Configuration file
`drg` will load cluster settings from the default context of a configuration file. The `DRGCFG` environment variable can point to a config file location.
The default config file location is `$HOME/.config/drg_config.yaml`. This default value will be used if the environment variable is not set.
This location can be overriden with the `--config` argument :
drg --config path/to/config create device --appTo get a working config file, run see [login to a drogue cloud instance](#Log-in-to-a-drogue-cloud-instance)
### Context management
A valid configuration can contain multiple context allowing you to switch between cluster easily.
To create a new context simply log into a cluster with `drg login` : [login to a drogue cloud instance](#Log-in-to-a-drogue-cloud-instance)
If it's the first context created for this configuration file it will be set as active by default.To update the active context for a config file :
drg context set-activeHere are some other commads available to manage contexts :
drg context show #will display the whole config file.
drg context list
drg context set-default-app #will use active context
drg context set-default-app --context
drg context delete
drg context renamecontext and app can be set with environment variables : `DRG_CONTEXT` and `DRG_APP`.
### Trust-anchor management
x.509 certificates can be used to authenticate devices in Drogue Cloud. To do this, the application object needs
to contain a root CA certificate, and the intended user must have its private key. This cert+key pair is used to sign
device cert+key pair.drg create app-cert --application --key-output
Here, `--key-output` is the output file for root CA private key, and it needs to be saved and stored securely.
Once Trust-anchor is set, we can use it to sign device certificates, for example:
drg create device-cert --app --ca-key --cert_output --key-output
Here, `--ca-key` is the input file for root CA private key file.
`--cert_output` is the output file for device certificate.
`--key-output` is the output file for device private key.When a device certificate is signed, the common name of the certificate will be added for the device. so the certificate can be used for authentication.
If you know from the get go that you will use a certificate for a deviice you can create it with the `--cert flag:
```
drg create device foo --cert
```
This will create an alias : "CN=, O=Drogue IoT, OU=" for the device.### Consume events from drogue-cloud
You can see the stream of events for a drogue-cloud application using :
```
drg stream --app
# or if you have a default application set in your context :
drg stream
```### Admin
You can create and manage access tokens with the admin subcommand :
```
drg create token
drg create token --description "some text"
drg get token
drg delete token
```Drg can also transfer apps ownership and manage apps members :
```
drg create member --role reader --application
drg get member
drg edit member#Transfer operations
drg transfer init --application
drg transfer cancel
# The new owner can accept the transfer :
drg transfer accept
```