From da2b1e60cde8d756c0f588efb70c86c2b64e68d5 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Mon, 21 Jul 2025 17:17:16 -0500 Subject: [PATCH] autoscaler: Set imagePullPolicy: IfNotPresent We don't want to pull public container images that already exist. This creates prevents pods from starting if there is any connectivity issue with the upstream registry. --- autoscaler/kustomization.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/autoscaler/kustomization.yaml b/autoscaler/kustomization.yaml index 74507d4..3ce3263 100644 --- a/autoscaler/kustomization.yaml +++ b/autoscaler/kustomization.yaml @@ -22,6 +22,7 @@ patches: spec: containers: - name: cluster-autoscaler + imagePullPolicy: IfNotPresent command: - ./cluster-autoscaler - --v=4