blob: f7c0476f9b73bb02b09d7e34ead4b09ba876bded (
plain) (
blame)
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
53
|
apiVersion: apps/v1
kind: Deployment
metadata:
name: ipfs
labels:
app: ipfs
spec:
replicas: 1
selector:
matchLabels:
app: ipfs
template:
metadata:
labels:
app: ipfs
spec:
containers:
- name: ipfs
image: ipfs/go-ipfs:v0.11.0
ports:
- containerPort: 4001
- containerPort: 5001
- containerPort: 8080
---
apiVersion: v1
kind: Service
metadata:
name: pihole-service
spec:
selector:
app: pihole
type: NodePort
ports:
- protocol: TCP
port: 4001
targetPort: 4001
nodePort: 30401
name: "ipfs-tcp-4001"
- protocol: UDP
port: 4001
targetPort: 4001
nodePort: 30401
name: "ipfs-udp-4001"
- protocol: TCP
port: 5001
targetPort: 5001
nodePort: 30402
name: "pihole-tcp-80"
- protocol: TCP
port: 8080
targetPort: 8080
nodePort: 30403
name: "pihole-tcp-443"
|