Files
go-otel/k8s/deployment.yaml
T
2025-11-06 16:25:33 +01:00

29 lines
599 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: otel-debug-receiver
spec:
replicas: 1
selector:
matchLabels:
app: otel-debug-receiver
template:
metadata:
labels:
app: otel-debug-receiver
spec:
containers:
- name: otel-debug
image: matst80/otel-debug:latest
ports:
- containerPort: 8080
name: http
- containerPort: 4317
name: grpc
resources:
requests:
memory: "128Mi"
cpu: "100m"
limits:
memory: "256Mi"
cpu: "500m"