File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed
Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,13 @@ Options:
4040
4141### Exec cronjob
4242
43+ > DEPRECATION NOTICE:
44+ > This plugin isn't necessary anymore, the kubectl cli let you create
45+ > cronjob with the create subcommand:
46+ > ```
47+ > $ kubectl create job --from cronjob/my-cronjob my-job
48+ > ```
49+
4350```bash
4451# install the exec-cronjob plugins
4552$ kubectl krew install exec-cronjob
Original file line number Diff line number Diff line change 55set -e
66
77function usage() {
8+ echo " DEPRECATION NOTICE:"
9+ echo " This plugin isn't necessary anymore, the kubectl cli let you create"
10+ echo " cronjob with the create subcommand:"
11+ echo " kubectl create job --from cronjob/my-cronjob my-job"
12+ echo " "
13+ echo " "
814 echo " Run a CronJob immediately as Job by extracting the Job spec and"
915 echo " creating a Job instance thereof."
1016 echo " "
You can’t perform that action at this time.
0 commit comments