PyPi: | Versions |
---|---|
License: | Apache-2.0 |
A simple alternative to Github's Recommended autoscaling solutions.
π Tip: | See Wiki for full documentation. |
---|
The github-hetzner-runners service program starts and monitors queued-up jobs for GitHub Actions workflows. When a new job is queued up, it creates a new Hetzner Cloud server instance that provides an ephemeral GitHub Actions runner. Each server instance is automatically powered off when the job completes, and then powered off servers are automatically deleted. Both x64 (x86) and arm64 (arm) runners are supported. See Features and Limitations for more details.
βWarning: | This program is provided on "AS IS" basis without warranties or conditions of any kind. See LICENSE. Use it at your own risk. Manual monitoring is required to make sure server instances are cleaned up properly and costs are kept under control. |
---|
Costs depend on the server type, number of jobs, and execution time. For each job, a new server instance is created to avoid any cleanup. Server instances are not shared between jobs.
β Note: | Currently, Hetzner Cloud server instances are billed on an hourly basis. So a job that takes 1 minute will be billed the same way as for a job that takes 59 minutes. Therefore, the minimal cost for any job, the cost of the server for 1 hour plus the cost of one public IPv4 address. |
---|
- simpler alternative to what GitHub lists in Recommended Autoscaling Solutions
- cost-efficient on-demand runners using Hetzner Cloud
- supports server recycling to minimize costs
- simple configuration, no Webhooks, no need for AWS lambdas, and no need to setup any GitHub application
- supports specifying custom runner server types, images, and locations using job labels
- self-contained program that you can use to deploy, redeploy, and manage the service on a cloud instance
- supports x64 (x86) and ARM64 (arm) runners
- supports using any Hetzner Cloud server types
- supports runners with pre-installed Docker
- supports using any standard Hetzner Cloud images and applications
- supports auto-replenishable fixed standby runner pools for jobs to be picked up immediately
- supports limiting the maximum number of runners created for each workflow run
- supports efficient GitHub API usage using HTTP caching and conditional requests
- supports meta labels to keep your job label list short
- supports estimating the cost of a job, a run, or a set of runs
- Home
- Installation
- Quick Start
- Getting Started Tutorial
- Basic Configuration
- Specifying the Maximum Number of Runners
- Specifying the Maximum Number of Runners Used in Workflow a Run
- Recycling PoweredβOff Servers
- Skipping Jobs
- Using Custom Label Prefix
- Jobs That Require the Docker Engine
- Specifying The Runner Type
- Specifying The Runner Location
- Specifying The Runner Image
- Specifying The Custom Runner Server Setup Script
- Specifying The Custom Runner Server Startup Script
- Disabling Setup or Startup Scripts
- Specifying Standby Runners
- Specifying Logger Configuration
- Listing All Current Servers
- Opening The SSH Client To The Server
- Deleting All Runners and Their Servers
- Using a Configuration File
- Specifying SSH Key
- Specifying Additional SSH Keys
- Running as a Service
- Running as a Cloud Service
- Scaling Up Runners
- Scaling Down Runners
- Handling Failing Conditions
- Meta Labels
- Estimating Costs
- Listing Images
- Deleting Images
- Creating Custom Images
- Program Options
- Group runners are not supported
- β However, you can run individual services for each repository using different Hetzner Cloud projects.
- A unique Hetzner Cloud project must be used for each repository
- β However, unique projects allow you to easily keep track of runner costs per repository.
- Python >= 3.7
- Hetzner Cloud account
- GitHub API classic token with privileges to manage self-hosted runners
βWarning: | You must use a classic token. Fine-grained tokens are not supported. |
---|
pip3 install testflows.github.hetzner.runners
Check that the github-hetzner-runners utility was installed correctly by executing the github-hetzner-runners -v command.
github-hetzner-runners -v
The github-hetzner-runners utility is installed in the ~/.local/bin/ folder. Please make sure that this folder is part of the PATH.
which github-hetzner-runners
~/.local/bin/github-hetzner-runners
If your PATH is missing this folder on Ubuntu, modify your ~/.profile and add the following section:
~/.profile: | # set PATH so it includes the user's private bin if it exists
if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH"
fi |
---|
For development, you can install from sources as follows:
git clone https://github.com/testflows/testflows-github-hetzner-runners.git
./package && ./install
Set environment variables corresponding to your GitHub repository and Hetzner Cloud project.
export GITHUB_TOKEN=ghp_...
export GITHUB_REPOSITORY=testflows/testflows-github-hetzner-runners
export HETZNER_TOKEN=GJzdc...
Then, start the github-hetzner-runners program:
github-hetzner-runners
07/22/2023 08:20:37 PM INFO MainThread main π Logging in to Hetzner Cloud 07/22/2023 08:20:37 PM INFO MainThread main π Logging in to GitHub 07/22/2023 08:20:37 PM INFO MainThread main π Getting repository testflows/testflows-github-hetzner-runners 07/22/2023 08:20:37 PM INFO MainThread main π Creating scale-up services 07/22/2023 08:20:37 PM INFO MainThread main π Creating scale-down services 07/22/2023 08:20:38 PM INFO worker_2 create_server π Create server ...
Alternatively, you can pass the required options using the command line as follows:
github-hetzner-runners --github-token <GITHUB_TOKEN> --github-repository <GITHUB_REPOSITORY> --hetzner-token <HETZNER_TOKEN>
β Launch your first self-hosted runner in: | 5 minutes |
---|
This tutorial will guide you on how to use the github-hetzner-runners program to provide autoscaling GitHub Actions runners for a GitHub repository and a Hetzner Cloud project that you'll create.
βΆ Before we get started, you will need to install testflows.github.hetzner.runners Python package. See the Installation section for more details.
pip3 install testflows.github.hetzner.runners
β· Check that the github-hetzner-runners utility was installed correctly by executing the github-hetzner-runners -v command.
github-hetzner-runners -v
1.3.230731.1173142
β Note: | The github-hetzner-runners utility is installed in to the ~/.local/bin/ folder. Please make sure that this folder is part of the PATH. which github-hetzner-runners ~/.local/bin/github-hetzner-runners If your PATH is missing this folder, on Ubuntu, you can modify your ~/.profile and add the following section:
|
---|
In order to launch the github-hetzner-runners program, we'll need to specify the GitHub repository as well as GitHub and Hetzner Cloud tokens. So, let's create these.
Before using the github-hetzner-runners, you need a GitHub repository with a GitHub Actions workflow set up.
βΆ First, create a GitHub repository named demo-testflows-github-hetzner-runners and note the repository name.
The repository name will have the following format:
<username>/demo-testflows-github-hetzner-runners
For me, my GitHub repository is:
vzakaznikov/demo-testflows-github-hetzner-runners
β· Now, create an example GitHub Actions workflow as described in the Quickstart for GitHub Actions article. Note that we need to modify the example YAML configuration and specify that our job will run on a runner with the self-hosted and the type-cpx21 labels.
Explore-GitHub-Actions:
runs-on: [self-hosted, type-cpx21]
So, the complete demo.yml that uses a self-hosted runner is as follows:
demo.yml: | name: GitHub Actions Demo
run-name: ${{ github.actor }} is testing out GitHub Actions π
on: [push]
jobs:
Explore-GitHub-Actions:
runs-on: [self-hosted, type-cpx21]
steps:
- run: echo "π The job was automatically triggered by a ${{ github.event_name }} event."
- run: echo "π§ This job is now running on a ${{ runner.os }} server hosted by GitHub!"
- run: echo "π The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- name: Check out repository code
uses: actions/checkout@v3
- run: echo "π‘ The ${{ github.repository }} repository has been cloned to the runner."
- run: echo "π₯οΈ The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ github.workspace }}
- run: echo "π This job's status is ${{ job.status }}." |
---|
βΈ Finally, you will need to create a GitHub API token with the workflow privileges. Make sure to save the token!
βWarning: | You must use a classic token. Fine-grained tokens are not supported. |
---|
For me, my demo GitHub token is:
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
You should now have your GitHub repository ready.
See these steps in action:
Next, you will need to create a Hetzner Cloud project and an API token that we can use to create and manage Hetzner Cloud server instances.
βΆ Create a new Hetzner Cloud project Demo GitHub Runners.
β· Now, create an API token and save it.
For me, the Hetzner Cloud token for my Demo GitHub Runners project is:
5Up04IHuY8mC7l0JxKwh3Aps4ghGIyL0NJ9rGlhyAmmkddzuRreR1YstTSTFCG0N
You should now have your Hetzner Cloud project ready.
See these steps in action:
With the GitHub repository and GitHub and Hetzner Cloud tokens in hand, we can deploy the github-hetzner-runners service to the Hetzner Cloud instance. This way, the service is not running on your local machine.
During the deployment, we'll create a github-hetzner-runners instance in your Hetzner Cloud project on which the service will be running. See the Running as a Cloud Service section for details.
βΆ To deploy the service run the github-hetzner-runners cloud deploy command and specify your GitHub repository, GitHub, and Hetzner Cloud tokens using GITHUB_REPOSITORY, GITHUB_TOKEN, and HETZNER_TOKEN environment variables.
export GITHUB_REPOSITORY=
export HETZNER_TOKEN=
export GITHUB_TOKEN=
github-hetzner-runners cloud deploy
You should now have the cloud service up and running.
See these steps in action:
βΆ The github-hetzner-runners cloud service is now running. So, now you can just sit back and wait until github-hetzner-runners spins up a new runner to complete any queued-up GitHub Actions jobs in your GitHub repository.
See this step in action:
As you can see, our job was executed and completed using our own self-hosted runner!
β Note: | If you run into any issues, you can check the cloud service log using the github-hetzner-runners cloud log -f command. For other cloud service commands, see the Running as a Cloud Service section. github-hetzner-runners cloud log -f |
---|
π See Wiki for full documentation.
Developed and maintained by the TestFlows team.