From e77761ed23062054ffdb6d0047b2d98d10e15124 Mon Sep 17 00:00:00 2001
From: Christopher Kyle Galloway <kylegalloway@seed-innovations.com>
Date: Thu, 30 May 2024 13:27:57 +0000
Subject: [PATCH] Add drift detection to service mesh team tools

---
 chart/templates/authservice/helmrelease.yaml    | 2 ++
 chart/templates/haproxy/helmrelease.yaml        | 2 ++
 chart/templates/istio-operator/helmrelease.yaml | 4 +++-
 chart/templates/istio/helmrelease.yaml          | 2 ++
 chart/templates/kiali/helmrelease.yaml          | 4 +++-
 5 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/chart/templates/authservice/helmrelease.yaml b/chart/templates/authservice/helmrelease.yaml
index 2032be1475..e173217662 100644
--- a/chart/templates/authservice/helmrelease.yaml
+++ b/chart/templates/authservice/helmrelease.yaml
@@ -12,6 +12,8 @@ metadata:
   annotations:
     checksum/bigbang-values: {{ include (print $.Template.BasePath "/authservice/values.yaml") . | sha256sum }}
 spec:
+  driftDetection:
+    mode: enabled
   targetNamespace: authservice
   chart:
     spec:
diff --git a/chart/templates/haproxy/helmrelease.yaml b/chart/templates/haproxy/helmrelease.yaml
index 9d3b777724..bc8f034ccf 100644
--- a/chart/templates/haproxy/helmrelease.yaml
+++ b/chart/templates/haproxy/helmrelease.yaml
@@ -13,6 +13,8 @@ metadata:
   annotations:
     checksum/bigbang-values: {{ include (print $.Template.BasePath "/haproxy/values.yaml") . | sha256sum }}
 spec:
+  driftDetection:
+    mode: enabled
   targetNamespace: authservice
   chart:
     spec:
diff --git a/chart/templates/istio-operator/helmrelease.yaml b/chart/templates/istio-operator/helmrelease.yaml
index dd6da27b48..e948f6e62e 100644
--- a/chart/templates/istio-operator/helmrelease.yaml
+++ b/chart/templates/istio-operator/helmrelease.yaml
@@ -12,6 +12,8 @@ metadata:
   annotations:
     checksum/bigbang-values: {{ include (print $.Template.BasePath "/istio-operator/values.yaml") . | sha256sum }}
 spec:
+  driftDetection:
+    mode: enabled
   targetNamespace: istio-operator
   chart:
     spec:
@@ -54,7 +56,7 @@ spec:
     - name: {{ .Release.Name }}-istio-operator-values
       kind: Secret
       valuesKey: "overlays"
-  
+
   {{- if or .Values.gatekeeper.enabled .Values.kyvernoPolicies.enabled }}
   dependsOn:
     {{- if .Values.gatekeeper.enabled }}
diff --git a/chart/templates/istio/helmrelease.yaml b/chart/templates/istio/helmrelease.yaml
index 46c00bfbe9..17aab166ab 100644
--- a/chart/templates/istio/helmrelease.yaml
+++ b/chart/templates/istio/helmrelease.yaml
@@ -12,6 +12,8 @@ metadata:
   annotations:
     checksum/bigbang-values: {{ include (print $.Template.BasePath "/istio/values.yaml") . | sha256sum }}
 spec:
+  driftDetection:
+    mode: enabled
   targetNamespace: istio-system
   chart:
     spec:
diff --git a/chart/templates/kiali/helmrelease.yaml b/chart/templates/kiali/helmrelease.yaml
index ff55b6ccbd..f4a0ec16f5 100644
--- a/chart/templates/kiali/helmrelease.yaml
+++ b/chart/templates/kiali/helmrelease.yaml
@@ -12,6 +12,8 @@ metadata:
   annotations:
     checksum/bigbang-values: {{ include (print $.Template.BasePath "/kiali/values.yaml") . | sha256sum }}
 spec:
+  driftDetection:
+    mode: enabled
   targetNamespace: kiali
   chart:
     spec:
@@ -39,7 +41,7 @@ spec:
       interval: 5m
 
   {{- toYaml $fluxSettingsKiali | nindent 2 }}
-  
+
   {{- if .Values.kiali.postRenderers }}
   postRenderers:
   {{ toYaml .Values.kiali.postRenderers | nindent 4 }}
-- 
GitLab