From 11d8e33350394bf9642c27d6977ecbe6c0b03b79 Mon Sep 17 00:00:00 2001
From: Greg <miernicki_gregory@bah.com>
Date: Tue, 16 Jul 2024 18:04:41 -0500
Subject: [PATCH] =?UTF-8?q?add=20values=20=E2=9B=B5?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 chart/values.yaml | 66 +++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 66 insertions(+)

diff --git a/chart/values.yaml b/chart/values.yaml
index 82869987eb..cf557ef2e2 100644
--- a/chart/values.yaml
+++ b/chart/values.yaml
@@ -160,6 +160,72 @@ imagePullPolicy: IfNotPresent
 # ----------------------------------------------------------------------------------------------------------------------
 # Istio
 #
+istioBase:
+  # -- Toggle deployment of Istio Base
+  enabled: false
+  # -- Choose source type of "git" or "helmRepo"
+  sourceType: "git"
+  git:
+    repo: https://repo1.dso.mil/big-bang/apps/sandbox/istio-base.git
+    path: "./chart"
+    branch: "bb-2213-istio-base"
+    #tag:
+  helmRepo:
+    repoName: "registry1"
+    chartName: "istio-base"
+    tag:
+  # -- Flux reconciliation overrides specifically for the Istio Base Package
+  flux: {}
+  # -- Values to passthrough to the istio-base chart
+  values: {}
+  # -- Post Renderers.  See docs/postrenders.md
+  postRenderers: []
+
+istiod:
+  # -- Toggle deployment of Istio Daemon
+  enabled: false
+  # -- Choose source type of "git" or "helmRepo"
+  sourceType: "git"
+  git:
+    repo: https://repo1.dso.mil/big-bang/apps/sandbox/istiod.git
+    path: "./chart"
+    branch: "bb-2213-istio-istiod"
+    #tag:
+  helmRepo:
+    repoName: "registry1"
+    chartName: "istiod"
+    tag:
+  # -- Flux reconciliation overrides specifically for the Istio Daemon Package
+  flux: {}
+  # -- Values to passthrough to the istiod chart
+  values: {}
+  # -- Post Renderers.  See docs/postrenders.md
+  postRenderers: []
+
+istioGateway:
+  # -- Toggle deployment of Istio Gateway
+  enabled: false
+  # -- Choose source type of "git" or "helmRepo"
+  sourceType: "git"
+  git:
+    repo: https://repo1.dso.mil/big-bang/apps/sandbox/istio-gateway.git
+    path: "./chart"
+    branch: "bb-2213-istio-gateway"
+    #tag:
+
+  # helmRepo:
+  #   repoName: "registry1"
+  #   chartName: "istio-gateway"
+  #   tag:
+
+  # -- Flux reconciliation overrides specifically for the Istio Gateway Package
+  flux: {}
+  # -- Values to passthrough to the istio-base chart
+  values: {}
+  # -- Post Renderers.  See docs/postrenders.md
+  postRenderers: []
+
+
 istio:
   # -- Toggle deployment of Istio.
   enabled: true
-- 
GitLab