From 65bf4069e1b7de8f7ce4d863ed781f151f18fd3b Mon Sep 17 00:00:00 2001 From: HDW Date: Sun, 19 Apr 2026 11:27:03 +0200 Subject: [PATCH] feat: initial bootstrap manifests for argocd and gitea --- platform/argocd/kustomization.yaml | 5 +++++ platform/gitea/Chart.yaml | 7 +++++++ platform/gitea/values.yaml | 26 ++++++++++++++++++++++++++ 3 files changed, 38 insertions(+) create mode 100644 platform/argocd/kustomization.yaml create mode 100644 platform/gitea/Chart.yaml create mode 100644 platform/gitea/values.yaml diff --git a/platform/argocd/kustomization.yaml b/platform/argocd/kustomization.yaml new file mode 100644 index 0000000..8017f14 --- /dev/null +++ b/platform/argocd/kustomization.yaml @@ -0,0 +1,5 @@ +apiVersion: kustomize.config.k8s.io/v1beta1 +kind: Kustomization +namespace: argocd +resources: + - https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml diff --git a/platform/gitea/Chart.yaml b/platform/gitea/Chart.yaml new file mode 100644 index 0000000..7341d28 --- /dev/null +++ b/platform/gitea/Chart.yaml @@ -0,0 +1,7 @@ +apiVersion: v2 +name: gitea-deployment +version: 1.0.0 +dependencies: + - name: gitea + version: 10.x.x # Trage hier die aktuelle Gitea-Chart-Version ein + repository: https://dl.gitea.com/charts/ diff --git a/platform/gitea/values.yaml b/platform/gitea/values.yaml new file mode 100644 index 0000000..c7e69dc --- /dev/null +++ b/platform/gitea/values.yaml @@ -0,0 +1,26 @@ +# gitea-bootstrap.yaml +gitea: + admin: + username: "hdw" + password: "GT_875797umo1?LY" +postgresql-ha: + enabled: false + +nodeSelector: + tier: infra + +postgresql: + enabled: true + primary: + nodeSelector: + tier: infra + +valkey-cluster: + # Variante 1: Der globale Bitnami-Weg + global: + nodeSelector: + tier: infra + # Variante 2: Der spezifische Weg (zur Sicherheit beides reinnehmen) + valkey: + nodeSelector: + tier: infra