Using Private Registries With the Torizon Platform
Introduction
One of the most famous container registries - Docker Hub - allows people to host a single private container image with the free tier. As you may want to protect your application's intellectual property, you might want to use a private registry yourself: either Docker Hub with a paid tier, an alternative such as AWS or Azure container registries, or even a self-hosted registry.
It is straightforward to manually run a container hosted in a private registry: you'll be prompted for credentials or use the docker login
command. With TorizonCore, due to the unattended deployment of credentials to hundreds or thousands of devices, you must somehow deploy the credentials in a scalable way. It will allow TorizonCore Builder Tool to Pre-provision Docker Containers onto a TorizonCore image, and Torizon Remote Updates to update your application.
In this article, to achieve the goal of deploying private registry credentials to your devices, we'll leverage the flexibility of the TorizonCore Builder Tool and Torizon Remote Updates.
Prerequisites
The following prerequisites are required to follow along with these instructions.
- A host machine with TorizonCore Builder installed.
- A
credentials.zip
file downloaded from your account on the Torizon Platform Services dashboard. - A container image stored in a private registry. (Docker provides a single private registry for free per user)
- A device with TorizonCore that has been provisioned to the Torizon Platform Services dashboard.
To install TorizonCore Builder, read our statements on OS and shell compatibility, then follow the instructions below, in order.
Download the setup script into some writable directory in your system (here we use
~/tcbdir/
):$ mkdir -p ~/tcbdir/ && cd ~/tcbdir/
$ wget https://raw.githubusercontent.com/toradex/tcb-env-setup/master/tcb-env-setup.shnote
If you did this before then you can skip this step unless you want to update the setup script. When you source the script (next step) it will show you a warning message if it determines an update is advisable.
Source the script:
$ cd ~/tcbdir/
$ source tcb-env-setup.shMake sure to do this from every shell instance that you intend to use with TorizonCore Builder. For advanced usage, run
source tcb-env-setup.sh -h
, or see the project README. The latter has information about using the early-access version of the tool for those interested.tip
- Remember to source the setup script every time you start a new terminal (or shell instance).
- The setup script installs a Bash completion script for TorizonCore Builder, making it possible to autocomplete commands and parameters by just pressing the TAB key.
Beware that under Windows, you must pass extra parameters to the script when the use of the following commands is intended:
ostree serve
: consult the ostree serve reference.
Verify that the command
torizoncore-builder
is available:$ torizoncore-builder --help
Evaluation: Enabling a Single Device
info
This only applies to container updates via Torizon Platform Services. If you want to pull/access a private registry outside of the context of Torizon remote updates then just perform a normal docker login
.
For quick tests and development you can set up just a single device for private registry access. On your TorizonCore device enter the following command:
# sudo docker --config /etc/docker login
Once prompted, enter the username and password for your private registry. If successful, this will create a config.json
file in /etc/docker
on the device. This file contains authentication information that is used by Docker if needed. TorizonCore and its updates features are configured so that any container update that is pushed to the device will look for the config.json
file in this location, if needed.
Moving on, once you've entered the above command this specific device should be good to go. From the "Torizon Platform Dashboard" you can schedule a container update for this device.
Fore more information on setting up a container update, take a look at the overview article. If you want to learn more, read the article Torizon Platform Services Web Interface.
Development and Production: Enabling Multiple Devices
Later on in development or during early production you'll most likely be working with multiple devices. It would be very tedious to need to docker login
, and add credentials to each device individually.
We'll resolve this by using the TorizonCore Builder Tool, and Torizon Remote Updates.
Creating a Custom TorizonCore Image With Docker Credentials
caution
Before continuing make sure you have TorizonCore Builder installed on your development machine, as pointed out in this article's Prerequisites section.
First, start with a single TorizonCore device and use docker login
like before:
# sudo docker --config /etc/docker login
We're going to use TorizonCore Builder to capture these credentials and create a customized TorizonCore image. Since the config.json
file is located in /etc
we can easily isolate the changes and create a new image.
How to do this is described in the article Capturing Changes in the Configuration of a Board on TorizonCore.
To summarize the steps you'll need to follow from the article above:
- unpack a base TorizonCore Easy Installer image.
- isolate the
config.json
file in/etc/
. - union the changes to merge them onto the base image.
- deploy the changes to create a new Easy Installer image.
By the end of this process, you'll have a new Toradex Easy Installer that you can then flash to multiple boards. Any board you flash with this image will have the config.json
file with your credentials information in /etc/docker
.
Now you can push a container update to all of your boards and they should be able to access your private registry.
Using Torizon Platform to Update the Credentials
It may be the case your devices are already deployed or you want to update the credentials on those devices. For this case, we will leverage Torizon Platform Services.
First of all, go through all the steps in the previous section as they are all required here. Also, make sure you have your credentials.zip
file from the "Torizon Platform Dashboard" ready.
Once you have your custom TorizonCore image with Docker credentials, you can go ahead and push it to Torizon Platform. Full details on the steps can be found in our article Signing and Pushing TorizonCore Images to Torizon Platform Services.
To summarize the steps:
- Unpack a base TorizonCore Easy Installer image
- Isolate the
config.json
file in/etc/
- Union the changes to merge them onto the base image
- Push the changes to your Torizon Platform account using your
credentials.zip
As you can see the steps are very similar to the previous section. But, instead of a deploy
as the last step, we instead push
the changes to Torizon Platform.
Once done you'll have a custom package on the "Torizon Platform Dashboard" with your credentials baked in. Then, you must do the following:
- Update with your custom TorizonCore Package first. This will add/update the credentials to all your devices.
- Update with your custom container update. This will cause all of your devices to update their containers and access any private registry with your newly updated credentials if needed.