Kurtosis gateway
Start and manage the Kurtosis gateway for Kubernetes. The gateway forwards local ports to the Kurtosis engine and services running in a k8s cluster. Required when using Kurtosis with Kubernetes. Use when kurtosis engine status shows nothing on k8s or services aren't reachable.
install
source · Clone the upstream repo
git clone https://github.com/kurtosis-tech/kurtosis
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/kurtosis-tech/kurtosis "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/gateway" ~/.claude/skills/kurtosis-tech-kurtosis-gateway && rm -rf "$T"
manifest:
skills/gateway/SKILL.mdsource content
Gateway
The Kurtosis gateway creates local port forwards to the engine and services running in a Kubernetes cluster.
When you need it
The gateway is required when running Kurtosis on Kubernetes. Without it, the local CLI cannot reach the engine pod in the cluster.
Not needed when using Docker backend.
Start the gateway
# Run in the background kurtosis gateway & # Or in a separate terminal kurtosis gateway
Verify it's working
kurtosis engine status
If this returns engine info, the gateway is working. If it says "No Kurtosis engine is running" but you know the engine pod is up, the gateway isn't running.
Stop the gateway
pkill -f "kurtosis gateway"
How it works
The gateway:
- Finds the engine pod in the
namespacekurtosis-engine-* - Creates a local port forward to the engine's gRPC port
- When services are accessed, creates additional port forwards to service pods
- Port mappings shown in
point to localhost via the gatewaykurtosis enclave inspect
Common issues
| Symptom | Fix |
|---|---|
but engine pod is up | Start the gateway: |
| Gateway crashes or disconnects | Restart: |
| Port conflicts | Kill old gateway first: |
| Services unreachable after gateway restart | Re-inspect enclave for new port mappings |