Creating Channels
A channel is a decentralized registry storing the manifests of published ips. This section provides steps for ways to configure a channel.
Guides
Configuring a local directory as a channel
This guide outlines how to set up a directory on the local file system as a recognized channel. In this guide, our channel is called local-chipyard
.
- Create a new directory in the Orbit home directory:
mkdir -p "$(orbit env ORBIT_HOME)/channels/local-chipyard"
-
Open the global Orbit configuration file located at
$ORBIT_HOME/config.toml
. -
Make a new entry in the
[[channel]]
array:
[[channel]]
name = "local-chipyard"
description = "Local registry of available ip"
root = "./channels/local-chipyard"
- View your available channel:
orbit publish --list
Configuring a git repository as a channel
This guide outlines one way to create a channel that can be automatically tracked using git. In this guide, our channel is called remote-chipyard
.
-
Create a new repository along with a remote configured for it to allow pushing and pulling.
-
Add an Orbit configuration file at the root of the repository called
config.toml
:
$ touch config.toml
- Add a new entry in the
[[channel]]
array for the configuration file:
[[channel]]
name = "remote-chipyard"
description = "Remote registry of available ip"
- Specify the directory where data for published ip should exist within the repository:
[[channel]]
# ...
root = "./index"
- Set up synchronization hooks for this channel such that users that have this channel configured can seamlessly get updates using
orbit --sync
:
[[channel]]
# ...
sync.command = "git"
sync.args = ["pull"]
- Create a Python script called
publish.py
to handle automatically adding, committing, and pushing published ips:
import subprocess
import os
def restore(path: str, staged: bool):
"""
Restore the modified directory `path` in the channel from the publish command back to their original state.
"""
args = ['--staged'] if staged else []
subprocess.Popen(['git', 'restore'] + args + [path]).wait()
channel_dir = os.environ.get("ORBIT_CHANNEL_DIR")
ip_name = os.environ.get("ORBIT_IP_NAME")
ip_version = os.environ.get("ORBIT_IP_VERSION")
# Add untracked files
child = subprocess.Popen(['git', 'add', channel_dir])
rc = child.wait()
if rc != 0:
restore(channel_dir, staged=False)
exit(rc)
# Commit the changes
child = subprocess.Popen(['git', 'commit', '-m', "Publishes "+ip_name+':'+ip_version])
rc = child.wait()
if rc != 0:
restore(channel_dir, staged=True)
restore(channel_dir, staged=False)
exit(rc)
# Push the changes to the remote
child = subprocess.Popen(['git', 'push'])
rc = child.wait()
if rc != 0:
exit(rc)
- Configure the
publish.py
Python script to run within the publishing process after Orbit copies the published ip metadata into the channel:
[[channel]]
# ...
post.command = "python3"
post.args = ["publish.py"]
-
Add, commit, and push these changes to the git repository.
-
Modify the global Orbit configuration file to include this repository's configuration file:
$ orbit config --push include="$PWD/config.toml"
- View the configured channel:
$ orbit publish --list