Automated Manifest Update (#3316)
This PR contains newly rendered Kubernetes manifests automatically generated by the CI workflow. Reviewed-on: #3316 Co-authored-by: gitea-bot <gitea-bot@alexlebens.net> Co-committed-by: gitea-bot <gitea-bot@alexlebens.net>
This commit was merged in pull request #3316.
This commit is contained in:
@@ -39,7 +39,7 @@ spec:
|
|||||||
value: "8084"
|
value: "8084"
|
||||||
- name: SEARCH_MODE
|
- name: SEARCH_MODE
|
||||||
value: direct
|
value: direct
|
||||||
image: ghcr.io/calibrain/shelfmark:dev@sha256:3f6b0822e6f6981386e6bbb2270deb06f361dc5d732a56cbbe2415a0ce467783
|
image: ghcr.io/calibrain/shelfmark:v1.0.1
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
exec:
|
exec:
|
||||||
@@ -63,6 +63,8 @@ spec:
|
|||||||
name: audiobooks
|
name: audiobooks
|
||||||
- mountPath: /config
|
- mountPath: /config
|
||||||
name: config
|
name: config
|
||||||
|
- mountPath: /mnt/store/Torrent
|
||||||
|
name: downloads
|
||||||
- mountPath: /ingest
|
- mountPath: /ingest
|
||||||
name: ingest
|
name: ingest
|
||||||
volumes:
|
volumes:
|
||||||
@@ -72,6 +74,9 @@ spec:
|
|||||||
- name: config
|
- name: config
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
claimName: shelfmark
|
claimName: shelfmark
|
||||||
|
- name: downloads
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: shelfmark-downloads-nfs-storage
|
||||||
- name: ingest
|
- name: ingest
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
claimName: shelfmark-import-nfs-storage
|
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