You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// HostSubnetLength is the number of bits of network to allocate to each node. eg, 8 would mean that each node would have a /24 slice of the overlay network for its pods
allErrs=append(allErrs, field.Invalid(field.NewPath("ClusterNetworks"), clusterNet.ClusterNetworks, "cannot change the default ClusterNetwork record via API"))
76
77
}
77
78
}
78
79
} else {
79
-
allErrs=append(allErrs, field.Invalid(field.NewPath("ClusterDef"), clusterNet.ClusterDef, "cannot change the default ClusterNetwork record via API"))
80
+
allErrs=append(allErrs, field.Invalid(field.NewPath("ClusterDef"), clusterNet.ClusterNetworks, "cannot change the default ClusterNetwork record via API"))
80
81
}
81
82
// if clusterNet.Network != defaultClusterNetwork.Network {
82
83
// allErrs = append(allErrs, field.Invalid(field.NewPath("network"), clusterNet.Network, "cannot change the default ClusterNetwork record via API."))
0 commit comments