Files
infrastructure/clusters/cl01tl/manifests/shelfmark/Deployment-shelfmark.yaml
gitea-bot 9b613cd4ca Automated Manifest Update (#3315)
This PR contains newly rendered Kubernetes manifests automatically generated by the CI workflow.

Reviewed-on: #3315
Co-authored-by: gitea-bot <gitea-bot@alexlebens.net>
Co-committed-by: gitea-bot <gitea-bot@alexlebens.net>
2026-01-18 23:43:25 +00:00

78 lines
2.2 KiB
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: shelfmark
labels:
app.kubernetes.io/controller: main
app.kubernetes.io/instance: shelfmark
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: shelfmark
helm.sh/chart: shelfmark-4.6.2
namespace: shelfmark
spec:
revisionHistoryLimit: 3
replicas: 1
strategy:
type: Recreate
selector:
matchLabels:
app.kubernetes.io/controller: main
app.kubernetes.io/name: shelfmark
app.kubernetes.io/instance: shelfmark
template:
metadata:
labels:
app.kubernetes.io/controller: main
app.kubernetes.io/instance: shelfmark
app.kubernetes.io/name: shelfmark
spec:
enableServiceLinks: false
serviceAccountName: default
automountServiceAccountToken: true
hostIPC: false
hostNetwork: false
hostPID: false
dnsPolicy: ClusterFirst
containers:
- env:
- name: FLASK_PORT
value: "8084"
- name: SEARCH_MODE
value: direct
image: ghcr.io/calibrain/shelfmark:dev@sha256:3f6b0822e6f6981386e6bbb2270deb06f361dc5d732a56cbbe2415a0ce467783
imagePullPolicy: IfNotPresent
livenessProbe:
exec:
command:
- CMD
- curl
- -sf
- http://localhost:8084/api/health
failureThreshold: 5
initialDelaySeconds: 60
periodSeconds: 30
successThreshold: 1
timeoutSeconds: 30
name: main
resources:
requests:
cpu: 10m
memory: 256Mi
volumeMounts:
- mountPath: /audiobooks
name: audiobooks
- mountPath: /config
name: config
- mountPath: /ingest
name: ingest
volumes:
- name: audiobooks
persistentVolumeClaim:
claimName: shelfmark-audiobooks-nfs-storage
- name: config
persistentVolumeClaim:
claimName: shelfmark
- name: ingest
persistentVolumeClaim:
claimName: shelfmark-import-nfs-storage