From 9604cbd30b5798ab9ed25b608478a9ae0a6517b4 Mon Sep 17 00:00:00 2001 From: "Khaled Henidak(Kal)" Date: Mon, 19 Aug 2019 20:53:18 +0000 Subject: [PATCH] phase 2: ipam filter secondary service cidr Kubernetes-commit: 313a5c57347026055fdcfefcdd626a7ab3357f84 --- config/v1alpha1/types.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/v1alpha1/types.go b/config/v1alpha1/types.go index db869f3..dee7bb1 100644 --- a/config/v1alpha1/types.go +++ b/config/v1alpha1/types.go @@ -361,6 +361,8 @@ type NamespaceControllerConfiguration struct { type NodeIPAMControllerConfiguration struct { // serviceCIDR is CIDR Range for Services in cluster. ServiceCIDR string + // secondaryServiceCIDR is CIDR Range for Services in cluster. This is used in dual stack clusters. SecondaryServiceCIDR must be of different IP family than ServiceCIDR + SecondaryServiceCIDR string // NodeCIDRMaskSize is the mask size for node cidr in cluster. NodeCIDRMaskSize int32 }