Kubernetes - Advanced Deployment Patterns
Consider this ArgoCD Application manifest snippet:
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: demo-app
spec:
source:
repoURL: 'https://github.com/example/demo.git'
path: 'deploy'
destination:
server: 'https://kubernetes.default.svc'
namespace: 'default'
syncPolicy:
automated:
prune: true
selfHeal: true
What will ArgoCD do when syncing this application?