From b19b11a8b4b321e18f2687d4420c742565e4d890 Mon Sep 17 00:00:00 2001 From: Gorden Mende Date: Tue, 6 Jan 2026 14:44:03 +0000 Subject: [PATCH] =?UTF-8?q?projectsend/deployment.yaml=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- projectsend/deployment.yaml | 43 +++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 projectsend/deployment.yaml diff --git a/projectsend/deployment.yaml b/projectsend/deployment.yaml new file mode 100644 index 0000000..20fc45d --- /dev/null +++ b/projectsend/deployment.yaml @@ -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 \ No newline at end of file