...
1---
2apiVersion: apps/v1
3kind: Deployment
4metadata:
5 name: statsd-sink
6spec:
7 replicas: 1
8 selector:
9 matchLabels:
10 service: statsd-sink
11 strategy: {}
12 template:
13 metadata:
14 labels:
15 service: statsd-sink
16 spec:
17 containers:
18 - name: statsd-sink
19 image: hopsoft/graphite-statsd:latest
20 resources: {}
21 restartPolicy: Always
22---
23apiVersion: v1
24kind: Service
25metadata:
26 labels:
27 service: statsd-sink
28 name: statsd-sink
29spec:
30 ports:
31 - protocol: UDP
32 port: 8125
33 name: statsd-metrics
34 - protocol: TCP
35 port: 80
36 name: graphite-www
37 selector:
38 service: statsd-sink
View as plain text