Compare commits

...

17 commits

Author SHA1 Message Date
Renovate bot
e7671eb539 Update Helm release external-dns to v8 2025-01-18 00:00:43 +00:00
3b04b9ff48 Update CloudTube which might have my patch in it!
Signed-off-by: Martyn <m@rtyn.berlin>
2025-01-08 10:31:59 +00:00
3ab51432d0 Attempt network traffic
Signed-off-by: Martyn Ranyard <m@rtyn.berlin>
2025-01-05 16:48:25 +00:00
763fdb6eef Add tested
Signed-off-by: Martyn Ranyard <m@rtyn.berlin>
2025-01-04 21:56:50 +00:00
3bc9a36829 tdarr
Signed-off-by: Martyn Ranyard <m@rtyn.berlin>
2024-12-30 23:06:45 +00:00
983d10aa1a from phone
Signed-off-by: Martyn Ranyard <m@rtyn.berlin>
2024-12-29 00:09:55 +00:00
b13da9919f Youtube subscriptions in jellyfin!
Signed-off-by: Martyn Ranyard <m@rtyn.berlin>
2024-12-28 14:57:52 +00:00
fce6484611 Youtube subscriptions in jellyfin!
Signed-off-by: Martyn Ranyard <m@rtyn.berlin>
2024-12-28 14:56:16 +00:00
81ad4aa209 ytdl-sub
Signed-off-by: Martyn Ranyard <m@rtyn.berlin>
2024-12-28 14:54:25 +00:00
b21d4962c3 And storageclass
Signed-off-by: Martyn Ranyard <m@rtyn.berlin>
2024-12-28 12:28:06 +00:00
893e15164a Let's have some storage for youtube channels
Signed-off-by: Martyn Ranyard <m@rtyn.berlin>
2024-12-28 12:17:41 +00:00
977500c287 Get jellyfin on the beelink
Signed-off-by: Martyn Ranyard <m@rtyn.berlin>
2024-12-26 15:34:53 +00:00
f9e98bbeeb quicksync with av1
Signed-off-by: Martyn Ranyard <m@rtyn.berlin>
2024-12-26 15:23:29 +00:00
8c23948677 YAML was a mistake
Signed-off-by: Martyn Ranyard <m@rtyn.berlin>
2024-12-24 13:46:19 +00:00
91ab861fea YAML was a mistake
Signed-off-by: Martyn Ranyard <m@rtyn.berlin>
2024-12-24 13:37:53 +00:00
5af6f9fd0f longer to get live
Signed-off-by: Martyn Ranyard <m@rtyn.berlin>
2024-12-24 13:31:12 +00:00
e298d1e0e9 new exit node for now plus liveness probe in case it goes away during lifetime
Signed-off-by: Martyn Ranyard <m@rtyn.berlin>
2024-12-24 13:22:09 +00:00
15 changed files with 382 additions and 4 deletions

View file

@ -18,7 +18,7 @@ spec:
app: cloudtube
spec:
containers:
- image: abeltramo/cloudtube:efcef9b
- image: abeltramo/cloudtube:be33a66
imagePullPolicy: Always
name: cloudtube
resources: {}

View file

@ -4,7 +4,7 @@ kind: Kustomization
helmCharts:
- name: external-dns
repo: https://charts.bitnami.com/bitnami
version: 6.28.4
version: 8.7.2
releaseName: external-dns
namespace: external-dns
valuesInline:

View file

@ -47,7 +47,7 @@ spec:
requests:
gpu.intel.com/i915: "1"
cpu: 163m
memory: 3861631195
# memory: 3861631195
volumeMounts:
- mountPath: /data2/media
name: runningseries
@ -65,9 +65,12 @@ spec:
name: dev-dri
- mountPath: /mergedseries
name: mergedseries
- mountPath: /youtube
name: youtube
dnsPolicy: ClusterFirst
nodeSelector:
intel.feature.node.kubernetes.io/gpu: "true"
oldname: i9worker
terminationGracePeriodSeconds: 30
volumes:
- persistentVolumeClaim:
@ -95,3 +98,6 @@ spec:
- persistentVolumeClaim:
claimName: smb-mergedseries
name: mergedseries
- persistentVolumeClaim:
claimName: smb-youtube
name: youtube

View file

