From 4ed2587df3ba3a27d1acf4220f04010cb17859d5 Mon Sep 17 00:00:00 2001 From: ramnar Date: Wed, 18 Nov 2020 10:03:23 +0530 Subject: [PATCH] implemented review comments --- content/en/docs/reference/kubectl/cheatsheet.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/docs/reference/kubectl/cheatsheet.md b/content/en/docs/reference/kubectl/cheatsheet.md index 3c5eacb480..8ff32aa54e 100644 --- a/content/en/docs/reference/kubectl/cheatsheet.md +++ b/content/en/docs/reference/kubectl/cheatsheet.md @@ -91,10 +91,10 @@ kubectl apply -f ./dir # create resource(s) in all manif kubectl apply -f https://git.io/vPieo # create resource(s) from url kubectl create deployment nginx --image=nginx # start a single instance of nginx -# create a job which prints "hello world" +# create a Job which prints "Hello World" kubectl create job hello --image=busybox -- echo "Hello World" -# create a cronjob which prints "hello world" for every minute +# create a CronJob that prints "Hello World" every minute kubectl create cronjob hello --image=busybox --schedule="*/1 * * * *" -- echo "Hello World" kubectl explain pods # get the documentation for pod manifests