updated review comments

updated review comments
pull/24701/head
ramnar 2020-11-10 07:08:40 +05:30 committed by GitHub
parent 18e4eaff07
commit ba4b043336
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -90,11 +90,13 @@ kubectl apply -f ./my1.yaml -f ./my2.yaml # create from multiple files
kubectl apply -f ./dir # create resource(s) in all manifest files in dir
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"
kubectl create job hello --image=busybox -- echo "Hello World"
# create a cronjob which prints "hello world" for every minute
kubectl create cronjob hello --image=busybox
--schedule="*/1 * * * *" -- echo "Hello World"
kubectl create cronjob hello --image=busybox --schedule="*/1 * * * *" -- echo "Hello World"
kubectl explain pods # get the documentation for pod manifests
# Create multiple YAML objects from stdin