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 @@ -39,6 +39,13 @@ Options:
3939
4040### Exec cronjob
4141
42+ > DEPRECATION NOTICE:
43+ > This plugin isn't necessary anymore, the kubectl cli let you create
44+ > cronjob with the create subcommand:
45+ > ```
46+ > $ kubectl create job --from cronjob/my-cronjob my-job
47+ > ```
48+
4249```bash
4350# install the exec-cronjob plugins
4451$ 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