From 810134e9bce70fd2b763120b21d287484db734ac Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Mon, 21 Jul 2025 17:16:32 -0500 Subject: [PATCH] authelia: 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. --- authelia/kustomization.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/authelia/kustomization.yaml b/authelia/kustomization.yaml index e32f3e3..1288853 100644 --- a/authelia/kustomization.yaml +++ b/authelia/kustomization.yaml @@ -37,6 +37,7 @@ patches: spec: containers: - name: authelia + imagePullPolicy: IfNotPresent env: - name: AUTHELIA_STORAGE_POSTGRES_TLS_CERTIFICATE_CHAIN_FILE value: /run/authelia/certs/postgresql/tls.crt