Merge pull request #7513 from tomocy/fix-typo

Fix typo
pull/7527/head
Medya Ghazizadeh 2020-04-08 13:57:54 -07:00 committed by GitHub
commit aec3afec2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -372,14 +372,14 @@ func updateExistingConfigFromFlags(cmd *cobra.Command, existing *config.ClusterC
glog.Warningf("error calculate memory size in mb : %v", err)
}
if memInMB != existing.Memory {
out.WarningT("You not the change the memory size for an exiting minikube cluster. Pease first delete the cluster.")
out.WarningT("You cannot change the memory size for an exiting minikube cluster. Please first delete the cluster.")
}
}
if cmd.Flags().Changed(cpus) {
if viper.GetInt(cpus) != existing.CPUs {
out.WarningT("You not the change the CPUs for an exiting minikube cluster. Pease first delete the cluster.")
out.WarningT("You cannot change the CPUs for an exiting minikube cluster. Please first delete the cluster.")
}
}
@ -390,7 +390,7 @@ func updateExistingConfigFromFlags(cmd *cobra.Command, existing *config.ClusterC
}
if memInMB != existing.DiskSize {
out.WarningT("You not the change the Disk size for an exiting minikube cluster. Pease first delete the cluster.")
out.WarningT("You cannot change the Disk size for an exiting minikube cluster. Please first delete the cluster.")
}
}