2026-09-21
You can now configure how the tunnel agent connects to your local services. The agent also spends less CPU on every request it forwards.
Added
-
Optional top-level
local_servicesection that configures how the tunnel agent connects to your services:max_idle_conns: Maximum number of idle connections across all target addresses. Default:200.max_idle_conns_per_host: Maximum number of idle connections per target address. Services with the sametargetvalue in theservicessection share the same pool. Default:100.idle_conn_timeout: How long an idle connection stays in the pool. Default:90s.dial_timeout: Timeout for opening a connection to a service. Default:10s.
0. Negative values are invalid, and the agent doesn’t start with them. The pool parameters apply to the services that the tunnel serves over HTTP/1.1. Services served over HTTP/2, such as gRPC, multiplex requests over a single connection and don’t use the pool. Thedial_timeoutparameter applies to services of every type, includingtype: tcp.
Changed
- The agent keeps up to 100 idle connections per target address instead of 10, and 200 across all addresses instead of 100. Under concurrent load, it reuses these connections instead of opening a new one for every request. These limits apply to connections kept for reuse: the number of connections that the agent opens during peak moments depends on the number of concurrent requests and isn’t limited by these parameters.
- The agent uses less CPU per forwarded request.
- Debug logs no longer contain request paths and target URLs, and error messages no longer contain the URL of a local service.
Artifacts
- Binaries: Linux (x86_64, aarch64), macOS (arm64, x86_64) and Windows (arm64, x86_64) with a checksums-sha256.txt, covering every archive:
-
Container image:
cr.eu-north1.nebius.cloud/marketplace/docker/nebius-tunnel-agent:1.2.0(linux/amd64, linux/arm64). -
Helm chart:
oci://cr.eu-north1.nebius.cloud/marketplace/chart/nebius-tunnel-agent:1.2.0.
2026-09-09
TCP services can now use Application-Layer Protocol Negotiation (ALPN) on the public TLS endpoint. This lets PostgreSQL clients of version 17 or later connect through a tunnel with
sslnegotiation=direct.Added
-
Optional
alpnparameter for services withtype: tcp. The agent sends a list of protocols to the Nebius edge endpoint during registration, and the endpoint negotiates a protocol with the client: -
Validation of the
alpnparameter at the tunnel agent startup. The parameter can include up to 8 unique IDs, each 1 to 255 printable ASCII characters long and without spaces. Leading and trailing spaces are trimmed. HTTP services don’t usealpn. To serve an HTTP service over HTTP/2, setprotocol: h2instead.
alpn parameter behaves as before.The endpoint selects a protocol that the client offers, the service declares and the endpoint allows. The list of allowed protocols includes postgresql. If the client doesn’t offer any matching protocol, the endpoint completes a TLS handshake without ALPN. Clients that require it, such as PostgreSQL clients with sslnegotiation=direct, can’t connect.Artifacts
- Binaries: Linux (x86_64, aarch64), macOS (arm64, x86_64) and Windows (arm64, x86_64) with a checksums-sha256.txt, covering every archive:
-
Container image:
cr.eu-north1.nebius.cloud/marketplace/docker/nebius-tunnel-agent:1.1.0(linux/amd64, linux/arm64). -
Helm chart:
oci://cr.eu-north1.nebius.cloud/marketplace/chart/nebius-tunnel-agent:1.1.0.
2026-06-19
First public release of the Nebius Tunnels agent, a client-side tunnel that connects to Edge and proxies inbound traffic to local services.
Added
- Tunnel agent that connects to Edge and proxies traffic to a local service.
- Release binaries for Linux (x86_64, aarch64), macOS (arm64, x86_64) and Windows (arm64, x86_64).
- Multi-arch container image (linux/amd64, linux/arm64).
- Helm chart for running the agent in Kubernetes.
Artifacts
-
Binaries: also mirrored under
.../latest/, with achecksums-sha256.txt, covering every archive: -
Container image:
cr.eu-north1.nebius.cloud/marketplace/docker/nebius-tunnel-agent:1.0.0, also tagged:latest. -
Helm chart:
oci://cr.eu-north1.nebius.cloud/marketplace/chart/nebius-tunnel-agent:1.0.0, also tagged:latest(pull or install without--versionto get the latest).