change CONTROLLER, ReplicaSet and Job column titles to NAME

This commit is contained in:
AdoHe
2016-02-16 23:14:12 -05:00
parent 50ca5460d5
commit 10feb3e6fd
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() {