mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-09-15 22:20:51 +00:00
Fix typos in user-facing strings
This commit is contained in:
@@ -55,7 +55,7 @@ func TestBasicImage(c *client.Client, image string) bool {
|
||||
}
|
||||
// Delete the controller
|
||||
if err = c.ReplicationControllers(ns).Delete(name); err != nil {
|
||||
glog.Warningf("Failed to delete straggler replicatior controller: %v", err)
|
||||
glog.Warningf("Failed to delete straggler replication controller: %v", err)
|
||||
}
|
||||
break
|
||||
}
|
||||
@@ -154,7 +154,7 @@ func TestBasicImage(c *client.Client, image string) bool {
|
||||
// Resize the replication controller to zero to get rid of pods.
|
||||
controller.Spec.Replicas = 0
|
||||
if _, err = c.ReplicationControllers(ns).Update(controller); err != nil {
|
||||
glog.Errorf("Failed to resize replication controllert to zero: %v", err)
|
||||
glog.Errorf("Failed to resize replication controller to zero: %v", err)
|
||||
return false
|
||||
}
|
||||
|
||||
|
@@ -27,7 +27,7 @@ import (
|
||||
// for the providers GCE and GKE.
|
||||
func TestPrivate(c *client.Client) bool {
|
||||
if testContext.provider != "gce" && testContext.provider != "gke" {
|
||||
glog.Infof("Skipping test private which is only supported for proivders gce and gke (not %s)", testContext.provider)
|
||||
glog.Infof("Skipping test private which is only supported for providers gce and gke (not %s)", testContext.provider)
|
||||
return true
|
||||
}
|
||||
glog.Info("Calling out to TestBasic")
|
||||
|
Reference in New Issue
Block a user