-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample.yaml
52 lines (52 loc) · 1.03 KB
/
example.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
kind: DaemonSet
apiVersion: apps/v1
metadata:
name: adjacency
labels:
app.kubernetes.io/name: adjacency
spec:
selector:
matchLabels:
app.kubernetes.io/name: adjacency
template:
metadata:
labels:
app.kubernetes.io/name: adjacency
spec:
containers:
- name: adjacency
image: kiloio/adjacency
args:
- --listen-address=:8080
- --srv=_http._tcp.adjacency
ports:
- name: http
containerPort: 8080
livenessProbe:
httpGet:
path: /ping
port: http
failureThreshold: 2
periodSeconds: 5
startupProbe:
httpGet:
path: /ping
port: http
failureThreshold: 2
periodSeconds: 5
---
kind: Service
apiVersion: v1
metadata:
name: adjacency
labels:
app.kubernetes.io/name: adjacency
spec:
ports:
- name: http
port: 8080
targetPort: http
protocol: TCP
selector:
app.kubernetes.io/name: adjacency
clusterIP: None