mirror of
https://github.com/gwg313/homelab-gitops.git
synced 2026-06-26 01:50:12 +00:00
re add navidrome
Signed-off-by: gwg313 <gwg313@pm.me>
This commit is contained in:
parent
0b69038d79
commit
adc6cdb0bc
14 changed files with 44 additions and 1 deletions
47
apps/navidrome/deployment.yaml
Normal file
47
apps/navidrome/deployment.yaml
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: navidrome
|
||||
namespace: navidrome
|
||||
spec:
|
||||
replicas: 1
|
||||
strategy:
|
||||
type: Recreate
|
||||
selector:
|
||||
matchLabels:
|
||||
app: navidrome
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: navidrome
|
||||
spec:
|
||||
containers:
|
||||
- name: navidrome
|
||||
image: deluan/navidrome:pr-5495
|
||||
ports:
|
||||
- containerPort: 4533
|
||||
resources:
|
||||
requests:
|
||||
cpu: "100m"
|
||||
memory: "128Mi"
|
||||
limits:
|
||||
cpu: "1000m"
|
||||
memory: "512Mi"
|
||||
envFrom:
|
||||
- configMapRef:
|
||||
name: navidrome-config
|
||||
- secretRef:
|
||||
name: navidrome-secrets
|
||||
volumeMounts:
|
||||
- mountPath: /data
|
||||
name: navidrome-data
|
||||
- mountPath: /music
|
||||
name: navidrome-music
|
||||
readOnly: true
|
||||
volumes:
|
||||
- name: navidrome-data
|
||||
persistentVolumeClaim:
|
||||
claimName: navidrome-data
|
||||
- name: navidrome-music
|
||||
persistentVolumeClaim:
|
||||
claimName: navidrome-music
|
||||
Loading…
Add table
Add a link
Reference in a new issue