Last active
March 15, 2022 14:42
-
-
Save kusznerr/f25e52726ffc8da3f4125e6250ea3a45 to your computer and use it in GitHub Desktop.
Sample root application for ArgoCD to enable app-of-apps pattern
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
apiVersion: argoproj.io/v1alpha1 | |
kind: Application | |
metadata: | |
name: root-app | |
namespace: argocd | |
finalizers: | |
- resources-finalizer.argocd.argoproj.io | |
spec: | |
destination: | |
namespace: argocd | |
server: https://kubernetes.default.svc | |
project: default | |
source: | |
path: apps/wabbit-rk5-gke/ | |
repoURL: https://github.com/kusznerr/sample-gke-argo-apps | |
targetRevision: HEAD | |
syncPolicy: | |
automated: | |
prune: true | |
selfHeal: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment