From e741feb8e2e5676d00d363ae7ad616987394b035 Mon Sep 17 00:00:00 2001
From: Sheogorath <sheogorath@shivering-isles.com>
Date: Wed, 23 Mar 2022 01:37:20 +0100
Subject: [PATCH] fix(hcloud-dynfw): Switch cronjob to always pulling the image

Given that this cronjob uses the `latest` tag, using `Always` as pull
policy should make sure that it actually uses and up-to-date version.
---
 apps/k8s01/hcloud-dynfw/cronjob.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/apps/k8s01/hcloud-dynfw/cronjob.yaml b/apps/k8s01/hcloud-dynfw/cronjob.yaml
index ae57b6423..f0c2115e6 100644
--- a/apps/k8s01/hcloud-dynfw/cronjob.yaml
+++ b/apps/k8s01/hcloud-dynfw/cronjob.yaml
@@ -12,7 +12,7 @@ spec:
           containers:
           - name: hcloud-dynfw
             image: quay.io/sheogorath/hcloud-dynfw:latest
-            imagePullPolicy: IfNotPresent
+            imagePullPolicy: Always
             resources:
               requests:
                 cpu: 100m
-- 
GitLab