From 4c1992b3c9b99fc4ce95fb94c053aae7bbfbe100 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sun, 7 Sep 2025 10:49:22 -0500 Subject: [PATCH] v-m/vmagent: Start in parallel As with AlertManager, the point of having multiple replicas of `vmagent` is so that one is always running, even if the other fails. Thus, we want to start the pods in parallel so that if the first one does not come up, the second one at least has a chance. --- victoria-metrics/vmagent.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/victoria-metrics/vmagent.yaml b/victoria-metrics/vmagent.yaml index b26c1e3..9148f7f 100644 --- a/victoria-metrics/vmagent.yaml +++ b/victoria-metrics/vmagent.yaml @@ -138,3 +138,4 @@ spec: name: vmagent - name: tmpdata emptyDir: {} + podManagementPolicy: Parallel