squash all
Mostly copied over from my old repo and modified for app of apps. Cleaning up the mess from migration Signed-off-by: gwg313 <gwg313@pm.me>
This commit is contained in:
parent
471f30f0b1
commit
52933116f0
104 changed files with 2532 additions and 44 deletions
38
navidrome/deployment.yaml
Normal file
38
navidrome/deployment.yaml
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: navidrome
|
||||
namespace: navidrome
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: navidrome
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: navidrome
|
||||
spec:
|
||||
containers:
|
||||
- name: navidrome
|
||||
image: deluan/navidrome:latest
|
||||
ports:
|
||||
- containerPort: 4533
|
||||
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