From e29c03aee7004eba5932d70ea3079b9ef678a197 Mon Sep 17 00:00:00 2001 From: ION606 Date: Fri, 12 Sep 2025 22:25:37 -0400 Subject: [PATCH] debugging --- README.md | 3 +++ apps/children/airflow.yaml | 22 +++++++++++++--------- 2 files changed, 16 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 8e54b4c..2d76384 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,9 @@ My openWebUI/searxng configs, plugins, RAG server, as well as a custom program t *Last updated: 2025-09-10* +> [!TIP] +> Looking for the compose version of this? See the [compose]() + --- ## Summary :3 diff --git a/apps/children/airflow.yaml b/apps/children/airflow.yaml index 940185d..5ac9152 100644 --- a/apps/children/airflow.yaml +++ b/apps/children/airflow.yaml @@ -4,12 +4,16 @@ metadata: { name: airflow, namespace: ai } spec: project: ai-stack destination: { server: https://kubernetes.default.svc, namespace: ai } - source: - repoURL: https://airflow.apache.org - chart: airflow - targetRevision: "*" - helm: - valueFiles: - - apps/values/airflow.yaml - syncPolicy: - automated: { prune: true, selfHeal: true } + sources: + # 1) the chart (from Helm repo) + - repoURL: https://airflow.apache.org + chart: airflow + targetRevision: "*" + helm: + valueFiles: + - $values/values/airflow.yaml # points at the git source below + # 2) your repo (the values live here) + - repoURL: https://git.ion606.com/ion606/ollama-plus + targetRevision: argo + ref: values + syncPolicy: { automated: { prune: true, selfHeal: true } }