23 lines
430 B
YAML
23 lines
430 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: myapp-argo-application
|
|
namespace: argocd
|
|
spec:
|
|
project: default
|
|
|
|
source:
|
|
repoURL: https://gitea.wty.cool/root/zero.git
|
|
targetRevision: main
|
|
path: dev
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: myapp
|
|
|
|
syncPolicy:
|
|
syncOptions:
|
|
- CreateNamespace=true
|
|
|
|
automated:
|
|
selfHeal: true
|
|
prune: true |