summaryrefslogtreecommitdiff
path: root/apps/heimdall/old_manifests/deployment.yaml
diff options
context:
space:
mode:
authorR-man3000 <rasmus.luha@gmail.com>2026-05-30 21:27:30 +0300
committerR-man3000 <rasmus.luha@gmail.com>2026-05-30 21:27:30 +0300
commit974d4457148e9a9ff3a0231eece663d04faaf16d (patch)
tree59ce91682030791e04b2b7e342580138d6bad79a /apps/heimdall/old_manifests/deployment.yaml
parentf933430bdc951fbbf64c83ac31357d41846bb69e (diff)
Restructurig, start creating heimdall helm chart
Diffstat (limited to 'apps/heimdall/old_manifests/deployment.yaml')
-rw-r--r--apps/heimdall/old_manifests/deployment.yaml39
1 files changed, 39 insertions, 0 deletions
diff --git a/apps/heimdall/old_manifests/deployment.yaml b/apps/heimdall/old_manifests/deployment.yaml
new file mode 100644
index 0000000..4f942a3
--- /dev/null
+++ b/apps/heimdall/old_manifests/deployment.yaml
@@ -0,0 +1,39 @@
+apiVersion: apps/v1
+kind: Deployment
+metadata:
+ name: heimdall
+ namespace: heimdall
+spec:
+ replicas: 1
+ selector:
+ matchLabels:
+ app: heimdall
+ template:
+ metadata:
+ labels:
+ app: heimdall
+ spec:
+ containers:
+ - name: heimdall
+ image: lscr.io/linuxserver/heimdall:latest
+ ports:
+ - containerPort: 80
+ volumeMounts:
+ - name: heimdall-config
+ mountPath: /config
+ env:
+ - name: PUID
+ value: "1000"
+ - name: PGID
+ value: "1000"
+ - name: APP_URL
+ value: "http://heimdall.local:8080"
+ #volumes:
+ #- name: heimdall-config
+ # hostPath:
+ # path: ./heimdall-config
+ # type: DirectoryOrCreate
+ volumes:
+ - name: heimdall-config
+ persistentVolumeClaim:
+ claimName: heimdall-pvc