From a35eaf1a1cd19edb7aaa92726e834922dfb7e6f1 Mon Sep 17 00:00:00 2001
From: Sheogorath <sheogorath@shivering-isles.com>
Date: Wed, 18 Aug 2021 02:56:55 +0200
Subject: [PATCH] fix(shields): Prevent imagestreams vs deployments

This patch fixes an issue that was showing up today, when the
iamgestream started to continously update the shields image which
resulted in helm thinking that it needed to redo it's deployment.

As a result there were dozens of replicasets within seconds.
---
 apps/base/shivering-isles/shields/templates/imagestream.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/apps/base/shivering-isles/shields/templates/imagestream.yaml b/apps/base/shivering-isles/shields/templates/imagestream.yaml
index 4281f902c..4f2919f1a 100644
--- a/apps/base/shivering-isles/shields/templates/imagestream.yaml
+++ b/apps/base/shivering-isles/shields/templates/imagestream.yaml
@@ -5,7 +5,7 @@ metadata:
   name: {{ include "shields.fullname" . }}
 spec:
   lookupPolicy:
-    local: true
+    local: false
   tags:
     - name: "{{ .Values.image.tag | default .Chart.AppVersion }}"
       annotations: null
-- 
GitLab