@@ -61,6 +61,7 @@ func init() {
6161 }
6262 testClusterRKEConfigNetworkConfCalico = & managementClient.NetworkConfig {
6363 CalicoNetworkProvider : testClusterRKEConfigNetworkCalicoConf ,
64+ MTU : 1500 ,
6465 Options : map [string ]string {
6566 "option1" : "value1" ,
6667 "option2" : "value2" ,
@@ -70,6 +71,7 @@ func init() {
7071 testClusterRKEConfigNetworkInterfaceCalico = []interface {}{
7172 map [string ]interface {}{
7273 "calico_network_provider" : testClusterRKEConfigNetworkCalicoInterface ,
74+ "mtu" : 1500 ,
7375 "options" : map [string ]interface {}{
7476 "option1" : "value1" ,
7577 "option2" : "value2" ,
@@ -79,6 +81,7 @@ func init() {
7981 }
8082 testClusterRKEConfigNetworkConfCanal = & managementClient.NetworkConfig {
8183 CanalNetworkProvider : testClusterRKEConfigNetworkCanalConf ,
84+ MTU : 1500 ,
8285 Options : map [string ]string {
8386 "option1" : "value1" ,
8487 "option2" : "value2" ,
@@ -88,6 +91,7 @@ func init() {
8891 testClusterRKEConfigNetworkInterfaceCanal = []interface {}{
8992 map [string ]interface {}{
9093 "canal_network_provider" : testClusterRKEConfigNetworkCanalInterface ,
94+ "mtu" : 1500 ,
9195 "options" : map [string ]interface {}{
9296 "option1" : "value1" ,
9397 "option2" : "value2" ,
@@ -97,6 +101,7 @@ func init() {
97101 }
98102 testClusterRKEConfigNetworkConfFlannel = & managementClient.NetworkConfig {
99103 FlannelNetworkProvider : testClusterRKEConfigNetworkFlannelConf ,
104+ MTU : 1500 ,
100105 Options : map [string ]string {
101106 "option1" : "value1" ,
102107 "option2" : "value2" ,
@@ -106,6 +111,7 @@ func init() {
106111 testClusterRKEConfigNetworkInterfaceFlannel = []interface {}{
107112 map [string ]interface {}{
108113 "flannel_network_provider" : testClusterRKEConfigNetworkFlannelInterface ,
114+ "mtu" : 1500 ,
109115 "options" : map [string ]interface {}{
110116 "option1" : "value1" ,
111117 "option2" : "value2" ,
@@ -115,6 +121,7 @@ func init() {
115121 }
116122 testClusterRKEConfigNetworkConfWeave = & managementClient.NetworkConfig {
117123 WeaveNetworkProvider : testClusterRKEConfigNetworkWeaveConf ,
124+ MTU : 1500 ,
118125 Options : map [string ]string {
119126 "option1" : "value1" ,
120127 "option2" : "value2" ,
@@ -124,6 +131,7 @@ func init() {
124131 testClusterRKEConfigNetworkInterfaceWeave = []interface {}{
125132 map [string ]interface {}{
126133 "weave_network_provider" : testClusterRKEConfigNetworkWeaveInterface ,
134+ "mtu" : 1500 ,
127135 "options" : map [string ]interface {}{
128136 "option1" : "value1" ,
129137 "option2" : "value2" ,
0 commit comments