Initial Kozel's homelab infrastructure commit.

This commit is contained in:
2026-05-13 13:30:33 +02:00
commit 1a4c5ece17
42 changed files with 1443 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: myspeed
namespace: monitoring
spec:
replicas: 1
selector:
matchLabels:
app: myspeed
template:
metadata:
labels:
app: myspeed
spec:
containers:
- name: myspeed
image: germannewsmaker/myspeed:latest
ports:
- containerPort: 5216
---
apiVersion: v1
kind: Service
metadata:
name: myspeed
namespace: monitoring
spec:
selector:
app: myspeed
ports:
- port: 5216
targetPort: 5216