Combine Helm and K8s Manifests in One ArgoCD Application

I feel pretty dumb right now. I used 2 ArgoCD applications for the same thing—one for my Helm chart, the other for flat manifest YAML files. Apparently, thinking isn’t my strong suit. I mean, I could barely remember where I put my coffee, let alone plan a proper ArgoCD setup!

So, like any reasonable person, I had to RTFM (read the fine manual, of course), and eventually stumbled upon the brilliant solution.

 1apiVersion: argoproj.io/v1alpha1
 2kind: Application
 3metadata:
 4  name: kasten
 5  namespace: argocd
 6spec:
 7  destination:
 8    server: https://kubernetes.default.svc
 9    namespace: kasten-io
10  project: default
11  sources:
12  - repoURL: https://charts.kasten.io
13    chart: k10
14    targetRevision: "7.5.7"
15    helm:
16      valueFiles:
17      - $values/clusters/hive/apps/kasten-io/helm/values.yaml
18  - repoURL: '[email protected]:AndreiGavriliu/homelab.git'
19    targetRevision: main
20    ref: values
21  - repoURL: '[email protected]:AndreiGavriliu/homelab.git'
22    targetRevision: main
23    path: clusters/hive/apps/kasten-io/k8s-manifests
24  syncPolicy:
25    syncOptions:
26    - CreateNamespace=true

Look at how simple that was! How did I not think of this sooner? My brain must’ve been on vacation.