From 0abd6932a2865263d89139314b64fed72467b1d1 Mon Sep 17 00:00:00 2001 From: terminaldweller Date: Sun, 2 Jan 2022 22:39:01 +0330 Subject: searx and ipfs, plus local dns --- kubernetes/ipfs/ipfs-deployment.yaml | 53 ++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 kubernetes/ipfs/ipfs-deployment.yaml (limited to 'kubernetes/ipfs/ipfs-deployment.yaml') diff --git a/kubernetes/ipfs/ipfs-deployment.yaml b/kubernetes/ipfs/ipfs-deployment.yaml new file mode 100644 index 0000000..f7c0476 --- /dev/null +++ b/kubernetes/ipfs/ipfs-deployment.yaml @@ -0,0 +1,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" -- cgit v1.2.3