ipv6 cluster initial commit
All checks were successful
Validate Kubernetes Manifests / kubeconform (push) Successful in 1m3s

This commit is contained in:
2026-01-04 07:08:20 +05:30
parent 12d4af9cd8
commit 9aabad8216
179 changed files with 16997 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: speedtest
namespace: monitoring
spec:
strategy:
type: Recreate
replicas: 1
selector:
matchLabels:
app: speedtest
template:
metadata:
labels:
app: speedtest
spec:
containers:
- name: speedtest
image: lscr.io/linuxserver/speedtest-tracker:1.13.4
ports:
- containerPort: 80
env:
- name: PUID
value: "1000"
- name: PGID
value: "1000"
- name: TZ
value: "Asia/Kolkata"
- name: DB_CONNECTION
value: "sqlite"
- name: APP_KEY
valueFrom:
secretKeyRef:
name: speedtest-secret
key: app_key
- name: SPEEDTEST_SCHEDULE
value: "@hourly"
- name: PRUNE_RESULTS_OLDER_THAN
value: "7"
- name: DISPLAY_TIMEZONE
value: "Asia/Kolkata"
- name: APP_TIMEZONE
value: "Asia/Kolkata"
volumeMounts:
- name: config
mountPath: /config
volumes:
- name: config
persistentVolumeClaim:
claimName: speedtest-longhorn