# flux bootstrap points the flux-system Kustomization at ./clusters/homelab # and applies everything under it (prune: true), so these Kustomization # objects are how the rest of the repo gets pulled in. apiVersion: kustomize.toolkit.fluxcd.io/v1 kind: Kustomization metadata: name: podinfo namespace: flux-system spec: interval: 10m path: ./apps/podinfo prune: true sourceRef: kind: GitRepository name: flux-system --- apiVersion: kustomize.toolkit.fluxcd.io/v1 kind: Kustomization metadata: name: hello-app namespace: flux-system spec: interval: 10m path: ./apps/hello-app prune: true sourceRef: kind: GitRepository name: flux-system --- apiVersion: kustomize.toolkit.fluxcd.io/v1 kind: Kustomization metadata: name: headlamp namespace: flux-system spec: interval: 10m path: ./apps/headlamp prune: true sourceRef: kind: GitRepository name: flux-system