Bundle CRDs into a single install manifest #2
Reference in New Issue
Block a user
Delete Branch "benvin/crd-install-bundle"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Adds
config/crd/install.yaml— all 9 CRDs concatenated into one applyable file — so downstream GitOps (argocd-apps) can reference the CRDs by a single stable raw URL instead of vendoring copies.Why
The argocd-apps bind-system app should pull CRDs from this repo via a raw link (like gateway-api's standard-install.yaml), not carry copied files that drift.
Changes
make generatenow writesconfig/crd/install.yamlby concatenatingconfig/crd/bases/*.yamlconfig/crd/install.yaml(9 CustomResourceDefinitions)Follow-up
After merge, tag v0.1.1 so the bundle is available at
https://git.unkin.net/unkin/bind-operator/raw/tag/v0.1.1/config/crd/install.yaml,which the argocd-apps bind-system kustomization will reference.