SRVANT

Documentation

Installing the Gateway

The SRVANT Gateway is a stateless Go binary. It can be deployed as a standalone binary on Linux, a Docker container, or a Helm chart in Kubernetes.

Linux Installation Script

We provide an interactive bash script that automatically identifies your Linux distribution, downloads the correct binary, and configures it to run automatically on restart via systemd.

Terminal
$curl -sSL https://dl.srvant.com/install.sh | bash

The script will interactively prompt you for your API Token and listener port.

Verifying the Installation

Once the gateway is running, it will automatically connect to the Control Plane and pull down your pipeline configurations. You can verify it is healthy by curling the health endpoint:

$curl http://localhost:10080/health
{"status": "ok"}