From 5d673f4cddbb20cd5f494c5a79029d63cbd71a89 Mon Sep 17 00:00:00 2001 From: Manuel Buil Date: Fri, 17 Dec 2021 18:19:44 +0100 Subject: [PATCH] Remove Disables, Skips and DisableKubeProxy from the comparing configs Signed-off-by: Manuel Buil --- pkg/daemons/config/types.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/daemons/config/types.go b/pkg/daemons/config/types.go index 0446f215c1..5e42419aae 100644 --- a/pkg/daemons/config/types.go +++ b/pkg/daemons/config/types.go @@ -110,15 +110,12 @@ type CriticalControlArgs struct { ClusterIPRange *net.IPNet DisableCCM bool DisableHelmController bool - DisableKubeProxy bool DisableNPC bool - Disables map[string]bool DisableServiceLB bool FlannelBackend string NoCoreDNS bool ServiceIPRange *net.IPNet ServiceIPRanges []*net.IPNet - Skips map[string]bool } type Control struct { @@ -142,7 +139,9 @@ type Control struct { DisableAPIServer bool DisableControllerManager bool DisableETCD bool + DisableKubeProxy bool DisableScheduler bool + Disables map[string]bool ExtraAPIArgs []string ExtraControllerArgs []string ExtraCloudControllerArgs []string @@ -152,6 +151,7 @@ type Control struct { JoinURL string IPSECPSK string DefaultLocalStoragePath string + Skips map[string]bool SystemDefaultRegistry string ClusterInit bool ClusterReset bool