CLI client tool for deploying workloads to Racetrack
Project description
Racetrack client context
racetrack-client
is a CLI client tool for deploying workloads to Racetrack (IKP-RT).
Racetrack system allows to deploy jobs in a one step. It transforms your code to in-operation workloads, e.g. Kubernetes workloads. You write some code according to a set of coventions, you include the manifest file which explains the code, and you submit it to Racetrack. A short while after, the service calling your code is in operation.
Quickstart
- Install
racetrack
client:pip3 install racetrack-client
- Configure access token to your git repository:
racetrack config credentials set REPO_URL USERNAME TOKEN
- Deploy your job to Racetrack:
racetrack deploy . https://racetrack.example.com/ikp-rt/lifecycle
- You will see the URL of your deployed job in the output.
Installation
Install racetrack-client using pip:
pip3 install racetrack-client
Python 3.8+ is required. So if you have any troubles, try with:
sudo apt install python3.8 python3.8-dev python3.8-venv
python3.8 -m pip install racetrack-client
This will install racetrack
CLI tool. Verify installation by running racetrack
.
Usage
Run racetrack --help
to see usage.
Deploying
To deploy a job, just run in the place where fatman.yaml
is located:
racetrack deploy . https://racetrack.example.com/ikp-rt/lifecycle
racetrack deploy [WORKDIR] [RACETRACK_URL]
has 2 optional arguments:
WORKDIR
- a place where thefatman.yaml
is, by default it's current directoryRACETRACK_URL
- URL address to Racetrack server, where a job should be deployed. If not given, it will be deployed to a URL configured in a local client config, by default it's set to a local cluster athttp://127.0.0.1:7002
.
Showing logs
To see recent logs from your Fatman output, run racetrack logs
command:
racetrack logs . https://racetrack.example.com/ikp-rt/lifecycle
racetrack logs [WORKDIR] [RACETRACK_URL]
has 2 arguments:
WORKDIR
- a place where thefatman.yaml
is, by default it's current directoryRACETRACK_URL
- URL address to Racetrack server, where the Fatman is deployed.
Local client configuration
If you want to update client configuration (namely persist some preferences for later use), use the following command:
racetrack config set [CONFIG_NAME] [VALUE]
Local client configuration is stored at ~/.racetrack/config.yaml
.
Configuring default Racetrack URL
You can set default Racetrack URL address:
racetrack config racetrack_url https://racetrack.example.com/ikp-rt/lifecycle
Then you can run just racetrack deploy
command (without RACETRACK_URL
argument), racetrack_url will be inferred from client configuration.
Private Job repositories
Before building & deploying a Job stored in a private git repository, you should make sure that Racetrack has access to it. Add git credentials to access your repository using command:
racetrack config credentials set REPO_URL USERNAME TOKEN
REPO_URL
can be a full URL of a git remote (eg. https://gitlab.com/git/namespace/ikp-rt) or a general domain name (eg. https://gitlab.com) if you want to use same token for all repositories from there.USERNAME
is your git account usernameTOKEN
is a password to read from your repository. Use access tokens withread_repository
scope instead of your real password! Here's how to create personal access token in Gitlab
Racetrack URL aliases
You can set up aliases for Racetrack server URL addresses by issuing command:
racetrack config alias set ALIAS RACETRACK_URL
If you operate with many environments, setting short names may come in handy. For instance:
racetrack config alias set dev https://dev.racetrack.example.com/ikp-rt/lifecycle
racetrack config alias set test https://test.racetrack.example.com/ikp-rt/lifecycle
racetrack config alias set prod https://prod.racetrack.example.com/ikp-rt/lifecycle
racetrack config alias set kind http://127.0.0.1:7002
racetrack config alias set compose http://127.0.0.1:7102
and then you can use your short names instead of full RACETRACK_URL
address when calling racetrack deploy . dev
.
Development setup
Clone IKP-RT repository and run it inside this directory:
make setup
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file racetrack-client-0.0.5.tar.gz
.
File metadata
- Download URL: racetrack-client-0.0.5.tar.gz
- Upload date:
- Size: 27.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ddd6ad44794f147ff1c6951c8a10fe5f647a30f0fe07efa63de8bd908f314bf |
|
MD5 | 58a4bad61ac54241bcc8f43d31197835 |
|
BLAKE2b-256 | 5aa41a607c7c35e07bdccf64c5af80807cad1e4d6cf1067f4dee2f35891d82d1 |
File details
Details for the file racetrack_client-0.0.5-py3-none-any.whl
.
File metadata
- Download URL: racetrack_client-0.0.5-py3-none-any.whl
- Upload date:
- Size: 32.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cd7d98cf2c5f00ac1a8415629381d28678b9bb2d393046390e8e964930a9a626 |
|
MD5 | ceaba66a6d30a7be689101197acd7189 |
|
BLAKE2b-256 | 593966abb544e4344ab4525ff9dd2ea79fcdf28e7f6d830fdcde5cb71393d889 |