28 lines
548 B
YAML
28 lines
548 B
YAML
|
---
|
||
|
apiVersion: argoproj.io/v1alpha1
|
||
|
kind: Application
|
||
|
metadata:
|
||
|
name: cluster-deployments
|
||
|
namespace: argocd
|
||
|
spec:
|
||
|
project: default
|
||
|
source:
|
||
|
repoURL: 'https://git.smsvc.net/k8s/cluster-deployments.git'
|
||
|
path: manifests/
|
||
|
targetRevision: HEAD
|
||
|
directory:
|
||
|
recurse: true
|
||
|
destination:
|
||
|
server: 'https://kubernetes.default.svc'
|
||
|
namespace: argocd
|
||
|
syncPolicy:
|
||
|
automated:
|
||
|
prune: true
|
||
|
selfHeal: true
|
||
|
retry:
|
||
|
limit: 5
|
||
|
backoff:
|
||
|
duration: 5s
|
||
|
factor: 2
|
||
|
maxDuration: 5m
|