From e96d972bbae3558856e0ed084c658bd97f62a0b8 Mon Sep 17 00:00:00 2001 From: chenhuan12 Date: Mon, 10 Apr 2017 19:28:32 +0800 Subject: [PATCH] fix typo fix typo --- .../imperative-object-management-configuration.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/tutorials/object-management-kubectl/imperative-object-management-configuration.md b/docs/tutorials/object-management-kubectl/imperative-object-management-configuration.md index 1fc090b4c1..6499d8f83f 100644 --- a/docs/tutorials/object-management-kubectl/imperative-object-management-configuration.md +++ b/docs/tutorials/object-management-kubectl/imperative-object-management-configuration.md @@ -30,7 +30,7 @@ You can use `kubectl create -f` to create an object from a configuration file. Refer to the [kubernetes object schema reference](/docs/resources-reference/v1.6/) for details. -- `create -f ` +- `kubectl create -f ` ## How to update objects @@ -45,24 +45,24 @@ file to prevent `replace` from dropping them. You can use `kubectl replace -f` to update a live object according to a configuration file. -- `replace -f ` +- `kubectl replace -f ` ## How to delete objects You can use `kubectl delete -f` to delete an object that is described in a configuration file. -- `delete -f ` +- `kubectl delete -f ` ## How to view an object You can use `kubectl get -f` to view information about an object that is described in a configuration file. -- `get -f -o yaml` +- `kubectl get -f -o yaml` The `-o yaml` flag specifies that the full object configuration is printed. -Use `get -h` to see a list of options. +Use `kubectl get -h` to see a list of options. ## Limitations