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 | |
| parent | f933430bdc951fbbf64c83ac31357d41846bb69e (diff) | |
Restructurig, start creating heimdall helm chart
| -rw-r--r-- | apps/heimdall/Chart.yaml | 5 | ||||
| -rw-r--r-- | apps/heimdall/old_manifests/deployment.yaml (renamed from apps/heimdall/deployment.yaml) | 0 | ||||
| -rw-r--r-- | apps/heimdall/old_manifests/ingress.yaml (renamed from apps/heimdall/ingress.yaml) | 0 | ||||
| -rw-r--r-- | apps/heimdall/old_manifests/notes.txt (renamed from apps/heimdall/notes.txt) | 0 | ||||
| -rw-r--r-- | apps/heimdall/old_manifests/pvc.yaml (renamed from apps/heimdall/pvc.yaml) | 0 | ||||
| -rw-r--r-- | apps/heimdall/old_manifests/service.yaml (renamed from apps/heimdall/service.yaml) | 0 | ||||
| -rw-r--r-- | apps/heimdall/templates/_helpers.tpl | 1 | ||||
| -rw-r--r-- | apps/heimdall/values.yaml | 33 | ||||
| -rw-r--r-- | bootstrap/create-cluster.sh | 0 |
9 files changed, 39 insertions, 0 deletions
diff --git a/apps/heimdall/Chart.yaml b/apps/heimdall/Chart.yaml new file mode 100644 index 0000000..35e0486 --- /dev/null +++ b/apps/heimdall/Chart.yaml @@ -0,0 +1,5 @@ +apiVersion: v2 +name: heimdall +description: Heimdall application dashboard +type: application +version: 0.1.0 diff --git a/apps/heimdall/deployment.yaml b/apps/heimdall/old_manifests/deployment.yaml index 4f942a3..4f942a3 100644 --- a/apps/heimdall/deployment.yaml +++ b/apps/heimdall/old_manifests/deployment.yaml diff --git a/apps/heimdall/ingress.yaml b/apps/heimdall/old_manifests/ingress.yaml index 407afd5..407afd5 100644 --- a/apps/heimdall/ingress.yaml +++ b/apps/heimdall/old_manifests/ingress.yaml diff --git a/apps/heimdall/notes.txt b/apps/heimdall/old_manifests/notes.txt index 76c832a..76c832a 100644 --- a/apps/heimdall/notes.txt +++ b/apps/heimdall/old_manifests/notes.txt diff --git a/apps/heimdall/pvc.yaml b/apps/heimdall/old_manifests/pvc.yaml index 4bb3b60..4bb3b60 100644 --- a/apps/heimdall/pvc.yaml +++ b/apps/heimdall/old_manifests/pvc.yaml diff --git a/apps/heimdall/service.yaml b/apps/heimdall/old_manifests/service.yaml index f3ad504..f3ad504 100644 --- a/apps/heimdall/service.yaml +++ b/apps/heimdall/old_manifests/service.yaml diff --git a/apps/heimdall/templates/_helpers.tpl b/apps/heimdall/templates/_helpers.tpl new file mode 100644 index 0000000..1333ed7 --- /dev/null +++ b/apps/heimdall/templates/_helpers.tpl @@ -0,0 +1 @@ +TODO 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 diff --git a/bootstrap/create-cluster.sh b/bootstrap/create-cluster.sh new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/bootstrap/create-cluster.sh |
