chore: Update manifests after change
This commit is contained in:
@@ -39,7 +39,7 @@ spec:
|
||||
value: "8084"
|
||||
- name: SEARCH_MODE
|
||||
value: direct
|
||||
image: ghcr.io/calibrain/shelfmark:dev@sha256:3f6b0822e6f6981386e6bbb2270deb06f361dc5d732a56cbbe2415a0ce467783
|
||||
image: ghcr.io/calibrain/shelfmark:v1.0.1
|
||||
imagePullPolicy: IfNotPresent
|
||||
livenessProbe:
|
||||
exec:
|
||||
@@ -63,6 +63,8 @@ spec:
|
||||
name: audiobooks
|
||||
- mountPath: /config
|
||||
name: config
|
||||
- mountPath: /mnt/store/Torrent
|
||||
name: downloads
|
||||
- mountPath: /ingest
|
||||
name: ingest
|
||||
volumes:
|
||||
@@ -72,6 +74,9 @@ spec:
|
||||
- name: config
|
||||
persistentVolumeClaim:
|
||||
claimName: shelfmark
|
||||
- name: downloads
|
||||
persistentVolumeClaim:
|
||||
claimName: shelfmark-downloads-nfs-storage
|
||||
- name: ingest
|
||||
persistentVolumeClaim:
|
||||
claimName: shelfmark-import-nfs-storage
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
apiVersion: v1
|
||||
kind: PersistentVolume
|
||||
metadata:
|
||||
name: shelfmark-downloads-nfs-storage
|
||||
namespace: shelfmark
|
||||
labels:
|
||||
app.kubernetes.io/name: shelfmark-downloads-nfs-storage
|
||||
app.kubernetes.io/instance: shelfmark
|
||||
app.kubernetes.io/part-of: shelfmark
|
||||
spec:
|
||||
persistentVolumeReclaimPolicy: Retain
|
||||
storageClassName: nfs-client
|
||||
capacity:
|
||||
storage: 1Gi
|
||||
accessModes:
|
||||
- ReadWriteMany
|
||||
nfs:
|
||||
path: /volume2/Storage/Torrent
|
||||
server: synologybond.alexlebens.net
|
||||
mountOptions:
|
||||
- vers=4
|
||||
- minorversion=1
|
||||
- noac
|
||||
@@ -0,0 +1,17 @@
|
||||
apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
metadata:
|
||||
name: shelfmark-downloads-nfs-storage
|
||||
namespace: shelfmark
|
||||
labels:
|
||||
app.kubernetes.io/name: shelfmark-downloads-nfs-storage
|
||||
app.kubernetes.io/instance: shelfmark
|
||||
app.kubernetes.io/part-of: shelfmark
|
||||
spec:
|
||||
volumeName: shelfmark-downloads-nfs-storage
|
||||
storageClassName: nfs-client
|
||||
accessModes:
|
||||
- ReadWriteMany
|
||||
resources:
|
||||
requests:
|
||||
storage: 1Gi
|
||||
Reference in New Issue
Block a user