add arr-stack
This commit is contained in:
41
arr-stack/radarr/deployment.yaml
Normal file
41
arr-stack/radarr/deployment.yaml
Normal file
@@ -0,0 +1,41 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: radarr
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: radarr
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: radarr
|
||||
spec:
|
||||
containers:
|
||||
- name: radarr
|
||||
image: linuxserver/radarr:version-5.27.5.10198
|
||||
volumeMounts:
|
||||
- name: downloads
|
||||
mountPath: /mnt/Downloads
|
||||
- name: movies
|
||||
mountPath: /mnt/movies
|
||||
resources:
|
||||
limits:
|
||||
memory: "1Gi"
|
||||
cpu: "1"
|
||||
requests:
|
||||
memory: "512Mi"
|
||||
cpu: "0.5"
|
||||
volumes:
|
||||
- name: config
|
||||
persistentVolumeClaim:
|
||||
claimName: radarr-config
|
||||
- name: movies
|
||||
nfs:
|
||||
server: 10.105.15.20
|
||||
path: /mnt/hdd-pool/movies
|
||||
- name: downloads
|
||||
nfs:
|
||||
server: 10.105.15.20
|
||||
path: /mnt/hdd-pool/syncthing-downloads
|
||||
11
arr-stack/radarr/pvc.yaml
Normal file
11
arr-stack/radarr/pvc.yaml
Normal file
@@ -0,0 +1,11 @@
|
||||
apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
metadata:
|
||||
name: radarr-config
|
||||
spec:
|
||||
resources:
|
||||
requests:
|
||||
storage: 10Gi
|
||||
volumeMode: Filesystem
|
||||
accessModes:
|
||||
- ReadWriteMany
|
||||
33
arr-stack/tunnel/deployment.yaml
Normal file
33
arr-stack/tunnel/deployment.yaml
Normal file
@@ -0,0 +1,33 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: deluge-tunnel
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
app: deluge-tunnel
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: deluge-tunnel
|
||||
spec:
|
||||
containers:
|
||||
- name: deluge-tunnel
|
||||
image: kroniak/ssh-client:3.21
|
||||
command: ["/bin/sh", "-c", "ssh -o StrictHostKeyChecking=no weyma-talos@45.152.211.243 -p 2222 -L 0.0.0.0:58846:127.0.0.1:58846 -L 0.0.0.0:8112:127.0.0.1:8112 -N"]
|
||||
volumeMounts:
|
||||
- name: ssh-keys
|
||||
mountPath: /root/.ssh
|
||||
resources:
|
||||
limits:
|
||||
memory: "512Mi"
|
||||
cpu: "500m"
|
||||
requests:
|
||||
memory: "128Mi"
|
||||
cpu: "200m"
|
||||
volumes:
|
||||
- name: ssh-keys
|
||||
secret:
|
||||
defaultMode: 0400
|
||||
secretName: ssh-keys
|
||||
|
||||
28
arr-stack/tunnel/ssh-keys.yaml
Normal file
28
arr-stack/tunnel/ssh-keys.yaml
Normal file
@@ -0,0 +1,28 @@
|
||||
apiVersion: external-secrets.io/v1
|
||||
kind: ExternalSecret
|
||||
metadata:
|
||||
name: ssh-keys
|
||||
spec:
|
||||
data:
|
||||
- remoteRef:
|
||||
conversionStrategy: Default
|
||||
decodingStrategy: None
|
||||
key: deluge-ssh
|
||||
metadataPolicy: None
|
||||
property: private
|
||||
secretKey: id_ed25519
|
||||
- remoteRef:
|
||||
conversionStrategy: Default
|
||||
decodingStrategy: None
|
||||
key: deluge-ssh
|
||||
metadataPolicy: None
|
||||
property: public
|
||||
secretKey: id_ed25519.pub
|
||||
refreshInterval: 1h
|
||||
secretStoreRef:
|
||||
kind: ClusterSecretStore
|
||||
name: weyma-vault
|
||||
target:
|
||||
creationPolicy: Owner
|
||||
deletionPolicy: Retain
|
||||
name: ssh-keys
|
||||
14
arr-stack/tunnel/svc.yaml
Normal file
14
arr-stack/tunnel/svc.yaml
Normal file
@@ -0,0 +1,14 @@
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: deluge
|
||||
spec:
|
||||
selector:
|
||||
app: deluge-tunnel
|
||||
ports:
|
||||
- port: 58846
|
||||
targetPort: 58846
|
||||
name: deluge
|
||||
- port: 8112
|
||||
targetPort: 8112
|
||||
name: web
|
||||
Reference in New Issue
Block a user