mirror of https://github.com/k3s-io/k3s
Remove Disables, Skips and DisableKubeProxy from the comparing configs
Signed-off-by: Manuel Buil <mbuil@suse.com>pull/4774/head
parent
bc03b6cf22
commit
5d673f4cdd
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue