mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-08-08 15:39:47 +00:00
Updated wireguard-native options and added log message
Signed-off-by: Roberto Bonafiglia <roberto.bonafiglia@suse.com>
This commit is contained in:
@@ -169,7 +169,8 @@ func createFlannelConf(nodeConfig *config.Node) error {
|
||||
}
|
||||
case config.FlannelBackendWireguard:
|
||||
backendConf = strings.ReplaceAll(wireguardBackend, "%flannelConfDir%", filepath.Dir(nodeConfig.FlannelConfFile))
|
||||
case config.FlannelBackendNativeWireguard:
|
||||
logrus.Warnf("The wireguard backend is deprecated and will be removed in k3s v1.26, please switch to wireguard-native. Check our docs for information about how to migrate")
|
||||
case config.FlannelBackendWireguardNative:
|
||||
backendConf = wireguardNativeBackend
|
||||
default:
|
||||
return fmt.Errorf("Cannot configure unknown flannel backend '%s'", nodeConfig.FlannelBackend)
|
||||
|
||||
@@ -193,7 +193,7 @@ var ServerFlags = []cli.Flag{
|
||||
ClusterDomain,
|
||||
cli.StringFlag{
|
||||
Name: "flannel-backend",
|
||||
Usage: "(networking) One of 'none', 'vxlan', 'ipsec', 'host-gw', or 'wireguard'",
|
||||
Usage: "(networking) One of 'none', 'vxlan', 'ipsec', 'host-gw', 'wireguard'(deprecated), or 'wireguard-native' (default: vxlan)",
|
||||
Destination: &ServerConfig.FlannelBackend,
|
||||
Value: "vxlan",
|
||||
},
|
||||
|
||||
@@ -22,7 +22,7 @@ const (
|
||||
FlannelBackendHostGW = "host-gw"
|
||||
FlannelBackendIPSEC = "ipsec"
|
||||
FlannelBackendWireguard = "wireguard"
|
||||
FlannelBackendNativeWireguard = "native-wireguard"
|
||||
FlannelBackendWireguardNative = "wireguard-native"
|
||||
CertificateRenewDays = 90
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user