...
1---
2apiVersion: apps/v1
3kind: Deployment
4metadata:
5 name: slow-cooker
6spec:
7 replicas: 1
8 selector:
9 matchLabels:
10 app: slow-cooker
11 template:
12 metadata:
13 labels:
14 app: slow-cooker
15 spec:
16 containers:
17 - name: slow-cooker
18 image: buoyantio/slow_cooker:1.3.0
19 command:
20 - "/bin/sh"
21 args:
22 - "-c"
23 - |
24 sleep 15 # wait for pods to start
25 /slow_cooker/slow_cooker -metric-addr 0.0.0.0:9999 http://___TERMINUS_POD_IP___:8080
26 ports:
27 - containerPort: 9999
View as plain text