@ -57,3 +57,15 @@ spec:
requests:
storage: 1Gi
storageClassName: smb-mergedseries
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: smb-youtube
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Ti
storageClassName: smb-youtube

View file

@ -0,0 +1,17 @@
apiVersion: storage.k8s.io/v1
kind: StorageClass
metadata:
name: smb-youtube
provisioner: smb.csi.k8s.io
parameters:
source: "//172.20.0.70/youtube"
csi.storage.k8s.io/node-stage-secret-name: smb-creds
csi.storage.k8s.io/node-stage-secret-namespace: kube-system
reclaimPolicy: Retain
volumeBindingMode: Immediate
mountOptions:
- dir_mode=0777
- file_mode=0777
- uid=1001
- gid=1001
- noperm

View file

@ -0,0 +1,87 @@
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: tdarr
name: tdarr
spec:
selector:
matchLabels:
app: tdarr
strategy:
type: Recreate
template:
metadata:
labels:
app: tdarr
spec:
containers:
- env:
- name: TZ
value: "Europe/Berlin"
- name: serverPort
value: "8266"
- name: webUIPort
value: "8265"
- name: internalNode
value: "true"
- name: inContainer
value: "true"
- name: ffmpegVersion
value: "6"
image: ghcr.io/haveagitgat/tdarr:2.27.02
imagePullPolicy: Always
name: tdarr
ports:
- containerPort: 8265
name: http
protocol: TCP
- containerPort: 8266
name: server
protocol: TCP
resources:
limits:
gpu.intel.com/i915: "1"
requests:
gpu.intel.com/i915: "1"
cpu: 25m
memory: 628694953
volumeMounts:
- mountPath: /config
name: config
- mountPath: /app/server
name: config
subPath: server
- mountPath: /app/config
name: config
subPath: config
- mountPath: /app/logs
name: config
subPath: logs
- mountPath: /data
name: data
- mountPath: /media/series
name: combinedseries
- mountPath: /dev/dri
name: dev-dri
dnsPolicy: ClusterFirst
nodeSelector:
intel.feature.node.kubernetes.io/gpu: "true"
oldname: beelink
restartPolicy: Always
schedulerName: default-scheduler
terminationGracePeriodSeconds: 30
volumes:
- name: config
persistentVolumeClaim:
claimName: tdarr-config-data
- name: combinedseries
persistentVolumeClaim:
claimName: smb-combinedseries
- name: data
persistentVolumeClaim:
claimName: smb-usenet
- hostPath:
path: /dev/dri
type: Directory
name: dev-dri

View file

@ -0,0 +1,35 @@
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: smb-series
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
storageClassName: smb-series
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: smb-combinedseries
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
storageClassName: smb-combinedseries
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: smb-usenet
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
storageClassName: smb-usenet

View file

@ -0,0 +1,13 @@
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
labels:
app.kubernetes.io/instance: tdarr
name: tdarr-config-data
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
storageClassName: longhorn-fast

View file

@ -0,0 +1,19 @@
apiVersion: v1
kind: Service
metadata:
annotations:
external-dns.alpha.kubernetes.io/hostname: tdarr.martyn.berlin
labels:
app: tdarr
name: tdarr
spec:
ports:
- targetPort: 8265
port: 80
name: web
- targetPort: 8266
port: 8266
name: s2s
selector:
app: tdarr
type: LoadBalancer

View file

@ -38,7 +38,7 @@ spec:
- name: TS_KUBE_SECRET
value: tailscale
- name: TS_USERSPACE
value: "true"
value: "false"
- name: TS_OUTBOUND_HTTP_PROXY_LISTEN
value: "localhost:1055"
- name: TS_SOCKS5_SERVER
@ -51,6 +51,14 @@ spec:
key: TS_AUTHKEY
name: tailscale-auth
optional: true
livenessProbe:
exec:
command:
- ping
- -c1
- 100.100.100.100
initialDelaySeconds: 120
periodSeconds: 5
image: ghcr.io/tailscale/tailscale:latest
name: ts-sidecar
securityContext:

View file

