fix(argocd): GitOps-manage the fuzekeys AppProject so app-of-apps self-heals - #40
Draft
github-actions[bot] wants to merge 1 commit into
Draft
fix(argocd): GitOps-manage the fuzekeys AppProject so app-of-apps self-heals#40github-actions[bot] wants to merge 1 commit into
github-actions[bot] wants to merge 1 commit into
Conversation
…f-heals The root app-of-apps `fuzekeys-apps` referenced `project: fuzekeys`, but the AppProject lived at deploy/argocd/project.yaml — outside the recursed applications/ path, so no Application synced it. It was a manual kubectl-apply bootstrap step; if missed, the root Application is InvalidSpec and never creates its children, leaving `fuzekeys-apps` OutOfSync/Missing. CI validates the Helm chart but not deploy/argocd/**, so this slipped through. - Move project.yaml into applications/ so the app-of-apps reconciles the AppProject from git (sync-wave -1 → created before the child apps; Prune=false → never pruned out from under the workloads). - Point the root app-of-apps at the built-in `default` project so it no longer depends on the very AppProject it now creates (avoids the chicken-and-egg). - Update deploy/README.md; note the shared-Argo caveat on `default`. Bootstrap now collapses to a single kubectl apply of app-of-apps.yaml. Co-authored-by: Israel Weinberg <99821070+izzywdev@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The root app-of-apps
fuzekeys-appsreferencedproject: fuzekeys, but theAppProject lived at deploy/argocd/project.yaml — outside the recursed
applications/ path, so no Application synced it. It was a manual kubectl-apply
bootstrap step; if missed, the root Application is InvalidSpec and never
creates its children, leaving
fuzekeys-appsOutOfSync/Missing. CI validatesthe Helm chart but not deploy/argocd/**, so this slipped through.
AppProject from git (sync-wave -1 → created before the child apps;
Prune=false → never pruned out from under the workloads).
defaultproject so it no longerdepends on the very AppProject it now creates (avoids the chicken-and-egg).
default.Bootstrap now collapses to a single kubectl apply of app-of-apps.yaml.
Co-authored-by: Israel Weinberg 99821070+izzywdev@users.noreply.github.com