Created
July 11, 2024 21:53
-
-
Save christianh814/cc6a74ddcd927e8427e81eb7f8ea2afb to your computer and use it in GitHub Desktop.
Guestbook Sample Application for Argo CD
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: guestbook | |
namespace: argocd | |
finalizers: | |
- resources-finalizer.argocd.argoproj.io | |
spec: | |
project: default | |
source: | |
path: guestbook | |
repoURL: https://github.com/argoproj/argocd-example-apps.git | |
targetRevision: master | |
destination: | |
name: in-cluster | |
namespace: blog | |
syncPolicy: | |
automated: | |
prune: true | |
selfHeal: true | |
retry: | |
backoff: | |
duration: 5s | |
factor: 2 | |
maxDuration: 3m0s | |
limit: 5 | |
syncOptions: | |
- CreateNamespace=true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment