29 lines
781 B
YAML
29 lines
781 B
YAML
# Required: CI Sizer receiver
|
|
# Always deploy this — it stores metrics and computes sizing recommendations.
|
|
# Works standalone or with GARM (Forgejo/GitHub) and/or GitLab webhook.
|
|
# See: ci-sizer/docs/deployment-modes.md
|
|
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: sizer-receiver
|
|
namespace: argocd
|
|
labels:
|
|
env: dev
|
|
finalizers:
|
|
- resources-finalizer.argocd.argoproj.io
|
|
spec:
|
|
project: default
|
|
syncPolicy:
|
|
automated:
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=true
|
|
retry:
|
|
limit: -1
|
|
destination:
|
|
name: in-cluster
|
|
namespace: ci-sizer
|
|
source:
|
|
repoURL: https://edp.buildth.ing/DevFW-CICD/stacks-instances
|
|
targetRevision: HEAD
|
|
path: "otc/benchmark.t09.de/stacks/ci-sizer/sizer-receiver"
|