Merge pull request #21369 from AdoHe/kubectl_change_column_titles

Auto commit by PR queue bot
This commit is contained in:
k8s-merge-robot
2016-02-23 05:20:38 -08:00
2 changed files with 7 additions and 7 deletions

View File

@@ -363,8 +363,8 @@ func ExamplePrintReplicationControllerWithNamespace() {
fmt.Printf("Unexpected error: %v", err)
}
// Output:
// NAMESPACE CONTROLLER REPLICAS AGE
// beep foo 1 10y
// NAMESPACE NAME REPLICAS AGE
// beep foo 1 10y
}
func ExamplePrintReplicationControllerWithWide() {
@@ -404,8 +404,8 @@ func ExamplePrintReplicationControllerWithWide() {
fmt.Printf("Unexpected error: %v", err)
}
// Output:
// CONTROLLER REPLICAS AGE CONTAINER(S) IMAGE(S) SELECTOR
// foo 1 10y foo someimage foo=bar
// NAME REPLICAS AGE CONTAINER(S) IMAGE(S) SELECTOR
// foo 1 10y foo someimage foo=bar
}
func ExamplePrintPodWithWideFormat() {