From 96039a7e72e0bdd3b265f1615386bccb20e56bf4 Mon Sep 17 00:00:00 2001 From: John Kerkstra Date: Mon, 25 Jun 2018 13:41:22 -0500 Subject: [PATCH] fix wording of 'kubectl apply' conventions section (#8789) --- content/en/docs/reference/kubectl/conventions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/reference/kubectl/conventions.md b/content/en/docs/reference/kubectl/conventions.md index fd328cf0b1..70125b743a 100644 --- a/content/en/docs/reference/kubectl/conventions.md +++ b/content/en/docs/reference/kubectl/conventions.md @@ -65,4 +65,4 @@ flag, which provides the object to be submitted to the cluster. ### `kubectl apply` -* When you use `kubectl apply` to update resources, always create resources initially using `kubectl create` or using `--save-config`. See [managing resources with kubectl apply](/docs/concepts/cluster-administration/manage-deployment/#kubectl-apply) for more information. +* You can use `kubectl apply` to create or update resources. However, to update a resource you should have created the resource by using `kubectl apply` or `kubectl create --save-config`. For more information about using kubectl apply to update resources, see [Managing Resources](/docs/concepts/cluster-administration/manage-deployment/#kubectl-apply).