Remove Disables, Skips and DisableKubeProxy from the comparing configs

Signed-off-by: Manuel Buil <mbuil@suse.com>
pull/4774/head
Manuel Buil 2021-12-17 18:19:44 +01:00
parent bc03b6cf22
commit 5d673f4cdd
1 changed files with 3 additions and 3 deletions

View File

@ -110,15 +110,12 @@ type CriticalControlArgs struct {
ClusterIPRange *net.IPNet ClusterIPRange *net.IPNet
DisableCCM bool DisableCCM bool
DisableHelmController bool DisableHelmController bool
DisableKubeProxy bool
DisableNPC bool DisableNPC bool
Disables map[string]bool
DisableServiceLB bool DisableServiceLB bool
FlannelBackend string FlannelBackend string
NoCoreDNS bool NoCoreDNS bool
ServiceIPRange *net.IPNet ServiceIPRange *net.IPNet
ServiceIPRanges []*net.IPNet ServiceIPRanges []*net.IPNet
Skips map[string]bool
} }
type Control struct { type Control struct {
@ -142,7 +139,9 @@ type Control struct {
DisableAPIServer bool DisableAPIServer bool
DisableControllerManager bool DisableControllerManager bool
DisableETCD bool DisableETCD bool
DisableKubeProxy bool
DisableScheduler bool DisableScheduler bool
Disables map[string]bool
ExtraAPIArgs []string ExtraAPIArgs []string
ExtraControllerArgs []string ExtraControllerArgs []string
ExtraCloudControllerArgs []string ExtraCloudControllerArgs []string
@ -152,6 +151,7 @@ type Control struct {
JoinURL string JoinURL string
IPSECPSK string IPSECPSK string
DefaultLocalStoragePath string DefaultLocalStoragePath string
Skips map[string]bool
SystemDefaultRegistry string SystemDefaultRegistry string
ClusterInit bool ClusterInit bool
ClusterReset bool ClusterReset bool