2015-10-04 18:17:22 +00:00
# Resin Supervisor
2015-06-02 12:47:33 +00:00
2015-10-07 18:09:03 +00:00
This is [resin.io ](https://resin.io )'s Supervisor, a program that runs on IoT devices and has the task of running user Apps (which are Docker containers), and updating them as Resin's API informs it to.
2015-10-04 18:17:22 +00:00
The Supervisor is for now a node.js program, with a subset of its functionality implemented in Go.
We are currently **rewriting the whole code in Go** , so if you're interested in contributing, please checkout [the corresponding branch ](../tree/RES-477-gosuper-all-the-way ) and use that as a base for your PR's.
# Running supervisor locally
## Deploy your local version to a Docker registry
We'll show how to use the DockerHub registry, but any other can be specified as part of the `SUPERVISOR_IMAGE` variable.
If you haven't done so yet, login to the registry:
2015-07-16 20:13:39 +00:00
```bash
2015-10-04 18:17:22 +00:00
docker login
2015-07-16 16:58:28 +00:00
```
2015-10-04 18:17:22 +00:00
Use your username and password as required.
Then deploy to a specific repo and tag, e.g.
2015-07-16 20:13:39 +00:00
```bash
2015-10-04 18:17:22 +00:00
make ARCH=amd64 SUPERVISOR_IMAGE=username/resin-supervisor:master deploy
2015-07-16 16:58:28 +00:00
```
2015-10-04 18:17:22 +00:00
This will build the Supervisor docker image if you haven't done it yet, and upload it to the registry.
As we pointed out before, a different registry can be specified with the DEPLOY_REGISTRY env var.
2015-07-16 16:27:24 +00:00
2015-10-04 18:17:22 +00:00
## Set up config.json
2015-09-02 19:19:24 +00:00
Add `tools/dind/config.json` file from a staging device image.
2015-07-16 16:58:28 +00:00
2015-09-02 19:19:24 +00:00
A config.json file can be obtained in several ways, for instance:
2015-07-16 20:13:39 +00:00
* Download an Intel Edison image from staging, open `config.img` with an archive tool like [peazip ](http://sourceforge.net/projects/peazip/files/ )
* Download a Raspberry Pi 2 image, flash it to an SD card, then mount partition 5 (resin-conf).
2015-06-02 12:47:33 +00:00
2015-10-07 20:26:04 +00:00
The config.json file should look something like this:
(Please note we've added comments to the JSON for better explanation - the actual file should be valid json *without* such comments)
2015-09-02 19:19:24 +00:00
```json
{
"applicationId": "2167", /* Id of the app this supervisor will run */
"apiKey": "supersecretapikey", /* The API key for the Resin API */
"userId": "141", /* User ID for the user who owns the app */
"username": "gh_pcarranzav", /* User name for the user who owns the app */
"deviceType": "intel-edison", /* The device type corresponding to the test application */
2015-10-04 18:17:22 +00:00
"files": { /* This field is used by the host OS on devices, so the supervisor doesn't care about it */
2015-09-02 19:19:24 +00:00
"network/settings": "[global]\nOfflineMode=false\n\n[WiFi]\nEnable=true\nTethering=false\n\n[Wired]\nEnable=true\nTethering=false\n\n[Bluetooth]\nEnable=true\nTethering=false",
"network/network.config": "[service_home_ethernet]\nType = ethernet\nNameservers = 8.8.8.8,8.8.4.4"
},
"apiEndpoint": "https://api.resinstaging.io", /* Endpoint for the Resin API */
"registryEndpoint": "registry.resinstaging.io", /* Endpoint for the Resin registry */
"vpnEndpoint": "vpn.resinstaging.io", /* Endpoint for the Resin VPN server */
"pubnubSubscribeKey": "sub-c-aaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa", /* Subscribe key for Pubnub for logs */
"pubnubPublishKey": "pub-c-aaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa", /* Publish key for Pubnub for logs */
"listenPort": 48484, /* Listen port for the supervisor API */
"mixpanelToken": "aaaaaaaaaaaaaaaaaaaaaaaaaa", /* Mixpanel token to report events */
}
2015-07-28 21:10:17 +00:00
```
2015-09-02 19:19:24 +00:00
Additionally, the `uuid` , `registered_at` and `deviceId` fields will be added by the supervisor upon registration with the resin API.
2015-07-28 21:10:17 +00:00
2015-06-02 12:47:33 +00:00
## Start the supervisor instance
2015-07-16 20:13:39 +00:00
```bash
2015-10-04 18:17:22 +00:00
make ARCH=amd64 SUPERVISOR_IMAGE=username/resin-supervisor:master run-supervisor
2015-06-02 12:47:33 +00:00
```
2015-07-16 16:58:28 +00:00
This will setup a docker-in-docker instance with an image that runs the supervisor image.
2015-09-02 19:19:24 +00:00
## Testing with preloaded apps
To test preloaded apps, add a `tools/dind/apps.json` file according to the preloaded apps spec.
It should look something like this:
2015-10-07 20:26:04 +00:00
(As before, please note we've added comments to the JSON for better explanation - the actual file should be valid json *without* such comments)
2015-09-02 19:19:24 +00:00
```json
[{
"appId": "2167", /* Id of the app we are running */
"commit": "commithash", /* Current git commit for the app */
2015-10-07 20:26:04 +00:00
"imageId": "registry.resinstaging.io/path/to/image", /* Id of the docker image for this app */
2015-09-02 19:19:24 +00:00
"env": { /* Environment variables for the app */
"KEY": "value"
}
}]
```
Make sure the config.json file doesn't have uuid, registered_at or deviceId populated from a previous run.
Then run the supervisor like this:
```bash
2015-10-07 20:26:04 +00:00
make ARCH=amd64 PRELOADED_IMAGE=true \
2015-10-04 18:17:22 +00:00
SUPERVISOR_IMAGE=username/resin-supervisor:master run-supervisor
2015-09-02 19:19:24 +00:00
```
2015-10-07 20:26:04 +00:00
This will make the docker-in-docker instance pull the image specified in apps.json before running the supervisor.
2015-09-02 19:19:24 +00:00
2015-07-16 20:13:39 +00:00
## View the containers logs
```bash
2015-10-04 18:17:22 +00:00
docker exec -it resin_supervisor_1 journalctl -f
2015-06-02 12:47:33 +00:00
```
## View the supervisor logs
2015-07-16 20:16:43 +00:00
```bash
2015-10-04 18:17:22 +00:00
docker exec -it resin_supervisor_1 /bin/bash
2015-06-02 12:47:33 +00:00
tail /var/log/supervisor-log/resin_supervisor_stdout.log -f
```
2015-07-16 16:27:24 +00:00
## Stop the supervisor
2015-07-16 20:16:43 +00:00
```bash
make stop-supervisor
```
This will stop the container and remove it, also removing its volumes.
2015-07-17 20:47:26 +00:00
# Working with the Go supervisor
The Dockerfile used to build the Go supervisor is Dockerfile.gosuper, and the code for the Go supervisor lives in the `gosuper` directory.
To build it, run:
```bash
make ARCH=amd64 gosuper
```
This will build and run the docker image that builds the Go supervisor and outputs the executable at `gosuper/bin` .
## Adding Go dependencies
2015-10-04 18:17:22 +00:00
This project uses [Godep ](https://github.com/tools/godep ) to manage its Go dependencies. In order for it to work, this repo needs to be withing the `src` directory in a valid Go workspace. This can easily be achieved by having the repo as a child of a directory named `src` and setting the `GOPATH` environment variable to such directory's parent.
2015-07-17 20:47:26 +00:00
If these conditions are met, a new dependency can be added with:
```bash
go get github.com/path/to/dependency
```
Then we add the corresponding import statement in our code (e.g. main.go):
```go
import "github.com/path/to/dependency"
```
And we save it to Godeps.json with:
```bash
2015-07-31 17:17:57 +00:00
cd gosuper
2015-07-17 20:47:26 +00:00
godep save -r ./...
```
(The -r switch will modify the import statement to use Godep's `_workspace` )
2015-07-28 21:10:17 +00:00
## Testing
# Gosuper
The Go supervisor can be tested by running:
```bash
make ARCH=amd64 test-gosuper
```
The test suite is at [gosuper/main_test.go ](./gosuper/main_test.go ).
2015-10-04 18:17:22 +00:00
2015-07-28 21:10:17 +00:00
# Integration test
The integration test tests the supervisor API by hitting its endpoints. To run it, first run the supervisor as explained in the first section of this document.
Once it's running, you can run the test with:
```bash
make ARCH=amd64 test-integration
```
The tests will fail if the supervisor API is down - bear in mind that the supervisor image takes a while to start the actual supervisor program, so you might have to wait a few minutes between running the supervisor and testing it.
The test expects the supervisor to be already running the application (so that the app is already on the SQLite database), so check the dashboard to see if the app has already downloaded.