46 lines
1.0 KiB
YAML
46 lines
1.0 KiB
YAML
apiVersion: argoproj.io/v1alpha1
|
|||
|
|
kind: Application
|
||
|
|
metadata:
|
||
|
|
name: tekton-pipelines
|
||
|
|
namespace: argocd
|
||
|
|
labels:
|
||
|
|
app.kubernetes.io/name: tekton-pipelines
|
||
|
|
app.kubernetes.io/part-of: homelab-infra
|
||
|
|
spec:
|
||
|
|
project: default
|
||
|
|
|
||
|
|
source:
|
||
|
|
repoURL: https://github.com/tektoncd/pipeline.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
|
||
|
|
- RespectIgnoreDifferences=true
|
||
|
|
retry:
|
||
|
|
limit: 5
|
||
|
|
backoff:
|
||
|
|
duration: 5s
|
||
|
|
factor: 2
|
||
|
|
maxDuration: 3m
|
||
|
|
|
||
|
|
ignoreDifferences:
|
||
|
|
# Ignore webhook certificate changes
|
||
|
|
- group: admissionregistration.k8s.io
|
||
|
|
kind: ValidatingWebhookConfiguration
|
||
|
|
jsonPointers:
|
||
|
|
- /webhooks/0/clientConfig/caBundle
|
||
|
|
- group: admissionregistration.k8s.io
|
||
|
|
kind: MutatingWebhookConfiguration
|
||
|
|
jsonPointers:
|
||
|
|
- /webhooks/0/clientConfig/caBundle
|