threefoldtech / 0-hub

Threefold Images Hub
https://hub.grid.tf
Apache License 2.0
1 stars 1 forks source link

Zero-OS Hub

This is the repository for the Zero-OS Hub website. It contains all the source code needed to make the public Zero-OS Hub website.

Releases

Docker Image

You can use GitHub Package directly: docker pull ghcr.io/threefoldtech/0-hub:master

Here are some point you need to run the hub:

Regarding configuration, here are some requirement:

Dockerfile can be found on deployment directory.

The Hub

The Zero OS Hub allows you to do multiple things.

Public centralization of flists

The hub is mainly there to gives an easy way to distribute flist files. Flist are database of metadata you can use in any Zero-OS container/vm.

Uploading your files

In order to publish easily your files, you can upload a .tar.gz and the hub will convert it automatically to a flist and store the contents in the hub backend. After that you can use your flist directly on a container.

Merging multiple flists

In order to reduce the maintenance of your images, products, etc. flist allows you to keep your different products and files separately and then merge them with another flist to make it usable without keeping the system up-to-date.

Example: there is an official ubuntu 16.04 flist image, you can make a flist which contains your application files and then merge your flist with ubuntu, so the resulting flist is your product on the last version of ubunbu. You don't need to take care about the base system yourself, just merge it with the one provided.

Convert a docker hub's image to a flist on-the-fly

You can convert a docker image (eg: busybox, ubuntu, fedora, couchdb, ...) to a flist directly from the backend, this allows you to use your existing docker image in our infrastructure out-of-the-box.

Upload your existing flist to reduce bandwidth

In addition with the hub-client (a side product) you can upload efficiently contents of file to make the backend up-to-date and upload a self-made flist. This allows you to do all the jobs yourself and gives you the full control of the chain. The only restriction is that the contents of the files you host on the flist needs to exists on the backend, otherwise your flist will be rejected.

Authentication via 3bot or itsyou.online

All the operations on the hub needs to be done via a 3bot (default) or itsyou.online (deprecated) authentication. Only downloading a flist can be done anonymously.

Getting information through API

The hub host a basic REST API which can gives you some informations about flists, renaming them, remove them, etc.

To use authenticated endpoints, you need to provide a itsyou.online valid jwt via Authorization: bearer <jwt> header. This jwt can contains special memberof to allows you cross-repository actions.

If your jwt contains memberof, you can choose which user you want to use by specifying cookie active-user. See example below.

Public API endpoints (no authentication needed)

Restricted API endpoints (authentication required)

Example

Simple example how to upload to the hub in command line. Your token can be generated on the website.

curl -H "Authorization: bearer ...token..." -X POST -F file=@my-local-archive.tar.gz \
    https://hub.grid.tf/api/flist/me/upload

Simple example how to use all feature to do some flist promotion. In this case, let assume:

curl -b "active-user=userX;" -H "Authorization: bearer ...token..." \
    "https://hub.grid.tf/api/flist/me/promote/user2/my-app-0.1.0/official-app-0.1.0"

Backend

Creation of flists are made using 0-flist and storage backend is 0-db. You need both of them working before getting a working hub.

Installation

In order to deploy your own hub, you need a working 0-flist binary. You can see in deployment/deploy.sh script how to compile it. Alternatively, you can just download a precompiled version from 0-flist release page.

Copy the src/config.py.sample file to src/config.py, the file itself is well documented, then you can start the server:

cd src
python flist-uploader.py

Dependencies

To run latest hub, you need Flask >2.0. We recommend using Ubuntu 22.04.

apt-get install python3-flask python3-requests python3-jose python3-nacl \
    python3-redis python3-docker python3-pytoml

Repository Owner