Fix issue with k8s.io/docs/reference/kubectl/cheatsheet/ (#12143)

This commit is contained in:
tuanvcw 2019-01-14 09:13:14 +07:00 committed by Kubernetes Prow Robot
parent 352b1ddd49
commit 10a75e3d72
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ kubectl create -f ./my-manifest.yaml # create resource(s)
kubectl create -f ./my1.yaml -f ./my2.yaml # create from multiple files
kubectl create -f ./dir # create resource(s) in all manifest files in dir
kubectl create -f https://git.io/vPieo # create resource(s) from url
kubectl run nginx --image=nginx # start a single instance of nginx
kubectl create deployment nginx --image=nginx # start a single instance of nginx
kubectl explain pods,svc # get the documentation for pod and svc manifests
# Create multiple YAML objects from stdin