13 lines
581 B
YAML
13 lines
581 B
YAML
# Plain kustomize, no patches/overlays — this just lists which files
|
|
# belong to this app so `kustomize build apps/podinfo` (or Flux's own
|
|
# `Kustomization` object of the same name in clusters/homelab/apps.yaml,
|
|
# pointed at this directory) has one thing to apply. Order matters only in
|
|
# that namespace.yaml has to exist before objects that reference it, but
|
|
# kubectl/kustomize sort by kind anyway, so this is really just an
|
|
# inventory.
|
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
resources:
|
|
- namespace.yaml
|
|
- helmrepository.yaml
|
|
- helmrelease.yaml
|