From d0118a452b70683447c66ade66a83953c3063ad4 Mon Sep 17 00:00:00 2001 From: Soto Sugita Date: Fri, 16 Aug 2019 15:44:33 +0900 Subject: [PATCH] Fix incorrect command line (#15882) --- .../debug-pod-replication-controller.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/tasks/debug-application-cluster/debug-pod-replication-controller.md b/content/en/docs/tasks/debug-application-cluster/debug-pod-replication-controller.md index 1f996b1042..f1740d9ae7 100644 --- a/content/en/docs/tasks/debug-application-cluster/debug-pod-replication-controller.md +++ b/content/en/docs/tasks/debug-application-cluster/debug-pod-replication-controller.md @@ -63,7 +63,7 @@ case you can try several things: information: ```shell - kubectl get nodes -o yaml | egrep '\sname:\|cpu:\|memory:' + kubectl get nodes -o yaml | egrep '\sname:|cpu:|memory:' kubectl get nodes -o json | jq '.items[] | {name: .metadata.name, cap: .status.capacity}' ```