- transmission: latest → 4.0.6 (torrent + kiwix sidecar) - miniflux: latest → 2.2.16 - kubectl: latest → 1.34.1 (matches k8s server 1.34.0) - tailscale proxy: stable → v1.92.5 - tailscale k8s-operator: stable → v1.92.5 devpi remains on :latest with a TODO comment as it's a custom-built image that needs semantic versioning in the build process. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
63 lines
1.6 KiB
YAML
63 lines
1.6 KiB
YAML
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: transmission
|
|
namespace: torrent
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: transmission
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: transmission
|
|
spec:
|
|
containers:
|
|
- name: transmission
|
|
image: lscr.io/linuxserver/transmission:4.0.6
|
|
env:
|
|
- name: PUID
|
|
value: "1000"
|
|
- name: PGID
|
|
value: "1000"
|
|
- name: TZ
|
|
value: "America/Los_Angeles"
|
|
ports:
|
|
- containerPort: 9091
|
|
name: web
|
|
- containerPort: 51413
|
|
name: peer-tcp
|
|
- containerPort: 51413
|
|
protocol: UDP
|
|
name: peer-udp
|
|
volumeMounts:
|
|
- name: downloads
|
|
mountPath: /downloads
|
|
- name: config
|
|
mountPath: /config
|
|
resources:
|
|
requests:
|
|
memory: "256Mi"
|
|
cpu: "100m"
|
|
limits:
|
|
memory: "512Mi"
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /transmission/web/
|
|
port: 9091
|
|
initialDelaySeconds: 30
|
|
periodSeconds: 30
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /transmission/web/
|
|
port: 9091
|
|
initialDelaySeconds: 10
|
|
periodSeconds: 10
|
|
volumes:
|
|
- name: downloads
|
|
persistentVolumeClaim:
|
|
claimName: torrents-storage
|
|
- name: config
|
|
emptyDir: {} # Config is ephemeral; torrents persist in NFS
|