Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions apps/blackbox-exporter/development.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: blackbox-exporter
namespace: argocd
spec:
project: prod
source:
repoURL: https://prometheus-community.github.io/helm-charts
chart: prometheus-blackbox-exporter
targetRevision: 8.17.0
helm:
values: |
config:
modules:
http_2xx:
prober: http
timeout: 5s
http:
method: GET

serviceMonitor:
enabled: true
additionalRelabelings:
- sourceLabels: [__address__]
targetLabel: __param_target
- sourceLabels: [__param_target]
targetLabel: instance
- targetLabel: __address__
replacement: blackbox-exporter.monitoring.svc.cluster.local:9115

targets:
- https://reduce.isis.cclrc.ac.uk/fia/healthz # Pending

destination:
name: prod
namespace: monitoring-system
syncPolicy:
automated:
prune: true
selfHeal: true
Loading