.. | ||
.updateignore | ||
.updateignore.license | ||
.updateinclude | ||
.updateinclude.license | ||
01-run.sh | ||
02-run.sh | ||
03-run.sh | ||
00-run.sh | ||
README.md | ||
update |
Over-The-Air (OTA) Updates
How over-the-air updates work on Citadel.
Execution Flow
-
New developments across the any/entire fleet of Citadel's services (bitcoind, lnd, dashboard, middleware, etc) are made, which maintain their own independent version-control and release-schedule. Subsequently, their new docker images are built, tagged and pushed to Docker Hub.
-
The newly built and tagged images are updated in the main repository's (i.e. this repo)
docker-compose.yml
file. -
Any new developments to the main repository (i.e. this repo) are made, eg. adding a new directory or a new config file.
-
To prepare a new release of Citadel, called
vX.Y.Z
, a PR is opened that updates the version inREADME.md
andinfo.json
file to:
{
"version": "X.Y.Z",
"name": "Citadel vX.Y.Z",
"notes": "This release contains a number of bug fixes and new features.",
"requires": ">=A.B.C"
}
-
Once the PR is merged, the main branch is immediately tagged
vX.Y.Z
and released on GitHub. -
Thus the new
info.json
will automatically be available athttps://raw.githubusercontent.com/runcitadel/core/main/info.json
. This is what triggers the OTA update. -
When the user opens his
dashboard
, it periodically pollsmanager
to check for new updates. -
manager
fetches the latestinfo.json
from Citadel's main repo's main branch usingGET https://raw.githubusercontent.com/runcitadel/core/main/info.json
, compares it'sversion
with theversion
of the local$CITADEL_ROOT/info.json
file, and exits if both the versions are same. -
If fetched
version
> localversion
,manager
checks if localversion
satisfies therequires
condition in the fetchedinfo.json
. -
If not,
manager
computes the minimum satisfactory version, calledL.M.N
, required for update. Eg, for"requires": ">=1.2.2"
the minimum satisfactory version would be1.2.2
.manager
then makes aGET
request tohttps://raw.githubusercontent.com/runcitadel/core/vL.M.N/info.json
and repeats step 8 and 9 until localversion
< fetchedversion
AND localversion
fulfills the fetchedrequires
condition. -
manager
then returns the satisfyinginfo.json
todashboard
. -
dashboard
then alerts the user regarding the available update, and after the user consents, it makes aPOST
request tomanager
to start the update process. -
manager
adds theupdateTo
key to$CITADEL_ROOT/statuses/update-status.json
(a file used to continuosly update the user with the update status and progress) with the update release tag.
{
...
"updateTo": "vX.Y.Z"
...
}
-
manager
then creates an update signal file on the mounted host OS volume ($CITADEL_ROOT/events/signals/update
) and returnsOK
to thedashboard
. -
karen
is triggered (obviously) as soon as$CITADEL_ROOT/events/signals/update
is touched/updated, and immediately runs theupdate
trigger script$CITADEL_ROOT/events/triggers/update
as root. -
$CITADEL_ROOT/events/triggers/update
clones releasevX.Y.Z
from github in$CITADEL_ROOT/.citadel-vX.Y.Z
. -
$CITADEL_ROOT/events/triggers/update
then executes all of the following update scripts from the new release$CITADEL_ROOT/.citadel-vX.Y.Z
one-by-one:
$CITADEL_ROOT/.citadel-vX.Y.Z/scripts/update/00-run.sh
: Pre-update preparation script (does things like making a backup)$CITADEL_ROOT/.citadel-vX.Y.Z/scripts/update/01-run.sh
: Install update script (installs the update)$CITADEL_ROOT/.citadel-vX.Y.Z/scripts/update/02-run.sh
: Post-update script (used to run unit-tests to make sure the update was successfully installed)$CITADEL_ROOT/.citadel-vX.Y.Z/scripts/update/03-run.sh
: Success script (runs after the updated has been successfully downloaded and installed)
All of the above scripts continuously update $CITADEL_ROOT/statuses/update-status.json
with the progress of update, which the dashboard periodically fetches every 2s via manager
to keep the user updated.
Further improvements
- OTA updates should not trust GitHub, they should verify signed checksums before installing
- Catch any error during the update and restore from the backup
- Restore from backup on power-failure