Deployment
Deployment options
Ramkin supports multiple deployment models to fit your infrastructure.
Kubernetes (DaemonSet)
Deploy the collector as a DaemonSet to capture traffic from all nodes:
apiVersion: apps/v1
kind: DaemonSet
metadata:
name: ramkin-collector
spec:
template:
spec:
containers:
- name: collector
image: ramkin/collector:latest
Docker (sidecar)
Run the collector alongside your application container:
docker run -d \
--name ramkin-collector \
-v $(pwd)/ramkin.yaml:/etc/ramkin.yaml \
ramkin/collector:latest
Standalone (binary)
Download and run the binary directly on any Linux or macOS host:
sudo ramkin install
ramkin start