Home / Keptn v1 Docs / Release 1.y.z / Reference / Configurations / distributor
You can create your own distributor by writing a dedicated distributor deployment yaml:
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: some-service-monitoring-configure-distributor
namespace: keptn
spec:
selector:
matchLabels:
run: distributor
replicas: 1
template:
metadata:
labels:
run: distributor
spec:
containers:
- name: distributor
image: keptndev/distributor:0.15.0
ports:
- containerPort: 8080
resources:
requests:
memory: "32Mi"
cpu: "50m"
limits:
memory: "128Mi"
cpu: "500m"
env:
- name: PUBSUB_URL
value: 'nats://keptn-nats'
- name: PUBSUB_TOPIC
value: 'sh.keptn.internal.event.some-event'
- name: PUBSUB_RECIPIENT
value: '127.0.0.1`'
~
`