From 496dba08a8bd15c87e9faeb4a126377db620a9d0 Mon Sep 17 00:00:00 2001 From: tcharding Date: Wed, 2 Aug 2017 23:27:51 +1000 Subject: [PATCH] Remove extraneous white space --- pkg/kubectl/cmd/delete.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkg/kubectl/cmd/delete.go b/pkg/kubectl/cmd/delete.go index 42ce9353ada..990e5838f8e 100644 --- a/pkg/kubectl/cmd/delete.go +++ b/pkg/kubectl/cmd/delete.go @@ -47,7 +47,7 @@ var ( the --grace-period flag, or pass --now to set a grace-period of 1. Because these resources often represent entities in the cluster, deletion may not be acknowledged immediately. If the node hosting a pod is down or cannot reach the API server, termination may take significantly longer - than the grace period. To force delete a resource, you must pass a grace period of 0 and specify + than the grace period. To force delete a resource, you must pass a grace period of 0 and specify the --force flag. IMPORTANT: Force deleting pods does not wait for confirmation that the pod's processes have been @@ -60,9 +60,9 @@ var ( Also, if you force delete pods the scheduler may place new pods on those nodes before the node has released those resources and causing those pods to be evicted immediately. - Note that the delete command does NOT do resource version checks, so if someone - submits an update to a resource right when you submit a delete, their update - will be lost along with the rest of the resource.`)) + Note that the delete command does NOT do resource version checks, so if someone submits an + update to a resource right when you submit a delete, their update will be lost along with the + rest of the resource.`)) delete_example = templates.Examples(i18n.T(` # Delete a pod using the type and name specified in pod.json.