projectsend/deploy/deployment.yaml aktualisiert
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
# deployment.yaml
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: projectsend
|
||||
labels:
|
||||
app: projectsend
|
||||
spec:
|
||||
replicas: 1
|
||||
strategy:
|
||||
rollingUpdate:
|
||||
maxSurge: 1
|
||||
maxUnavailable: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: projectsend
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: projectsend
|
||||
spec:
|
||||
containers:
|
||||
- name: projectsend
|
||||
env:
|
||||
- name: TZ
|
||||
value: Europe/Berlin
|
||||
- name: PUID
|
||||
value: 1000
|
||||
- name: PGID
|
||||
value: 1000
|
||||
image: lscr.io/linuxserver/projectsend:latest
|
||||
volumeMounts:
|
||||
- name: config
|
||||
mountPath: /config
|
||||
- name: data
|
||||
mountPath: /data
|
||||
volumes:
|
||||
- name: config
|
||||
persistentVolumeClaim:
|
||||
claimName: projectsend-config
|
||||
- name: data
|
||||
persistentVolumeClaim:
|
||||
claimName: projectsend-data
|
||||
Reference in New Issue
Block a user