I have the following:
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: crm
namespace: default
spec:
project: default
source:
repoURL: <my url
targetRevision: argocd
path: argocd/
destination:
server: https://kubernetes.default.svc
namespace: default
syncPolicy:
syncOptions:
- CreateNamespace=true
automated:
selfHeal: true
prune: true
This is working to connect argocd with the main branch, but what if I want it to follow a different branch instead?
Thank you.