Kubos Applications Service

The Kubos applications service is responsible for monitoring and managing all mission applications for a system.

Whenever a new application is registered with the service, its path and manifest file are copied into the service’s application registry. By default, this registry is stored under /home/system/kubos/apps.

Each application will be automatically assigned a UUID to be used for identification purposes internally. Using UUIDs, rather than the application’s name, allows users the freedom to adjust the application name as they see fit, for instance if the overall purpose of the application changes and they would like to update the name to reflect that in later versions.

Application Registry

Communicating with the Service

The applications service uses the same UDP+GraphQL communication scheme as the other services.

Users will send GraphQL queries and mutations to the service’s UDP port. The port number can be found in the systems configuration file in /home/system/etc/config.toml

Querying

A current list of all available versions of all registered applications can be generated by using the apps query.

For example:

{
    apps {
        active,
        app {
            uuid,
            name,
            version
        }
}

Using our example registry, the data returned by the service would be:

{
    "apps": [
        {
            "active": false,
            "app": {
                "uuid": "46d01f19-ab45-4c6f-896e-88f90266f12e",
                "name": "main-mission",
                "version": "1.0"
            }
        },
        {
            "active": false,
            "app": {
                "uuid": "46d01f19-ab45-4c6f-896e-88f90266f12e",
                "name": "main-mission",
                "version": "1.1"
            }
        },
        {
            "active": true,
            "app": {
                "uuid": "46d01f19-ab45-4c6f-896e-88f90266f12e",
                "name": "main-mission",
                "version": "2.0"
            }
        },
        {
            "active": true,
            "app": {
                "uuid": "60ff7516-a5c4-4fea-bdea-1b163ee9bd7a",
                "name": "payload-app",
                "version": "1.0"
            }
        },
    ]
}

To list all available versions of a specific application, specify the desired UUID as an input parameter.

For example:

{
    apps(uuid: "60ff7516-a5c4-4fea-bdea-1b163ee9bd7a") {
        app {
            name,
            version
        }
    }
}

Registering

Once an application has been written and compiled, the application and its accompanying manifest.toml file should be transferred to a new directory on the OBC. This file transfer can be done using the file transfer service.

The application and manifest must be the only files in the directory.

It can then be registered with the applications service using the register mutation by specifying the directory containing the application files.

The service will copy the application from the specified path into the apps registry. Once registered, users may delete the original application.

For example:

mutation {
    register(path: "/home/kubos/payload-app") {
        active,
        app {
            name,
            version
        }
    }
}

If the active response field is True, then the registration completed successfully. If the registration fails for some reason, then the service will return an error response.

De-Registering

A particular version of an application can be removed using the uninstall mutation.

The mutation returns a single boolean value to indicate success or failure.

For example:

mutation {
    uninstall(uuid: "46d01f19-ab45-4c6f-896e-88f90266f12e", version: "1.1")
}

Starting an Application

To manually start an application, the startApp mutation can be used.

The mutation takes two arguments: the UUID of the application to start and the run level which the app should execute with.

On success, the mutation will return the PID of the running application.

For example:

mutation {
    startApp(uuid: "60ff7516-a5c4-4fea-bdea-1b163ee9bd7a", runLevel: "OnCommand")
}

Under the covers, the service receives the mutation and identifies the current active version of the application specified. It then calls that version’s binary, passing along the run level as a command argument.

Passing Additional Arguments

To pass additional arguments to the underlying application, the args input argument can be used.

For example:

mutation {
    startApp(uuid: "60ff7516-a5c4-4fea-bdea-1b163ee9bd7a", runLevel: "OnCommand", args: "--verbose --release")
}

Under the covers, the application would be called like so:

mission-app -r OnCommand --verbose --release

Automatically Starting on Boot

All applications will be started with the OnBoot run level automatically when the applications service is started during system initialization.

This logic may also be triggered by manually starting the applications service with the -b flag.

Customizing the Applications Service

The configuration for the applications service is saved in /home/system/etc/config.toml. This file can be editted to add or modify the following fields:

  • [app-service.addr]

    • ip - The IP address that the service will use
    • port - The UDP port GraphQL requests should be sent to
  • [app-service]

    • registry-dir - (Default: /home/system/kubos/apps) The directory under which all registry entries should be stored