Skip to content

Instantly share code, notes, and snippets.

@farhadnowzari
Created February 2, 2026 19:01
Show Gist options
  • Select an option

  • Save farhadnowzari/0629e9c140a796815ab03e511b167757 to your computer and use it in GitHub Desktop.

Select an option

Save farhadnowzari/0629e9c140a796815ab03e511b167757 to your computer and use it in GitHub Desktop.
Conduit k8s deployment
apiVersion: apps/v1
kind: Deployment
metadata:
name: conduit
namespace: conduit
spec:
selector:
matchLabels:
app: conduit
template:
metadata:
labels:
app: conduit
spec:
containers:
- name: conduit
image: ghcr.io/psiphon-inc/conduit/cli:latest
resources:
limits:
cpu: 500m
memory: 256Mi
requests:
cpu: 100m
memory: 128Mi
args:
- "start"
- "--max-clients"
- "50"
- "--bandwidth"
- "50"
- "--data-dir"
- "./data"
- "--metrics-addr"
- "0.0.0.0:9090"
ports:
- containerPort: 9090
---
apiVersion: v1
kind: Service
metadata:
name: conduit
namespace: conduit
spec:
selector:
app: conduit
ports:
- port: 9090
targetPort: 9090
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment