books :)
This commit is contained in:
@@ -15,6 +15,26 @@ spec:
|
|||||||
name: svc-truenas
|
name: svc-truenas
|
||||||
port:
|
port:
|
||||||
number: 443
|
number: 443
|
||||||
|
- host: "mylar3.local"
|
||||||
|
http:
|
||||||
|
paths:
|
||||||
|
- path: /
|
||||||
|
pathType: Prefix
|
||||||
|
backend:
|
||||||
|
service:
|
||||||
|
name: svc-mylar3
|
||||||
|
port:
|
||||||
|
number: 80
|
||||||
|
- host: "readarr.local"
|
||||||
|
http:
|
||||||
|
paths:
|
||||||
|
- path: /
|
||||||
|
pathType: Prefix
|
||||||
|
backend:
|
||||||
|
service:
|
||||||
|
name: svc-readarr
|
||||||
|
port:
|
||||||
|
number: 80
|
||||||
- host: "tdarr.local"
|
- host: "tdarr.local"
|
||||||
http:
|
http:
|
||||||
paths:
|
paths:
|
||||||
|
45
k8s_manifests/mylar3/deployment.yaml
Normal file
45
k8s_manifests/mylar3/deployment.yaml
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: mylar3
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: mylar3
|
||||||
|
spec:
|
||||||
|
replicas: 1
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app.kubernetes.io/name: mylar3
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: mylar3
|
||||||
|
spec:
|
||||||
|
volumes:
|
||||||
|
- name: nfs-vol
|
||||||
|
nfs:
|
||||||
|
server: 192.168.0.99
|
||||||
|
path: /mnt/test1/media/
|
||||||
|
- name: config
|
||||||
|
nfs:
|
||||||
|
server: 192.168.0.99
|
||||||
|
path: /mnt/test1/media/config/mylar3
|
||||||
|
containers:
|
||||||
|
- name: mylar3
|
||||||
|
image: lscr.io/linuxserver/mylar3:latest
|
||||||
|
env:
|
||||||
|
- name: PUID
|
||||||
|
value: "1000"
|
||||||
|
- name: PGID
|
||||||
|
value: "1000"
|
||||||
|
- name: UMASK
|
||||||
|
value: "002"
|
||||||
|
- name: TZ
|
||||||
|
value: "Etc/UTC"
|
||||||
|
ports:
|
||||||
|
- containerPort: 8090
|
||||||
|
volumeMounts:
|
||||||
|
- name: config
|
||||||
|
mountPath: /config
|
||||||
|
- name: nfs-vol
|
||||||
|
mountPath: /media
|
||||||
|
|
14
k8s_manifests/mylar3/service.yaml
Normal file
14
k8s_manifests/mylar3/service.yaml
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: svc-mylar3
|
||||||
|
spec:
|
||||||
|
selector:
|
||||||
|
app.kubernetes.io/name: mylar3
|
||||||
|
ports:
|
||||||
|
- name: webui
|
||||||
|
protocol: TCP
|
||||||
|
port: 80
|
||||||
|
targetPort: 8090
|
||||||
|
|
||||||
|
|
45
k8s_manifests/readarr/deployment.yaml
Normal file
45
k8s_manifests/readarr/deployment.yaml
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: readarr
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: readarr
|
||||||
|
spec:
|
||||||
|
replicas: 1
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app.kubernetes.io/name: readarr
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: readarr
|
||||||
|
spec:
|
||||||
|
volumes:
|
||||||
|
- name: nfs-vol
|
||||||
|
nfs:
|
||||||
|
server: 192.168.0.99
|
||||||
|
path: /mnt/test1/media/
|
||||||
|
- name: config
|
||||||
|
nfs:
|
||||||
|
server: 192.168.0.99
|
||||||
|
path: /mnt/test1/media/config/readarr
|
||||||
|
containers:
|
||||||
|
- name: readarr
|
||||||
|
image: ghcr.io/hotio/readarr:latest
|
||||||
|
env:
|
||||||
|
- name: PUID
|
||||||
|
value: "1000"
|
||||||
|
- name: PGID
|
||||||
|
value: "1000"
|
||||||
|
- name: UMASK
|
||||||
|
value: "002"
|
||||||
|
- name: TZ
|
||||||
|
value: "Etc/UTC"
|
||||||
|
ports:
|
||||||
|
- containerPort: 8787
|
||||||
|
volumeMounts:
|
||||||
|
- name: config
|
||||||
|
mountPath: /config
|
||||||
|
- name: nfs-vol
|
||||||
|
mountPath: /media
|
||||||
|
|
14
k8s_manifests/readarr/service.yaml
Normal file
14
k8s_manifests/readarr/service.yaml
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: svc-readarr
|
||||||
|
spec:
|
||||||
|
selector:
|
||||||
|
app.kubernetes.io/name: readarr
|
||||||
|
ports:
|
||||||
|
- name: webui
|
||||||
|
protocol: TCP
|
||||||
|
port: 80
|
||||||
|
targetPort: 8787
|
||||||
|
|
||||||
|
|
@@ -26,6 +26,13 @@ spec:
|
|||||||
containers:
|
containers:
|
||||||
- name: slskd
|
- name: slskd
|
||||||
image: slskd/slskd:latest
|
image: slskd/slskd:latest
|
||||||
|
livenessProbe:
|
||||||
|
httpGet:
|
||||||
|
path: /health
|
||||||
|
port: 5030
|
||||||
|
initialDelaySeconds: 60
|
||||||
|
failureThreshold: 6
|
||||||
|
periodSeconds: 10
|
||||||
env:
|
env:
|
||||||
- name: SLSKD_REMOTE_CONFIGURATION
|
- name: SLSKD_REMOTE_CONFIGURATION
|
||||||
value: "true"
|
value: "true"
|
||||||
|
Reference in New Issue
Block a user