From 86d094114030c843fa8757f27afe919aa468b272 Mon Sep 17 00:00:00 2001 From: Mikkel Oscar Lyderik Larsen Date: Fri, 17 Jan 2025 16:40:32 +0100 Subject: [PATCH] Fix forwarded headers exclude cirds for IPv6 Signed-off-by: Mikkel Oscar Lyderik Larsen --- cluster/manifests/skipper/deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/manifests/skipper/deployment.yaml b/cluster/manifests/skipper/deployment.yaml index 08a70eb750..72dbf56a8b 100644 --- a/cluster/manifests/skipper/deployment.yaml +++ b/cluster/manifests/skipper/deployment.yaml @@ -9,7 +9,7 @@ {{ $cluster_internal_cidrs := list "10.2.0.0/15" .Values.vpc_ipv4_cidr }} {{ if eq .Cluster.Provider "zalando-eks" }} {{ if eq .Cluster.ConfigItems.eks_ip_family "ipv6" }} -{{ $cluster_internal_cidrs = .Values.vpc_ipv6_cidrs }} +{{ $cluster_internal_cidrs = append .Values.vpc_ipv6_cidrs .Values.vpc_ipv4_cidr }} {{ else }} {{ $cluster_internal_cidrs = list .Values.vpc_ipv4_cidr }} {{ end }}