From 1753c842ef857f5de56640dda2f9b0a074e7ef3a Mon Sep 17 00:00:00 2001
From: Sheogorath <sheogorath@shivering-isles.com>
Date: Mon, 22 May 2023 22:23:37 +0200
Subject: [PATCH] fix(monitoring): Adjust timeout and update behaviour

This patch increases the timeout for installation and upgrades, and adds
additional retries for upgrades and installation to make sure the
helmrelease object doesn't end up in a failed state as quickly as
before.
---
 infrastructure/monitoring/release.yaml | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/infrastructure/monitoring/release.yaml b/infrastructure/monitoring/release.yaml
index 98b90614d..246479f2b 100644
--- a/infrastructure/monitoring/release.yaml
+++ b/infrastructure/monitoring/release.yaml
@@ -13,10 +13,15 @@ spec:
         name: prometheus-community
         namespace: monitoring-system
       version: 45.29.0
-  interval: 5m
+  interval: 60m
+  timeout: 10m
   install:
+    remediation:
+      retries: 5
     crds: CreateReplace
   upgrade:
+    remediation:
+      retries: 5
     crds: CreateReplace
   valuesFrom:
     - kind: ConfigMap
-- 
GitLab