Skip to content

Commit

Permalink
Merge pull request #4776 from manuelbuil/fix-rke2-ha-120
Browse files Browse the repository at this point in the history
[Release 1.20] Remove Disables, Skips and DisableKubeProxy from the comparing configs
  • Loading branch information
manuelbuil authored Dec 17, 2021
2 parents 7fc4300 + 9703310 commit 6149cba
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions pkg/daemons/config/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,17 +95,14 @@ type Agent struct {

// CriticalControlArgs contains parameters that all control plane nodes in HA must share
type CriticalControlArgs struct {
ClusterDNS net.IP
ClusterDomain string
ClusterIPRange *net.IPNet
DisableCCM bool
DisableKubeProxy bool
DisableNPC bool
Disables map[string]bool
FlannelBackend string
NoCoreDNS bool
ServiceIPRange *net.IPNet
Skips map[string]bool
ClusterDNS net.IP
ClusterDomain string
ClusterIPRange *net.IPNet
DisableCCM bool
DisableNPC bool
FlannelBackend string
NoCoreDNS bool
ServiceIPRange *net.IPNet
}

type Control struct {
Expand All @@ -129,7 +126,9 @@ type Control struct {
DisableAPIServer bool
DisableControllerManager bool
DisableETCD bool
DisableKubeProxy bool
DisableScheduler bool
Disables map[string]bool
ExtraAPIArgs []string
ExtraControllerArgs []string
ExtraCloudControllerArgs []string
Expand All @@ -138,6 +137,7 @@ type Control struct {
JoinURL string
IPSECPSK string
DefaultLocalStoragePath string
Skips map[string]bool
ClusterInit bool
ClusterReset bool
ClusterResetRestorePath string
Expand Down

0 comments on commit 6149cba

Please sign in to comment.