mirror of https://github.com/k3s-io/k3s
Merge pull request #4774 from manuelbuil/fix-rke2-ha-engine
[k3s-engine] Remove Disables, Skips and DisableKubeProxy from the critical configspull/4795/head
commit
7e79ba7afd
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue