1
0
mirror of https://github.com/rancher/rke.git synced 2025-09-01 06:56:29 +00:00

Add host connectivity and Docker version check

This commit is contained in:
Sebastiaan van Steenis
2017-12-01 22:06:13 +01:00
parent fa3e30a6dc
commit bd8a966ce6
4 changed files with 43 additions and 11 deletions

View File

@@ -35,10 +35,7 @@ func (c *Cluster) ValidateCluster() error {
}
// validate services options
if err := validateServicesOptions(c); err != nil {
return err
}
return nil
return validateServicesOptions(c)
}
func validateAuthOptions(c *Cluster) error {