Hetzner Cloud Single node installation
Overview
This guide describes how to install the LowOps platform on a single Hetzner Cloud server using their CLI tool. This setup is suitable for testing and development environments. For production use, we recommend using a multi-node setup with proper high availability.
Prerequisites
- Hetzner Cloud account with API access
- Hetzner Cloud CLI (
hcloud
) installed - Available domain name with DNS management access
- Minimum system requirements:
- RAM: 16 GB
- CPU: 8 vCPUs
- Disk: 500 GB
- Ubuntu 22.04 LTS
Installation steps
1. Install and Configure Hetzner Cloud CLI
-
Install the Hetzner Cloud CLI:
# For macOS using Homebrew brew install hcloud # For Linux curl -fsSL https://raw.githubusercontent.com/hetznercloud/cli/master/install.sh | bash
-
Configure the CLI with your API token:
hcloud context create lowops # When prompted, enter your API token from the Hetzner Cloud Console
2. Create Hetzner Cloud Server
-
Create an SSH key for server access:
ssh-keygen -t ed25519 -f ~/.ssh/hetzner_lowops hcloud ssh-key create --name lowops-key --public-key-from-file ~/.ssh/hetzner_lowops.pub
-
Create public ipv4 IP address
hcloud primary-ip create --datacenter=hel1-dc2 --name=lowops-ip --type=ipv4
-
Create the server with required specifications:
hcloud server create \ --name lowops-server \ --type cxp41 \ --image ubuntu-22.04 \ --ssh-key lowops-key \ --datacenter hel1-dc2 \ --primary-ipv4 lowops-ip
-
Get the server's public IP:
hcloud server list
3. Configure DNS record
- Configure wildcard
A
record pointing to server public IP address within DNS provider of your choice. - Example: If your domain is
paas.company.com
, create anA
record for*.paas.company.com
pointing to your server's public IP - Wait for DNS propagation (can take up to 48 hours, but usually much faster)
4. Install LowOps Platform
-
SSH into your Hetzner server:
ssh -i ~/.ssh/hetzner_lowops root@your-server-public-ip
-
Run command to start platform installation:
curl -sO https://raw.githubusercontent.com/cinaq/helm-charts/refs/heads/main/charts/lowops-platform/scripts/install-platform.sh && chmod +x install-platform.sh && ./install-platform.sh
-
During installation process you will be prompted to input:
base domain name
(For instance if your portal should be available atportal.paas.company.com
. Base domain ispaas.company.com
)-
Docker registry credentials. Current dockerhub pull image limits requires at list pro plan PAT for successfull installation.
-
Wait until
lowops-platform
pod inlowops-devops
namespace status isCompleted
. Usually takes 20-30 minutes. -
After installation completes, you can access the platform portal using the credentials from the script output.
5. Post-Installation
- Access the platform portal at
https://portal.paas.company.com
- Start using platform Platform Administration
6. Cleanup (Optional)
If you need to remove the server and associated resources:
hcloud server delete lowops-server
hcloud primary-ip delete lowops-ip
hcloud ssh-key delete lowops-key