34 lines
665 B
YAML
34 lines
665 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|||
|
|
kind: Application
|
||
|
|
metadata:
|
||
|
|
name: tekton-pipelines
|
||
|
|
namespace: argocd
|
||
|
|
labels:
|
||
|
|
app.kubernetes.io/name: tekton
|
||
|
|
app.kubernetes.io/part-of: homelab
|
||
|
|
spec:
|
||
|
|
project: default
|
||
|
|
|
||
|
|
source:
|
||
|
|
repoURL: https://github.com/tektoncd/operator.git
|
||
|
|
targetRevision: main
|
||
|
|
path: config/release
|
||
|
|
|
||
|
|
destination:
|
||
|
|
server: https://kubernetes.default.svc
|
||
|
|
namespace: tekton-pipelines
|
||
|
|
|
||
|
|
syncPolicy:
|
||
|
|
automated:
|
||
|
|
prune: true
|
||
|
|
selfHeal: true
|
||
|
|
syncOptions:
|
||
|
|
- CreateNamespace=true
|
||
|
|
- Validate=false
|
||
|
|
retry:
|
||
|
|
limit: 5
|
||
|
|
backoff:
|
||
|
|
duration: 5s
|
||
|
|
factor: 2
|
||
|
|
maxDuration: 3m
|