diff options
| author | Rasmus Luha <rasmus.luha@ut.ee> | 2026-05-30 17:53:29 +0300 |
|---|---|---|
| committer | Rasmus Luha <rasmus.luha@ut.ee> | 2026-05-30 17:53:29 +0300 |
| commit | 188a8eafd139f4cc15cf39584f9092e464a2fdf0 (patch) | |
| tree | b10cd29b0ab1fc112968c3049bae99f50b0d2802 /apps/heimdall/deployment.yaml | |
init commit - heimdall running
Diffstat (limited to 'apps/heimdall/deployment.yaml')
| -rw-r--r-- | apps/heimdall/deployment.yaml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/apps/heimdall/deployment.yaml b/apps/heimdall/deployment.yaml new file mode 100644 index 0000000..38b4122 --- /dev/null +++ b/apps/heimdall/deployment.yaml @@ -0,0 +1,37 @@ +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" + #volumes: + #- name: heimdall-config + # hostPath: + # path: ./heimdall-config + # type: DirectoryOrCreate + volumes: + - name: heimdall-config + persistentVolumeClaim: + claimName: heimdall-pvc |