@ -0,0 +1,75 @@
apiVersion: v1
data:
config.yaml: |
configuration:
working_directory: ".ytdl-sub-working-directory"
presets:
TV Shows:
preset:
- "Jellyfin TV Show by Date"
- "Max 1080p"
embed_thumbnail: True
throttle_protection:
sleep_per_download_s:
min: 2.2
max: 10.8
sleep_per_subscription_s:
min: 9.0
max: 14.1
max_downloads_per_subscription:
min: 10
max: 36
ytdl_options:
source_address: '0.0.0.0'
cookiefile: /config/cookies.txt
date_range:
after: "now-1year"
chapters:
# Embedded Chapter Fields
embed_chapters: True
allow_chapters_from_comments: False
remove_chapters_regex:
- "Intro"
- "Outro"
# Sponsorblock Fields
sponsorblock_categories:
- "outro"
- "selfpromo"
- "preview"
- "interaction"
- "sponsor"
- "music_offtopic"
- "intro"
remove_sponsorblock_categories: "sponsor"
TV Shows Fortnight:
preset:
- "TV Shows"
date_range:
after: "now-14days"
subscriptions.yaml: |
__preset__:
overrides:
tv_show_directory: "/youtube/tv_shows"
music_directory: "/youtube/tv_shows"
"TV Shows":
= Documentaries:
"Technogy Connections": "https://www.youtube.com/@TechnologyConnections"
"Adam Savage's Tested": "https://www.youtube.com/@tested"
"TV Shows Fortnight":
= Music:
"Rick Beato": "https://www.youtube.com/@RickBeato"
run_cron: |
#!/bin/bash
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
echo 'Cron started, running ytdl-sub...'
cd /config/
ytdl-sub --config=config.yaml sub subscriptions.yaml
abc: |
0 */6 * * * /config/ytdl-sub-configs/run_cron
kind: ConfigMap
metadata:
creationTimestamp: null
name: ytdl-sub-config

View file

@ -0,0 +1,77 @@
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: ytdl-sub
name: ytdl-sub
spec:
selector:
matchLabels:
app: ytdl-sub
strategy:
type: Recreate
template:
metadata:
labels:
app: ytdl-sub
spec:
containers:
- env:
- name: PUID
value: "1000"
- name: PGID
value: "1000"
- name: TZ
value: "Europe/Berlin"
- name: DOCKER_MODS
value: "linuxserver/mods:universal-cron"
image: ghcr.io/jmbannon/ytdl-sub:ubuntu-2024.12.27
imagePullPolicy: Always
name: ytdl-sub
ports:
- containerPort: 8443
name: http
protocol: TCP
volumeMounts:
- mountPath: /config
name: config
- mountPath: /youtube
name: youtube
initContainers:
- image: busybox
name: copy-config
command:
- /bin/sh
- -c
- "cp /config_src/config.yaml /config/;
cp /config_src/subscriptions.yaml /config/;
cp /secret/cookies.txt /config/;
mkdir /config/ytdl-sub-configs ;
cp /config_src/run_cron /config/ytdl-sub-configs/ ;
chmod +x /config/ytdl-sub-configs/run_cron ;
mkdir /config/crontabs ;
cp /config_src/abc /config/crontabs/ ;
chown -R 1000:1000 /config"
volumeMounts:
- mountPath: /config_src
name: config-src
- mountPath: /config
name: config
- mountPath: /secret
name: cookie
dnsPolicy: ClusterFirst
restartPolicy: Always
schedulerName: default-scheduler
terminationGracePeriodSeconds: 30
volumes:
- name: config
emptyDir: {}
- name: cookie
secret:
secretName: cookie-secret
- name: config-src
configMap:
name: ytdl-sub-config
- name: youtube
persistentVolumeClaim:
claimName: smb-youtube

View file

@ -0,0 +1,11 @@
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: smb-youtube
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
storageClassName: smb-youtube

View file

@ -0,0 +1,15 @@
apiVersion: v1
kind: Service
metadata:
annotations:
external-dns.alpha.kubernetes.io/hostname: ytdl-sub.martyn.berlin
labels:
app: ytdl-sub
name: ytdl-sub
spec:
ports:
- targetPort: 8989
port: 80
selector:
app: ytdl-sub
type: LoadBalancer

View file

@ -61,6 +61,9 @@ spec:
- name: moreoldseries
size: 1Ti
storageClass: longhorn-spinny
- name: youtube
size: 1Ti
storageClass: longhorn-spinny
- name: evenmoreoldseries
size: 1Ti
storageClass: longhorn-spinny