diff options
| author | R-man3000 <rasmus.luha@gmail.com> | 2026-05-30 21:27:30 +0300 |
|---|---|---|
| committer | R-man3000 <rasmus.luha@gmail.com> | 2026-05-30 21:27:30 +0300 |
| commit | 974d4457148e9a9ff3a0231eece663d04faaf16d (patch) | |
| tree | 59ce91682030791e04b2b7e342580138d6bad79a /apps/heimdall/values.yaml | |
| parent | f933430bdc951fbbf64c83ac31357d41846bb69e (diff) | |
Restructurig, start creating heimdall helm chart
Diffstat (limited to 'apps/heimdall/values.yaml')
| -rw-r--r-- | apps/heimdall/values.yaml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/apps/heimdall/values.yaml b/apps/heimdall/values.yaml new file mode 100644 index 0000000..72a6338 --- /dev/null +++ b/apps/heimdall/values.yaml @@ -0,0 +1,33 @@ +replicaCount: 1 + +image: + repository: lscr.io/linuxserver/heimdall + tag: "latest" + pullPolicy: IfNotPresent + +env: + puid: "1000" + pgid: "1000" + appUrl: "http://heimdall.local:8080" + +service: + type: ClusterIP + port: 80 + +ingress: + enabled: true + className: nginx + host: heimdall.local + +persistence: + enabled: true + storageClass: local-path + size: 1Gi + +resources: {} +# requests: +# cpu: 100m +# memory: 128Mi +# limits: +# cpu: 500m +# memory: 256Mi |
