Skip to content

Commit cab2869

Browse files
committed
fix(argocd-understack): allow Envoy configs for global clusters
When building a global cluster, you will need to still deploy the Envoy configs.
1 parent 9c7144e commit cab2869

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

charts/argocd-understack/templates/application-envoy-configs.yaml.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{- if eq (include "understack.isEnabled" (list $.Values.site "envoy_configs")) "true" }}
1+
{{- if or (eq (include "understack.isEnabled" (list $.Values.global "envoy_configs")) "true") (eq (include "understack.isEnabled" (list $.Values.site "envoy_configs")) "true") }}
22
---
33
apiVersion: argoproj.io/v1alpha1
44
kind: Application

charts/argocd-understack/values.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,12 @@ global:
5757
# @default -- true
5858
enabled: true
5959

60+
# -- Envoy configs for Envoy Gateway API
61+
envoy_configs:
62+
# -- Enable/disable deploy Envoy Configs
63+
# @default -- true
64+
enabled: true
65+
6066
# -- Envoy Gateway API gateway
6167
envoy_gateway:
6268
# -- Enable/disable deploying Envoy Gateway

0 commit comments

Comments
 (0)