Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion charts/apps/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ apiVersion: v2
name: apps
description: An argocd app to deploy apps inside the virtual cluster
type: application
version: 0.5.18
version: 0.5.19
3 changes: 2 additions & 1 deletion charts/apps/templates/monitoring-application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,13 @@ metadata:
spec:
destination:
namespace: monitoring
server: {{ .Values.destination.server }}
targetRevision: {{ .Values.monitoring.targetRevision }}
Comment thread
hazdl marked this conversation as resolved.
project: default
source:
repoURL: https://github.com/DiamondLightSource/workflows.git
path: charts/monitoring
targetRevision: {{ .Values.monitoring.targetRevision }}

helm:
valueFiles:
- values.yaml
Expand Down
2 changes: 1 addition & 1 deletion charts/monitoring/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: monitoring
description: A monitoring stack for the workflows deployment
type: application
version: 0.1.28
version: 0.1.29
dependencies:
- name: grafana
repository: https://grafana-community.github.io/helm-charts
Expand Down
18 changes: 18 additions & 0 deletions charts/monitoring/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,24 @@ thanos:
prometheus:
kube-state-metrics:
enabled: false
serverFiles:
alerting_rules.yml:
groups:
- name: argo-workflows
rules:
- alert: ArgoWorkflowControllerFailing
expr: |
kube_pod_container_status_waiting_reason{
namespace="workflows",
pod=~"workflows-argo-workflows-workflow-controller-.*",
reason="CrashLoopBackOff"
} > 0
for: 10m
labels:
severity: warning
annotations:
summary: Argo Workflow Controller failing
description: Workflow controller has been in CrashLoopBackOff for more than 10 minutes.
prometheus-node-exporter:
enabled: false
prometheus-pushgateway:
Expand Down
Loading