fix(services): Disable https redirect in istio to fix cert-manager issues

This commit is contained in:
Dominik Kaminski
2023-09-05 18:48:18 +02:00
parent 3b90533063
commit 1ef4a861ac
2 changed files with 7 additions and 0 deletions

View File

@@ -86,6 +86,7 @@ releases:
chart: "istio-resources-repo/istio-gateway"
version: "1.1.2"
values:
- "values-istio-gateway.yaml"
- "values-istio-gateway.gotmpl"
condition: "istio.enabled"

View File

@@ -0,0 +1,6 @@
# SPDX-FileCopyrightText: 2023 Bundesministerium des Innern und für Heimat, PG ZenDiS "Projektgruppe für Aufbau ZenDiS"
# SPDX-License-Identifier: Apache-2.0
---
tls:
httpsRedirect: false
...