From 7fd613ccaf41faf7c0021f28c79204a43f1b69bd Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Mon, 21 Jul 2025 17:14:06 -0500 Subject: [PATCH] ara: 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. --- ansible/ara.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/ansible/ara.yaml b/ansible/ara.yaml index 4f8bd4d..ef70b4e 100644 --- a/ansible/ara.yaml +++ b/ansible/ara.yaml @@ -32,6 +32,7 @@ spec: containers: - name: ara-api image: quay.io/recordsansible/ara-api + imagePullPolicy: IfNotPresent env: - name: ARA_BASE_DIR value: /etc/ara